Skip to content

Commit 9553ddd

Browse files
author
Baruch Sadogursky
committed
Merge pull request #30 from jbaruch/master
better module names
2 parents df99052 + 6277cc1 commit 9553ddd

File tree

4 files changed

+15
-6
lines changed

4 files changed

+15
-6
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,5 @@ atlassian-*.xml
1717
.project
1818
.classpath
1919
.settings
20-
ning-services/src/test/resources/artifactory-client.properties
20+
ning-services/src/test/resources/artifactory-client.properties
21+
ning-services/src/test/resources/artifactory-ning-client.properties

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)