forked from Netflix/Hystrix
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Stop relying on maven convention on project
- Loading branch information
Justin Ryan
committed
Sep 24, 2012
1 parent
2b31d36
commit a8674db
Showing
2 changed files
with
10 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,22 +17,6 @@ apply from: file('gradle/license.gradle') | |
apply from: file('gradle/release.gradle') | ||
|
||
subprojects { | ||
// Closure to configure all the POM with extra info, common to all projects | ||
pom { | ||
project { | ||
url "https://github.com/Netflix/${rootProject.githubProjectName}" | ||
scm { | ||
connection "scm:git:[email protected]:Netflix/${rootProject.githubProjectName}.git" | ||
url "scm:git:[email protected]:Netflix/${rootProject.githubProjectName}.git" | ||
developerConnection "scm:git:[email protected]:Netflix/${rootProject.githubProjectName}.git" | ||
} | ||
issueManagement { | ||
system 'github' | ||
url "https://github.com/Netflix/${rootProject.githubProjectName}/issues" | ||
} | ||
} | ||
} | ||
|
||
group = "com.netflix.${githubProjectName}" // TEMPLATE: Set to organization of project | ||
|
||
dependencies { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -36,6 +36,16 @@ subprojects { | |
distribution 'repo' | ||
} | ||
} | ||
url "https://github.com/Netflix/${rootProject.githubProjectName}" | ||
scm { | ||
connection "scm:git:[email protected]:Netflix/${rootProject.githubProjectName}.git" | ||
url "scm:git:[email protected]:Netflix/${rootProject.githubProjectName}.git" | ||
developerConnection "scm:git:[email protected]:Netflix/${rootProject.githubProjectName}.git" | ||
} | ||
issueManagement { | ||
system 'github' | ||
url "https://github.com/Netflix/${rootProject.githubProjectName}/issues" | ||
} | ||
} | ||
} | ||
} | ||
|