|
@@ -65,7 +65,7 @@ def customizePom(pom, gradleProject) {
|
|
developer {
|
|
developer {
|
|
id = 'rwinch'
|
|
id = 'rwinch'
|
|
name = 'Rob Winch'
|
|
name = 'Rob Winch'
|
|
- email = 'rwinch@vmware.com'
|
|
|
|
|
|
+ email = 'rwinch@gopivotal.com'
|
|
}
|
|
}
|
|
}
|
|
}
|
|
if(isWar) {
|
|
if(isWar) {
|
|
@@ -73,11 +73,18 @@ def customizePom(pom, gradleProject) {
|
|
'm2eclipse.wtp.contextRoot' '/' + project.war.baseName
|
|
'm2eclipse.wtp.contextRoot' '/' + project.war.baseName
|
|
}
|
|
}
|
|
}
|
|
}
|
|
- if(!project.releaseBuild) {
|
|
|
|
|
|
+ if(project.snapshotBuild) {
|
|
repositories {
|
|
repositories {
|
|
repository {
|
|
repository {
|
|
id 'spring-snasphot'
|
|
id 'spring-snasphot'
|
|
- url 'http://repo.springsource.org/libs-snapshot'
|
|
|
|
|
|
+ url 'https://repo.spring.io/snapshot'
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ } else if(!project.releaseBuild) {
|
|
|
|
+ repositories {
|
|
|
|
+ repository {
|
|
|
|
+ id 'spring-milestone'
|
|
|
|
+ url 'https://repo.spring.io/milestone'
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|