Remove unnecessary dependency repos and update GAE version.
This commit is contained in:
parent
44252207db
commit
72f031253f
|
@ -1,10 +1,9 @@
|
||||||
apply plugin: 'groovy'
|
apply plugin: 'groovy'
|
||||||
|
|
||||||
repositories {
|
repositories {
|
||||||
mavenRepo name:'localRepo', urls: "file://" + System.properties['user.home'] + "/.m2/repository"
|
mavenLocal()
|
||||||
mavenCentral()
|
mavenCentral()
|
||||||
mavenRepo name: 'GAE', urls:'http://maven-gae-plugin.googlecode.com/svn/repository'
|
mavenRepo name: 'SpringSource Enterprise Release', urls: 'http://repository.springsource.com/maven/bundles/release'
|
||||||
mavenRepo name:'Shibboleth Repo', urls:'http://shibboleth.internet2.edu/downloads/maven2'
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Docbook Plugin
|
// Docbook Plugin
|
||||||
|
@ -19,8 +18,8 @@ dependencies {
|
||||||
'org.apache.avalon.framework:avalon-framework-api:4.3.1']
|
'org.apache.avalon.framework:avalon-framework-api:4.3.1']
|
||||||
groovy localGroovy()
|
groovy localGroovy()
|
||||||
compile gradleApi(),
|
compile gradleApi(),
|
||||||
'org.apache.xerces:resolver:2.9.1',
|
'xml-resolver:xml-resolver:1.2',
|
||||||
'org.apache.xerces:xercesImpl:2.9.1',
|
'xerces:xercesImpl:2.9.1',
|
||||||
'saxon:saxon:6.5.3',
|
'saxon:saxon:6.5.3',
|
||||||
fopDeps
|
fopDeps
|
||||||
|
|
||||||
|
@ -30,7 +29,7 @@ dependencies {
|
||||||
|
|
||||||
// GAE
|
// GAE
|
||||||
dependencies {
|
dependencies {
|
||||||
compile 'com.google.appengine:appengine-tools-api:1.3.7'
|
compile 'com.google.appengine:appengine-tools-sdk:1.4.2'
|
||||||
}
|
}
|
||||||
|
|
||||||
task ide(type: Copy) {
|
task ide(type: Copy) {
|
||||||
|
|
|
@ -2,7 +2,7 @@ apply plugin: 'war'
|
||||||
apply plugin: 'jetty'
|
apply plugin: 'jetty'
|
||||||
apply plugin: 'gae'
|
apply plugin: 'gae'
|
||||||
|
|
||||||
gaeVersion="1.3.7"
|
gaeVersion="1.4.2"
|
||||||
|
|
||||||
repositories {
|
repositories {
|
||||||
// Hibernate Validator
|
// Hibernate Validator
|
||||||
|
|
Loading…
Reference in New Issue