Browse Source

Import client bundles.

pull/113/head
Chris Smith 7 years ago
parent
commit
bf6a5c804b
1 changed files with 6 additions and 0 deletions
  1. 6
    0
      settings.gradle

+ 6
- 0
settings.gradle View File

@@ -2,6 +2,7 @@ rootProject.name = 'dmdirc'
2 2
 
3 3
 include 'client'
4 4
 include 'client:api'
5
+include 'client:bundles:com.dmdirc.events.eventbus'
5 6
 include 'util'
6 7
 include 'parser'
7 8
 include 'plugins'
@@ -20,3 +21,8 @@ project(':plugins').projectDir.eachDir() { File dir ->
20 21
     include 'plugins:' + dir.name
21 22
   }
22 23
 }
24
+
25
+// Include all bundles
26
+new File(project(':client').projectDir, 'bundles').eachDir() { File dir ->
27
+  include 'client:' + dir.name
28
+}

Loading…
Cancel
Save