Browse Source

Change parser group to com.dmdirc.

Parser modules are now com.dmdirc:parser-{foo}.

Closes #23
pull/131/head
Chris Smith 7 years ago
parent
commit
fd9e77bd7e
2 changed files with 8 additions and 2 deletions
  1. 3
    1
      build.gradle
  2. 5
    1
      settings.gradle

+ 3
- 1
build.gradle View File

1
 subprojects {
1
 subprojects {
2
-    group = 'com.dmdirc.parser'
2
+    group = 'com.dmdirc'
3
 
3
 
4
     apply plugin: 'com.dmdirc.git-version'
4
     apply plugin: 'com.dmdirc.git-version'
5
     apply plugin: 'maven-publish'
5
     apply plugin: 'maven-publish'
128
 def find(name) {
128
 def find(name) {
129
     if (allprojects.find { it.name == name }) {
129
     if (allprojects.find { it.name == name }) {
130
         project(name)
130
         project(name)
131
+    } else if (allprojects.find { it.name == 'parser-' + name }) {
132
+        project('parser-' + name)
131
     } else if (allprojects.find { it.name == 'parser:' + name }) {
133
     } else if (allprojects.find { it.name == 'parser:' + name }) {
132
         project('parser:' + name)
134
         project('parser:' + name)
133
     } else if (allprojects.find { it.name == 'modules:parser:' + name }) {
135
     } else if (allprojects.find { it.name == 'modules:parser:' + name }) {

+ 5
- 1
settings.gradle View File

1
 include 'common'
1
 include 'common'
2
 include 'irc'
2
 include 'irc'
3
-include 'xmpp'
3
+include 'xmpp'
4
+
5
+project(':common').name = 'parser-common'
6
+project(':irc').name = 'parser-irc'
7
+project(':xmpp').name = 'parser-xmpp'

Loading…
Cancel
Save