Skip to content

Commit

Permalink
Rebuild with gradle 1.8 and also update to Spring Boot 0.5.0.M5
Browse files Browse the repository at this point in the history
  • Loading branch information
gregturn committed Oct 30, 2013
1 parent ffc32e9 commit 5aadeab
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 14 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ buildscript {
mavenLocal()
}
dependencies {
classpath("org.springframework.boot:spring-boot-gradle-plugin:0.5.0.M4")
classpath("org.springframework.boot:spring-boot-gradle-plugin:0.5.0.M5")
}
}
Expand All @@ -84,7 +84,7 @@ repositories {
}
dependencies {
compile("org.springframework.boot:spring-boot-starter-web:0.5.0.M4")
compile("org.springframework.boot:spring-boot-starter-web:0.5.0.M5")
testCompile("junit:junit:4.11")
}
Expand Down
8 changes: 4 additions & 4 deletions complete/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ buildscript {
mavenLocal()
}
dependencies {
classpath("org.springframework.boot:spring-boot-gradle-plugin:0.5.0.M4")
classpath("org.springframework.boot:spring-boot-gradle-plugin:0.5.0.M5")
}
}

Expand All @@ -24,11 +24,11 @@ repositories {
}

dependencies {
compile("org.springframework.boot:spring-boot-starter-web:0.5.0.M4") {
compile("org.springframework.boot:spring-boot-starter-web:0.5.0.M5") {
exclude module: "spring-boot-starter-tomcat"
}
compile("org.springframework.boot:spring-boot-starter-jetty:0.5.0.M4")
compile("org.springframework.boot:spring-boot-starter-actuator:0.5.0.M4")
compile("org.springframework.boot:spring-boot-starter-jetty:0.5.0.M5")
compile("org.springframework.boot:spring-boot-starter-actuator:0.5.0.M5")
testCompile("junit:junit:4.11")
}

Expand Down
4 changes: 2 additions & 2 deletions complete/gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#Fri Aug 09 11:42:39 CDT 2013
#Wed Oct 30 09:50:21 CDT 2013
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=http\://services.gradle.org/distributions/gradle-1.7-bin.zip
distributionUrl=http\://services.gradle.org/distributions/gradle-1.8-bin.zip
2 changes: 1 addition & 1 deletion complete/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>0.5.0.M4</version>
<version>0.5.0.M5</version>
</parent>

<dependencies>
Expand Down
4 changes: 2 additions & 2 deletions initial/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ buildscript {
mavenLocal()
}
dependencies {
classpath("org.springframework.boot:spring-boot-gradle-plugin:0.5.0.M4")
classpath("org.springframework.boot:spring-boot-gradle-plugin:0.5.0.M5")
}
}

Expand All @@ -24,7 +24,7 @@ repositories {
}

dependencies {
compile("org.springframework.boot:spring-boot-starter-web:0.5.0.M4")
compile("org.springframework.boot:spring-boot-starter-web:0.5.0.M5")
testCompile("junit:junit:4.11")
}

Expand Down
4 changes: 2 additions & 2 deletions initial/gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#Fri Aug 09 11:42:51 CDT 2013
#Wed Oct 30 09:50:28 CDT 2013
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=http\://services.gradle.org/distributions/gradle-1.7-bin.zip
distributionUrl=http\://services.gradle.org/distributions/gradle-1.8-bin.zip
2 changes: 1 addition & 1 deletion initial/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>0.5.0.M4</version>
<version>0.5.0.M5</version>
</parent>

<dependencies>
Expand Down

0 comments on commit 5aadeab

Please sign in to comment.