File tree 4 files changed +12
-12
lines changed
4 files changed +12
-12
lines changed Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ buildscript {
11
11
configure(allprojects) { project ->
12
12
group = " org.springframework"
13
13
version = qualifyVersionIfNecessary(version)
14
-
14
+
15
15
// The following is a work-around until the Gradle build uses
16
16
// Ant 1.9.x by default. This is necessary to avoid the
17
17
// "Class not found: javac1.8" issue with Ant versions prior to 1.9.x
@@ -155,7 +155,7 @@ project("spring-build-src") {
155
155
156
156
dependencies {
157
157
compile gradleApi()
158
- groovy localGroovy()
158
+ compile localGroovy()
159
159
}
160
160
161
161
configurations. archives. artifacts. clear()
@@ -959,7 +959,7 @@ configure(rootProject) {
959
959
960
960
task wrapper(type : Wrapper ) {
961
961
description = " Generates gradlew[.bat] scripts"
962
- gradleVersion = " 1.3 "
962
+ gradleVersion = " 1.6 "
963
963
964
964
doLast() {
965
965
def gradleOpts = " -XX:MaxPermSize=1024m -Xmx1024m"
Original file line number Diff line number Diff line change 1
- # Wed Nov 28 09:14:59 PST 2012
2
- distributionBase =GRADLE_USER_HOME
3
- distributionPath =wrapper/dists
4
- zipStoreBase =GRADLE_USER_HOME
1
+ # Mon May 13 17:38:05 CDT 2013
5
2
zipStorePath =wrapper/dists
6
- distributionUrl =http\://services.gradle.org/distributions/gradle-1.3-bin.zip
3
+ zipStoreBase =GRADLE_USER_HOME
4
+ distributionPath =wrapper/dists
5
+ distributionBase =GRADLE_USER_HOME
6
+ distributionUrl =http\://services.gradle.org/distributions/gradle-1.6-bin.zip
Original file line number Diff line number Diff line change @@ -12,8 +12,8 @@ configurations {
12
12
tasks. getByName(" idea" ). onlyIf { false }
13
13
tasks. getByName(" ideaModule" ). onlyIf { false }
14
14
15
- task compileJava ( overwrite : true ) {
16
- dependsOn JavaPlugin . PROCESS_RESOURCES_TASK_NAME
15
+ compileJava {
16
+ actions = []
17
17
dependsOn configurations. ajc. getTaskDependencyFromProjectDependency(true , " compileJava" )
18
18
19
19
def outputDir = project. sourceSets. main. output. classesDir
@@ -44,8 +44,8 @@ task compileJava(overwrite: true) {
44
44
}
45
45
}
46
46
47
- task compileTestJava ( overwrite : true ) {
48
- dependsOn JavaPlugin . PROCESS_TEST_RESOURCES_TASK_NAME
47
+ compileTestJava {
48
+ actions = []
49
49
dependsOn configurations. ajc. getTaskDependencyFromProjectDependency(true , " compileTestJava" )
50
50
dependsOn jar
51
51
You can’t perform that action at this time.
0 commit comments