Browse Source

Remove hardcoded bundle.

pull/113/head
Chris Smith 7 years ago
parent
commit
6240d3371c
1 changed files with 1 additions and 2 deletions
  1. 1
    2
      settings.gradle

+ 1
- 2
settings.gradle View File

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

Loading…
Cancel
Save