Browse Source

Add a build config for bundled plugins.

This is unused atm, but will be how the build script pulls plugins
into the jar.

Change-Id: Id777c8040a131a1171f03c7abc404cd6e03591f7
Reviewed-on: http://gerrit.dmdirc.com/4072
Automatic-Compile: DMDirc Build Manager
Reviewed-by: Greg Holmes <greg@dmdirc.com>
pull/1/head
Chris Smith 9 years ago
parent
commit
1655071347
1 changed files with 7 additions and 1 deletions
  1. 7
    1
      build.gradle

+ 7
- 1
build.gradle View File

@@ -1,6 +1,6 @@
1 1
 configurations {
2 2
     bundle
3
-
3
+    plugin
4 4
     compile {
5 5
         extendsFrom bundle
6 6
     }
@@ -9,6 +9,7 @@ configurations {
9 9
 dependencies {
10 10
     compile group: 'com.google.code.findbugs', name: 'jsr305', version: '3.0.0'
11 11
     compile group: 'com.squareup.dagger', name: 'dagger-compiler', version: '1.2.1'
12
+
12 13
     bundle group: 'com.squareup.dagger', name: 'dagger', version: '1.2.1'
13 14
     bundle group: 'com.esotericsoftware.yamlbeans', name: 'yamlbeans', version: '1.08'
14 15
     bundle group: 'com.brsanthu', name: 'migbase64', version: '2.2'
@@ -17,6 +18,11 @@ dependencies {
17 18
     bundle group: 'net.engio', name: 'mbassador', version: '1.2.0'
18 19
     bundle group: 'com.dmdirc', name: 'util', version: '+', changing: true
19 20
     bundle group: 'com.dmdirc.parser', name: 'common', version: '+', changing: true
21
+
22
+    plugin group: 'com.dmdirc', name: 'ui_swing', version: '+', changing: true
23
+    plugin group: 'com.dmdirc', name: 'parser_irc', version: '+', changing: true
24
+    plugin group: 'com.dmdirc', name: 'tabcompleter_bash', version: '+', changing: true
25
+    plugin group: 'com.dmdirc', name: 'tabcompleter_mirc', version: '+', changing: true
20 26
 }
21 27
 
22 28
 allprojects {

Loading…
Cancel
Save