Browse Source

Remove unnecessary dependency repos and update GAE version.

pull/1/head
Luke Taylor 15 years ago
parent
commit
72f031253f
  1. 11
      buildSrc/build.gradle
  2. 2
      samples/gae/gae.gradle

11
buildSrc/build.gradle

@ -1,10 +1,9 @@ @@ -1,10 +1,9 @@
apply plugin: 'groovy'
repositories {
mavenRepo name:'localRepo', urls: "file://" + System.properties['user.home'] + "/.m2/repository"
mavenLocal()
mavenCentral()
mavenRepo name: 'GAE', urls:'http://maven-gae-plugin.googlecode.com/svn/repository'
mavenRepo name:'Shibboleth Repo', urls:'http://shibboleth.internet2.edu/downloads/maven2'
mavenRepo name: 'SpringSource Enterprise Release', urls: 'http://repository.springsource.com/maven/bundles/release'
}
// Docbook Plugin
@ -19,8 +18,8 @@ dependencies { @@ -19,8 +18,8 @@ dependencies {
'org.apache.avalon.framework:avalon-framework-api:4.3.1']
groovy localGroovy()
compile gradleApi(),
'org.apache.xerces:resolver:2.9.1',
'org.apache.xerces:xercesImpl:2.9.1',
'xml-resolver:xml-resolver:1.2',
'xerces:xercesImpl:2.9.1',
'saxon:saxon:6.5.3',
fopDeps
@ -30,7 +29,7 @@ dependencies { @@ -30,7 +29,7 @@ dependencies {
// GAE
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) {

2
samples/gae/gae.gradle

@ -2,7 +2,7 @@ apply plugin: 'war' @@ -2,7 +2,7 @@ apply plugin: 'war'
apply plugin: 'jetty'
apply plugin: 'gae'
gaeVersion="1.3.7"
gaeVersion="1.4.2"
repositories {
// Hibernate Validator

Loading…
Cancel
Save