Эх сурвалжийг харах

Upgrade to Spring Boot 1.1.0.RELEASE

Greg Turnquist 11 жил өмнө
parent
commit
2548ef46bd

+ 1 - 1
README.adoc

@@ -3,7 +3,7 @@ tags: [messaging, websocket]
 projects: [spring-framework]
 ---
 :spring_version: current
-:spring_boot_version: 1.0.2.RELEASE
+:spring_boot_version: 1.1.0.RELEASE
 :MappingJackson2MessageConverter: http://docs.spring.io/spring/docs/{spring_version}/javadoc-api/org/springframework/messaging/support/converter/MappingJackson2MessageConverter.html
 :Component: http://docs.spring.io/spring/docs/{spring_version}/javadoc-api/org/springframework/stereotype/Component.html
 :jackson: http://wiki.fasterxml.com/JacksonHome

+ 5 - 3
complete/build.gradle

@@ -1,10 +1,11 @@
 buildscript {
     repositories {
-        maven { url "http://repo.spring.io/libs-snapshot" }
+        maven { url "http://repo.spring.io/release" }
         mavenLocal()
+        mavenCentral()
     }
     dependencies {
-        classpath("org.springframework.boot:spring-boot-gradle-plugin:1.0.2.RELEASE")
+        classpath("org.springframework.boot:spring-boot-gradle-plugin:1.1.0.RELEASE")
     }
 }
 
@@ -19,8 +20,9 @@ jar {
 }
 
 repositories {
+    mavenLocal()
     mavenCentral()
-    maven { url "http://repo.spring.io/libs-snapshot" }
+    maven { url "http://repo.spring.io/release" }
 }
 
 dependencies {

+ 5 - 7
complete/pom.xml

@@ -10,7 +10,7 @@
     <parent>
         <groupId>org.springframework.boot</groupId>
         <artifactId>spring-boot-starter-parent</artifactId>
-        <version>1.0.2.RELEASE</version>
+        <version>1.1.0.RELEASE</version>
     </parent>
 
     <dependencies>
@@ -44,16 +44,14 @@
 
     <repositories>
         <repository>
-            <id>spring-snapshots</id>
-            <url>http://repo.spring.io/libs-snapshot</url>
-            <snapshots><enabled>true</enabled></snapshots>
+            <id>spring-releases</id>
+            <url>http://repo.spring.io/release</url>
         </repository>
     </repositories>
     <pluginRepositories>
         <pluginRepository>
-            <id>spring-snapshots</id>
-            <url>http://repo.spring.io/libs-snapshot</url>
-            <snapshots><enabled>true</enabled></snapshots>
+            <id>spring-releases</id>
+            <url>http://repo.spring.io/release</url>
         </pluginRepository>
     </pluginRepositories>
 </project>

+ 5 - 3
initial/build.gradle

@@ -1,10 +1,11 @@
 buildscript {
     repositories {
-        maven { url "http://repo.spring.io/libs-snapshot" }
+        maven { url "http://repo.spring.io/release" }
         mavenLocal()
+        mavenCentral()
     }
     dependencies {
-        classpath("org.springframework.boot:spring-boot-gradle-plugin:1.0.2.RELEASE")
+        classpath("org.springframework.boot:spring-boot-gradle-plugin:1.1.0.RELEASE")
     }
 }
 
@@ -19,8 +20,9 @@ jar {
 }
 
 repositories {
+    mavenLocal()
     mavenCentral()
-    maven { url "http://repo.spring.io/libs-snapshot" }
+    maven { url "http://repo.spring.io/release" }
 }
 
 dependencies {

+ 5 - 7
initial/pom.xml

@@ -10,7 +10,7 @@
     <parent>
         <groupId>org.springframework.boot</groupId>
         <artifactId>spring-boot-starter-parent</artifactId>
-        <version>1.0.2.RELEASE</version>
+        <version>1.1.0.RELEASE</version>
     </parent>
 
     <dependencies>
@@ -44,16 +44,14 @@
 
     <repositories>
         <repository>
-            <id>spring-snapshots</id>
-            <url>http://repo.spring.io/libs-snapshot</url>
-            <snapshots><enabled>true</enabled></snapshots>
+            <id>spring-releases</id>
+            <url>http://repo.spring.io/release</url>
         </repository>
     </repositories>
     <pluginRepositories>
         <pluginRepository>
-            <id>spring-snapshots</id>
-            <url>http://repo.spring.io/libs-snapshot</url>
-            <snapshots><enabled>true</enabled></snapshots>
+            <id>spring-releases</id>
+            <url>http://repo.spring.io/release</url>
         </pluginRepository>
     </pluginRepositories>
 </project>