Skip to content

Commit a8674db

Browse files
author
Justin Ryan
committed
Stop relying on maven convention on project
1 parent 2b31d36 commit a8674db

File tree

2 files changed

+10
-16
lines changed

2 files changed

+10
-16
lines changed

build.gradle

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -17,22 +17,6 @@ apply from: file('gradle/license.gradle')
1717
apply from: file('gradle/release.gradle')
1818

1919
subprojects {
20-
// Closure to configure all the POM with extra info, common to all projects
21-
pom {
22-
project {
23-
url "https://github.com/Netflix/${rootProject.githubProjectName}"
24-
scm {
25-
connection "scm:git:[email protected]:Netflix/${rootProject.githubProjectName}.git"
26-
url "scm:git:[email protected]:Netflix/${rootProject.githubProjectName}.git"
27-
developerConnection "scm:git:[email protected]:Netflix/${rootProject.githubProjectName}.git"
28-
}
29-
issueManagement {
30-
system 'github'
31-
url "https://github.com/Netflix/${rootProject.githubProjectName}/issues"
32-
}
33-
}
34-
}
35-
3620
group = "com.netflix.${githubProjectName}" // TEMPLATE: Set to organization of project
3721

3822
dependencies {

gradle/maven.gradle

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,16 @@ subprojects {
3636
distribution 'repo'
3737
}
3838
}
39+
url "https://github.com/Netflix/${rootProject.githubProjectName}"
40+
scm {
41+
connection "scm:git:[email protected]:Netflix/${rootProject.githubProjectName}.git"
42+
url "scm:git:[email protected]:Netflix/${rootProject.githubProjectName}.git"
43+
developerConnection "scm:git:[email protected]:Netflix/${rootProject.githubProjectName}.git"
44+
}
45+
issueManagement {
46+
system 'github'
47+
url "https://github.com/Netflix/${rootProject.githubProjectName}/issues"
48+
}
3949
}
4050
}
4151
}

0 commit comments

Comments
 (0)