File tree Expand file tree Collapse file tree 4 files changed +26
-9
lines changed
Expand file tree Collapse file tree 4 files changed +26
-9
lines changed Original file line number Diff line number Diff line change @@ -12,11 +12,9 @@ project.ext {
1212}
1313version = ' 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
2119repositories {
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}
Original file line number Diff line number Diff line change 1- # Sun May 19 14:23:46 JST 2013
1+ # Thu Sep 26 00:39:07 JST 2013
22distributionBase =GRADLE_USER_HOME
33distributionPath =wrapper/dists
44zipStoreBase =GRADLE_USER_HOME
55zipStorePath =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
Original file line number Diff line number Diff line change 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'
You can’t perform that action at this time.
0 commit comments