Skip to content

Commit

Permalink
Stop relying on maven convention on project
Browse files Browse the repository at this point in the history
  • Loading branch information
Justin Ryan committed Sep 24, 2012
1 parent 2b31d36 commit a8674db
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 16 deletions.
16 changes: 0 additions & 16 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down
10 changes: 10 additions & 0 deletions gradle/maven.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
}
}
}
Expand Down

0 comments on commit a8674db

Please sign in to comment.