Skip to content

Commit 6277cc1

Browse files
committed
better module names
1 parent edca4f4 commit 6277cc1

File tree

3 files changed

+13
-5
lines changed

3 files changed

+13
-5
lines changed

ning-services/build.gradle

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,7 @@ apply plugin: 'groovy'
22
apply plugin: 'fatjar'
33

44
dependencies {
5-
compile project(':api')
6-
compile project(':services')
5+
compile project(':artifactory-java-client-services')
76
compile group: 'com.ning', name: 'async-http-client', version: '1.7.20'
87
testCompile group: 'org.testng', name: 'testng', version: '6.5.2'
98
}

services/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ apply plugin: 'groovy'
22
apply plugin: 'fatjar'
33

44
dependencies {
5-
compile project(':api')
5+
compile project(':artifactory-java-client-api')
66
compile addGroovy('groovy')
77
compile addGroovy('groovy-json')
88
compile addGroovy('groovy-xml')

settings.gradle

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,11 @@
1-
include 'api', 'services', 'ning-services'
2-
rootProject.name = 'java-client'
1+
String rootName = 'artifactory-java-client'
2+
String api = 'api'
3+
String services = 'services'
4+
String ningServices = 'ning-services'
5+
6+
include api, services, ningServices
7+
rootProject.name = rootName
8+
9+
project(":$api").name = "$rootName-$api"
10+
project(":$services").name = "$rootName-$services"
11+
project(":$ningServices").name = "$rootName-$ningServices"

0 commit comments

Comments
 (0)