Browse Source

Support for parsers.

Load the irc and common projects.

Swaparoo parser dependencies with their real projects.
pull/19/head
Chris Smith 9 years ago
parent
commit
eb52ebb253
2 changed files with 3 additions and 1 deletions
  1. 1
    1
      local-dependency-change.gradle
  2. 2
    0
      settings.gradle

+ 1
- 1
local-dependency-change.gradle View File

@@ -8,7 +8,7 @@ gradle.projectsEvaluated {
8 8
         p.configurations.each { conf ->
9 9
             def remove = []
10 10
             conf.dependencies.each { dep ->
11
-                if (dep.group == 'com.dmdirc' && dep.version == '+' && projectMap[dep.name] != null) {
11
+                if (dep.group =~ '^com.dmdirc' && dep.version == '+' && projectMap[dep.name] != null) {
12 12
                     remove += dep
13 13
                     replace += [conf: conf.name, dep: dep]
14 14
                 }

+ 2
- 0
settings.gradle View File

@@ -4,6 +4,8 @@ include 'client'
4 4
 include 'util'
5 5
 include 'parser'
6 6
 include 'plugins'
7
+include 'parser:common'
8
+include 'parser:irc'
7 9
 
8 10
 // Include all of the plugin projects
9 11
 project(':plugins').projectDir.eachDir() { File dir ->

Loading…
Cancel
Save