Skip to content

Commit abd719e

Browse files
committed
update gradle wrapper version to 1.8
1 parent 937952a commit abd719e

File tree

4 files changed

+26
-9
lines changed

4 files changed

+26
-9
lines changed

build.gradle

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,9 @@ project.ext {
1212
}
1313
version = '1.0-SNAPSHOT'
1414

15-
tasks.withType(Compile) {
16-
sourceCompatibility = 1.7
17-
targetCompatibility = 1.7
18-
options.encoding = 'UTF-8'
19-
}
15+
sourceCompatibility = targetCompatibility = 1.7
16+
17+
tasks.withType(AbstractCompile) each { it.options.encoding = 'UTF-8' }
2018

2119
repositories {
2220
mavenCentral()
@@ -31,6 +29,6 @@ task quickStart << {
3129
sourceSets*.allSource*.srcDirs.flatten().each { it.mkdirs() }
3230
}
3331

34-
task wrapper(type: Wrapper) {
35-
gradleVersion = 1.6
32+
wrapper {
33+
gradleVersion = 1.8
3634
}

gradle/wrapper/gradle-wrapper.jar

639 Bytes
Binary file not shown.
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
#Sun May 19 14:23:46 JST 2013
1+
#Thu Sep 26 00:39:07 JST 2013
22
distributionBase=GRADLE_USER_HOME
33
distributionPath=wrapper/dists
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists
6-
distributionUrl=http\://services.gradle.org/distributions/gradle-1.6-bin.zip
6+
distributionUrl=http\://services.gradle.org/distributions/gradle-1.8-bin.zip

settings.gradle

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
/*
2+
* This settings file was auto generated by the Gradle buildSetup task
3+
* by 'grimrose' at '13/09/26 0:39' with Gradle 1.8
4+
*
5+
* The settings file is used to specify which projects to include in your build.
6+
* In a single project build this file can be empty or even removed.
7+
*
8+
* Detailed information about configuring a multi-project build in Gradle can be found
9+
* in the user guide at http://gradle.org/docs/1.8/userguide/multi_project_builds.html
10+
*/
11+
12+
/*
13+
// To declare projects as part of a multi-project build use the 'include' method
14+
include 'shared'
15+
include 'api'
16+
include 'services:webservice'
17+
*/
18+
19+
rootProject.name = 'java_junit'

0 commit comments

Comments
 (0)