diff --git a/README.md b/README.md index 5b0b932..761ee5b 100644 --- a/README.md +++ b/README.md @@ -13,7 +13,7 @@ * Apache Maven 3.5.2 * Gradle 4.5 -* Spring 5.0.8.RELEASE +* Spring 5.1.1.RELEASE * Servlet 4.0.0 * JUnit 4.12 * Lo4j 2.6.2 diff --git a/samples/s5-ch01-hello-world/build.gradle b/samples/s5-ch01-hello-world/build.gradle index 3221fdb..f8d784b 100644 --- a/samples/s5-ch01-hello-world/build.gradle +++ b/samples/s5-ch01-hello-world/build.gradle @@ -21,6 +21,6 @@ repositories { dependencies { // 该依赖用于编译阶段 - compile('org.springframework:spring-context:5.0.8.RELEASE') + compile('org.springframework:spring-context:5.1.1.RELEASE') } diff --git a/samples/s5-ch01-hello-world/pom.xml b/samples/s5-ch01-hello-world/pom.xml index 5314158..dd8900b 100644 --- a/samples/s5-ch01-hello-world/pom.xml +++ b/samples/s5-ch01-hello-world/pom.xml @@ -14,7 +14,7 @@ org.springframework spring-context - 5.0.8.RELEASE + 5.1.1.RELEASE \ No newline at end of file diff --git a/samples/s5-ch02-aop-aspect-xml/build.gradle b/samples/s5-ch02-aop-aspect-xml/build.gradle index 27d6b25..ee32ce9 100644 --- a/samples/s5-ch02-aop-aspect-xml/build.gradle +++ b/samples/s5-ch02-aop-aspect-xml/build.gradle @@ -21,6 +21,6 @@ repositories { dependencies { // 该依赖用于编译阶段 - compile('org.springframework:spring-context:5.0.8.RELEASE') - compile('org.springframework:spring-aspects:5.0.8.RELEASE') + compile('org.springframework:spring-context:5.1.1.RELEASE') + compile('org.springframework:spring-aspects:5.1.1.RELEASE') } diff --git a/samples/s5-ch02-aop-aspect-xml/pom.xml b/samples/s5-ch02-aop-aspect-xml/pom.xml index 7ac6f29..5d27146 100644 --- a/samples/s5-ch02-aop-aspect-xml/pom.xml +++ b/samples/s5-ch02-aop-aspect-xml/pom.xml @@ -14,12 +14,12 @@ org.springframework spring-context - 5.0.8.RELEASE + 5.1.1.RELEASE org.springframework spring-aspects - 5.0.8.RELEASE + 5.1.1.RELEASE \ No newline at end of file diff --git a/samples/s5-ch02-aop-aspect/build.gradle b/samples/s5-ch02-aop-aspect/build.gradle index 27d6b25..ee32ce9 100644 --- a/samples/s5-ch02-aop-aspect/build.gradle +++ b/samples/s5-ch02-aop-aspect/build.gradle @@ -21,6 +21,6 @@ repositories { dependencies { // 该依赖用于编译阶段 - compile('org.springframework:spring-context:5.0.8.RELEASE') - compile('org.springframework:spring-aspects:5.0.8.RELEASE') + compile('org.springframework:spring-context:5.1.1.RELEASE') + compile('org.springframework:spring-aspects:5.1.1.RELEASE') } diff --git a/samples/s5-ch02-aop-aspect/pom.xml b/samples/s5-ch02-aop-aspect/pom.xml index 1d01849..b258957 100644 --- a/samples/s5-ch02-aop-aspect/pom.xml +++ b/samples/s5-ch02-aop-aspect/pom.xml @@ -14,12 +14,12 @@ org.springframework spring-context - 5.0.8.RELEASE + 5.1.1.RELEASE org.springframework spring-aspects - 5.0.8.RELEASE + 5.1.1.RELEASE \ No newline at end of file diff --git a/samples/s5-ch02-custom-scope/build.gradle b/samples/s5-ch02-custom-scope/build.gradle index 3221fdb..f8d784b 100644 --- a/samples/s5-ch02-custom-scope/build.gradle +++ b/samples/s5-ch02-custom-scope/build.gradle @@ -21,6 +21,6 @@ repositories { dependencies { // 该依赖用于编译阶段 - compile('org.springframework:spring-context:5.0.8.RELEASE') + compile('org.springframework:spring-context:5.1.1.RELEASE') } diff --git a/samples/s5-ch02-custom-scope/pom.xml b/samples/s5-ch02-custom-scope/pom.xml index f8a17b7..14baf9f 100644 --- a/samples/s5-ch02-custom-scope/pom.xml +++ b/samples/s5-ch02-custom-scope/pom.xml @@ -14,7 +14,7 @@ org.springframework spring-context - 5.0.8.RELEASE + 5.1.1.RELEASE \ No newline at end of file diff --git a/samples/s5-ch02-dependency-injection/build.gradle b/samples/s5-ch02-dependency-injection/build.gradle index 3221fdb..f8d784b 100644 --- a/samples/s5-ch02-dependency-injection/build.gradle +++ b/samples/s5-ch02-dependency-injection/build.gradle @@ -21,6 +21,6 @@ repositories { dependencies { // 该依赖用于编译阶段 - compile('org.springframework:spring-context:5.0.8.RELEASE') + compile('org.springframework:spring-context:5.1.1.RELEASE') } diff --git a/samples/s5-ch02-dependency-injection/pom.xml b/samples/s5-ch02-dependency-injection/pom.xml index 53e42c0..6bfb41f 100644 --- a/samples/s5-ch02-dependency-injection/pom.xml +++ b/samples/s5-ch02-dependency-injection/pom.xml @@ -14,7 +14,7 @@ org.springframework spring-context - 5.0.8.RELEASE + 5.1.1.RELEASE \ No newline at end of file diff --git a/samples/s5-ch02-expression-language/build.gradle b/samples/s5-ch02-expression-language/build.gradle index 27d6b25..ee32ce9 100644 --- a/samples/s5-ch02-expression-language/build.gradle +++ b/samples/s5-ch02-expression-language/build.gradle @@ -21,6 +21,6 @@ repositories { dependencies { // 该依赖用于编译阶段 - compile('org.springframework:spring-context:5.0.8.RELEASE') - compile('org.springframework:spring-aspects:5.0.8.RELEASE') + compile('org.springframework:spring-context:5.1.1.RELEASE') + compile('org.springframework:spring-aspects:5.1.1.RELEASE') } diff --git a/samples/s5-ch02-expression-language/pom.xml b/samples/s5-ch02-expression-language/pom.xml index 6599f98..e50adde 100644 --- a/samples/s5-ch02-expression-language/pom.xml +++ b/samples/s5-ch02-expression-language/pom.xml @@ -14,12 +14,12 @@ org.springframework spring-context - 5.0.8.RELEASE + 5.1.1.RELEASE org.springframework spring-aspects - 5.0.8.RELEASE + 5.1.1.RELEASE \ No newline at end of file diff --git a/samples/s5-ch05-client-side-rest-test/build.gradle b/samples/s5-ch05-client-side-rest-test/build.gradle index 178b37c..7a6274b 100644 --- a/samples/s5-ch05-client-side-rest-test/build.gradle +++ b/samples/s5-ch05-client-side-rest-test/build.gradle @@ -21,10 +21,10 @@ repositories { dependencies { // 该依赖用于编译阶段 - compile('org.springframework:spring-context:5.0.8.RELEASE') - compile('org.springframework:spring-webmvc:5.0.8.RELEASE') + compile('org.springframework:spring-context:5.1.1.RELEASE') + compile('org.springframework:spring-webmvc:5.1.1.RELEASE') provided('javax.servlet:javax.servlet-api:4.0.0') // 该依赖用于测试阶段 - testCompile('org.springframework:spring-test:5.0.8.RELEASE') + testCompile('org.springframework:spring-test:5.1.1.RELEASE') testCompile('junit:junit:4.12') } diff --git a/samples/s5-ch05-client-side-rest-test/pom.xml b/samples/s5-ch05-client-side-rest-test/pom.xml index 6faebf0..07369a8 100644 --- a/samples/s5-ch05-client-side-rest-test/pom.xml +++ b/samples/s5-ch05-client-side-rest-test/pom.xml @@ -10,7 +10,7 @@ https://waylau.com - 5.0.8.RELEASE + 5.1.1.RELEASE diff --git a/samples/s5-ch05-mvc-test/build.gradle b/samples/s5-ch05-mvc-test/build.gradle index ec2beed..0ad460d 100644 --- a/samples/s5-ch05-mvc-test/build.gradle +++ b/samples/s5-ch05-mvc-test/build.gradle @@ -21,12 +21,12 @@ repositories { dependencies { // 该依赖用于编译阶段 - compile('org.springframework:spring-context:5.0.8.RELEASE') - compile('org.springframework:spring-webmvc:5.0.8.RELEASE') + compile('org.springframework:spring-context:5.1.1.RELEASE') + compile('org.springframework:spring-webmvc:5.1.1.RELEASE') provided('javax.servlet:javax.servlet-api:4.0.0') // 该依赖用于测试阶段 - testCompile('org.springframework:spring-test:5.0.8.RELEASE') + testCompile('org.springframework:spring-test:5.1.1.RELEASE') testCompile('junit:junit:4.12') } diff --git a/samples/s5-ch05-mvc-test/pom.xml b/samples/s5-ch05-mvc-test/pom.xml index eb6b23a..596b540 100644 --- a/samples/s5-ch05-mvc-test/pom.xml +++ b/samples/s5-ch05-mvc-test/pom.xml @@ -10,7 +10,7 @@ https://waylau.com - 5.0.8.RELEASE + 5.1.1.RELEASE diff --git a/samples/s5-ch06-declarative-transaction/build.gradle b/samples/s5-ch06-declarative-transaction/build.gradle index a76e83e..11204bf 100644 --- a/samples/s5-ch06-declarative-transaction/build.gradle +++ b/samples/s5-ch06-declarative-transaction/build.gradle @@ -21,9 +21,9 @@ repositories { dependencies { // 该依赖用于编译阶段 - compile('org.springframework:spring-context:5.0.8.RELEASE') - compile('org.springframework:spring-aspects:5.0.8.RELEASE') - compile('org.springframework:spring-jdbc:5.0.8.RELEASE') + compile('org.springframework:spring-context:5.1.1.RELEASE') + compile('org.springframework:spring-aspects:5.1.1.RELEASE') + compile('org.springframework:spring-jdbc:5.1.1.RELEASE') compile('org.apache.logging.log4j:log4j-core:2.6.2') compile('org.apache.logging.log4j:log4j-jcl:2.6.2') compile('org.apache.logging.log4j:log4j-slf4j-impl:2.6.2') diff --git a/samples/s5-ch06-declarative-transaction/pom.xml b/samples/s5-ch06-declarative-transaction/pom.xml index 1c2e1b7..33b2f0f 100644 --- a/samples/s5-ch06-declarative-transaction/pom.xml +++ b/samples/s5-ch06-declarative-transaction/pom.xml @@ -11,7 +11,7 @@ https://waylau.com - 5.0.8.RELEASE + 5.1.1.RELEASE diff --git a/samples/s5-ch08-embedded-database/build.gradle b/samples/s5-ch08-embedded-database/build.gradle index a76e83e..11204bf 100644 --- a/samples/s5-ch08-embedded-database/build.gradle +++ b/samples/s5-ch08-embedded-database/build.gradle @@ -21,9 +21,9 @@ repositories { dependencies { // 该依赖用于编译阶段 - compile('org.springframework:spring-context:5.0.8.RELEASE') - compile('org.springframework:spring-aspects:5.0.8.RELEASE') - compile('org.springframework:spring-jdbc:5.0.8.RELEASE') + compile('org.springframework:spring-context:5.1.1.RELEASE') + compile('org.springframework:spring-aspects:5.1.1.RELEASE') + compile('org.springframework:spring-jdbc:5.1.1.RELEASE') compile('org.apache.logging.log4j:log4j-core:2.6.2') compile('org.apache.logging.log4j:log4j-jcl:2.6.2') compile('org.apache.logging.log4j:log4j-slf4j-impl:2.6.2') diff --git a/samples/s5-ch08-embedded-database/pom.xml b/samples/s5-ch08-embedded-database/pom.xml index 311f793..77ad77f 100644 --- a/samples/s5-ch08-embedded-database/pom.xml +++ b/samples/s5-ch08-embedded-database/pom.xml @@ -11,7 +11,7 @@ https://waylau.com - 5.0.8.RELEASE + 5.1.1.RELEASE diff --git a/samples/s5-ch08-jdbc-object-mapping/build.gradle b/samples/s5-ch08-jdbc-object-mapping/build.gradle index a76e83e..11204bf 100644 --- a/samples/s5-ch08-jdbc-object-mapping/build.gradle +++ b/samples/s5-ch08-jdbc-object-mapping/build.gradle @@ -21,9 +21,9 @@ repositories { dependencies { // 该依赖用于编译阶段 - compile('org.springframework:spring-context:5.0.8.RELEASE') - compile('org.springframework:spring-aspects:5.0.8.RELEASE') - compile('org.springframework:spring-jdbc:5.0.8.RELEASE') + compile('org.springframework:spring-context:5.1.1.RELEASE') + compile('org.springframework:spring-aspects:5.1.1.RELEASE') + compile('org.springframework:spring-jdbc:5.1.1.RELEASE') compile('org.apache.logging.log4j:log4j-core:2.6.2') compile('org.apache.logging.log4j:log4j-jcl:2.6.2') compile('org.apache.logging.log4j:log4j-slf4j-impl:2.6.2') diff --git a/samples/s5-ch08-jdbc-object-mapping/pom.xml b/samples/s5-ch08-jdbc-object-mapping/pom.xml index 37c8918..ff6aa10 100644 --- a/samples/s5-ch08-jdbc-object-mapping/pom.xml +++ b/samples/s5-ch08-jdbc-object-mapping/pom.xml @@ -11,7 +11,7 @@ https://waylau.com - 5.0.8.RELEASE + 5.1.1.RELEASE diff --git a/samples/s5-ch08-jdbc-template/build.gradle b/samples/s5-ch08-jdbc-template/build.gradle index a76e83e..11204bf 100644 --- a/samples/s5-ch08-jdbc-template/build.gradle +++ b/samples/s5-ch08-jdbc-template/build.gradle @@ -21,9 +21,9 @@ repositories { dependencies { // 该依赖用于编译阶段 - compile('org.springframework:spring-context:5.0.8.RELEASE') - compile('org.springframework:spring-aspects:5.0.8.RELEASE') - compile('org.springframework:spring-jdbc:5.0.8.RELEASE') + compile('org.springframework:spring-context:5.1.1.RELEASE') + compile('org.springframework:spring-aspects:5.1.1.RELEASE') + compile('org.springframework:spring-jdbc:5.1.1.RELEASE') compile('org.apache.logging.log4j:log4j-core:2.6.2') compile('org.apache.logging.log4j:log4j-jcl:2.6.2') compile('org.apache.logging.log4j:log4j-slf4j-impl:2.6.2') diff --git a/samples/s5-ch08-jdbc-template/pom.xml b/samples/s5-ch08-jdbc-template/pom.xml index e52436a..3d4d8f6 100644 --- a/samples/s5-ch08-jdbc-template/pom.xml +++ b/samples/s5-ch08-jdbc-template/pom.xml @@ -11,7 +11,7 @@ https://waylau.com - 5.0.8.RELEASE + 5.1.1.RELEASE diff --git a/samples/s5-ch10-jaxb-oxm/build.gradle b/samples/s5-ch10-jaxb-oxm/build.gradle index 371f7d1..ca1129d 100644 --- a/samples/s5-ch10-jaxb-oxm/build.gradle +++ b/samples/s5-ch10-jaxb-oxm/build.gradle @@ -21,6 +21,6 @@ repositories { dependencies { // 该依赖用于编译阶段 - compile('org.springframework:spring-context:5.0.8.RELEASE') - compile('org.springframework:spring-oxm:5.0.8.RELEASE') + compile('org.springframework:spring-context:5.1.1.RELEASE') + compile('org.springframework:spring-oxm:5.1.1.RELEASE') } diff --git a/samples/s5-ch10-jaxb-oxm/pom.xml b/samples/s5-ch10-jaxb-oxm/pom.xml index b67d447..403dab4 100644 --- a/samples/s5-ch10-jaxb-oxm/pom.xml +++ b/samples/s5-ch10-jaxb-oxm/pom.xml @@ -10,7 +10,7 @@ https://waylau.com - 5.0.8.RELEASE + 5.1.1.RELEASE diff --git a/samples/s5-ch11-mvc-rest/build.gradle b/samples/s5-ch11-mvc-rest/build.gradle index 3dbb345..bf8b6ff 100644 --- a/samples/s5-ch11-mvc-rest/build.gradle +++ b/samples/s5-ch11-mvc-rest/build.gradle @@ -21,7 +21,7 @@ repositories { dependencies { // 该依赖用于编译阶段 - compile('org.springframework:spring-webmvc:5.0.8.RELEASE') + compile('org.springframework:spring-webmvc:5.1.1.RELEASE') // 添加 Jackson JSON 依赖 compile group: 'com.fasterxml.jackson.core', name: 'jackson-core', version: '2.9.6' diff --git a/samples/s5-ch11-mvc-rest/pom.xml b/samples/s5-ch11-mvc-rest/pom.xml index 8ef341f..5de9d75 100644 --- a/samples/s5-ch11-mvc-rest/pom.xml +++ b/samples/s5-ch11-mvc-rest/pom.xml @@ -12,7 +12,7 @@ - 5.0.8.RELEASE + 5.1.1.RELEASE 9.4.11.v20180605 2.9.6 diff --git a/samples/s5-ch12-rest-template/build.gradle b/samples/s5-ch12-rest-template/build.gradle index 2d599e5..06132da 100644 --- a/samples/s5-ch12-rest-template/build.gradle +++ b/samples/s5-ch12-rest-template/build.gradle @@ -21,7 +21,7 @@ repositories { dependencies { // 该依赖用于编译阶段 - compile('org.springframework:spring-webmvc:5.0.8.RELEASE') + compile('org.springframework:spring-webmvc:5.1.1.RELEASE') // 添加 Jackson JSON 依赖 compile group: 'com.fasterxml.jackson.core', name: 'jackson-core', version: '2.9.6' diff --git a/samples/s5-ch12-rest-template/pom.xml b/samples/s5-ch12-rest-template/pom.xml index ad8ddfb..8672fbf 100644 --- a/samples/s5-ch12-rest-template/pom.xml +++ b/samples/s5-ch12-rest-template/pom.xml @@ -12,7 +12,7 @@ - 5.0.8.RELEASE + 5.1.1.RELEASE 9.4.11.v20180605 2.9.6 4.5.5 diff --git a/samples/s5-ch13-websocket-stomp/build.gradle b/samples/s5-ch13-websocket-stomp/build.gradle index 9089b2b..8abd466 100644 --- a/samples/s5-ch13-websocket-stomp/build.gradle +++ b/samples/s5-ch13-websocket-stomp/build.gradle @@ -21,9 +21,9 @@ repositories { dependencies { // 该依赖用于编译阶段 - compile('org.springframework:spring-webmvc:5.0.8.RELEASE') - compile('org.springframework:spring-websocket:5.0.8.RELEASE') - compile('org.springframework:spring-messaging:5.0.8.RELEASE') + compile('org.springframework:spring-webmvc:5.1.1.RELEASE') + compile('org.springframework:spring-websocket:5.1.1.RELEASE') + compile('org.springframework:spring-messaging:5.1.1.RELEASE') // 添加 Jackson JSON 依赖 compile group: 'com.fasterxml.jackson.core', name: 'jackson-core', version: '2.9.6' diff --git a/samples/s5-ch13-websocket-stomp/pom.xml b/samples/s5-ch13-websocket-stomp/pom.xml index daa3493..747847a 100644 --- a/samples/s5-ch13-websocket-stomp/pom.xml +++ b/samples/s5-ch13-websocket-stomp/pom.xml @@ -12,7 +12,7 @@ - 5.0.8.RELEASE + 5.1.1.RELEASE 9.4.11.v20180605 2.9.6 diff --git a/samples/s5-ch15-webclient-file/build.gradle b/samples/s5-ch15-webclient-file/build.gradle index 14d8fa6..0d11d79 100644 --- a/samples/s5-ch15-webclient-file/build.gradle +++ b/samples/s5-ch15-webclient-file/build.gradle @@ -21,5 +21,5 @@ repositories { dependencies { // 该依赖用于编译阶段 - compile('org.springframework:spring-webflux:5.0.8.RELEASE') + compile('org.springframework:spring-webflux:5.1.1.RELEASE') } diff --git a/samples/s5-ch15-webclient-file/pom.xml b/samples/s5-ch15-webclient-file/pom.xml index a1b124e..c7e7a59 100644 --- a/samples/s5-ch15-webclient-file/pom.xml +++ b/samples/s5-ch15-webclient-file/pom.xml @@ -12,7 +12,7 @@ - 5.0.8.RELEASE + 5.1.1.RELEASE 0.7.6.RELEASE diff --git a/samples/s5-ch16-reactive-websocket/build.gradle b/samples/s5-ch16-reactive-websocket/build.gradle index 9089b2b..8abd466 100644 --- a/samples/s5-ch16-reactive-websocket/build.gradle +++ b/samples/s5-ch16-reactive-websocket/build.gradle @@ -21,9 +21,9 @@ repositories { dependencies { // 该依赖用于编译阶段 - compile('org.springframework:spring-webmvc:5.0.8.RELEASE') - compile('org.springframework:spring-websocket:5.0.8.RELEASE') - compile('org.springframework:spring-messaging:5.0.8.RELEASE') + compile('org.springframework:spring-webmvc:5.1.1.RELEASE') + compile('org.springframework:spring-websocket:5.1.1.RELEASE') + compile('org.springframework:spring-messaging:5.1.1.RELEASE') // 添加 Jackson JSON 依赖 compile group: 'com.fasterxml.jackson.core', name: 'jackson-core', version: '2.9.6' diff --git a/samples/s5-ch16-reactive-websocket/pom.xml b/samples/s5-ch16-reactive-websocket/pom.xml index e51e182..7996ccb 100644 --- a/samples/s5-ch16-reactive-websocket/pom.xml +++ b/samples/s5-ch16-reactive-websocket/pom.xml @@ -12,7 +12,7 @@ - 5.0.8.RELEASE + 5.1.1.RELEASE 9.4.11.v20180605 2.9.6 0.7.6.RELEASE diff --git a/samples/s5-ch19-jms-msg/build.gradle b/samples/s5-ch19-jms-msg/build.gradle index 8d906b2..a96a448 100644 --- a/samples/s5-ch19-jms-msg/build.gradle +++ b/samples/s5-ch19-jms-msg/build.gradle @@ -21,10 +21,10 @@ repositories { dependencies { // 该依赖用于编译阶段 - compile('org.springframework:spring-core:5.0.8.RELEASE') - compile('org.springframework:spring-aop:5.0.8.RELEASE') - compile('org.springframework:spring-jms:5.0.8.RELEASE') - compile('org.springframework:spring-test:5.0.8.RELEASE') + compile('org.springframework:spring-core:5.1.1.RELEASE') + compile('org.springframework:spring-aop:5.1.1.RELEASE') + compile('org.springframework:spring-jms:5.1.1.RELEASE') + compile('org.springframework:spring-test:5.1.1.RELEASE') compile group: 'org.apache.activemq', name: 'activemq-all', version: '5.15.3' //compile group: 'javax.jms', name: 'javax.jms-api', version: '2.0.1' diff --git a/samples/s5-ch19-jms-msg/pom.xml b/samples/s5-ch19-jms-msg/pom.xml index d15be93..cddc34b 100644 --- a/samples/s5-ch19-jms-msg/pom.xml +++ b/samples/s5-ch19-jms-msg/pom.xml @@ -13,7 +13,7 @@ UTF-8 - 5.0.8.RELEASE + 5.1.1.RELEASE 4.12 5.15.3 diff --git a/samples/s5-ch22-java-mail/build.gradle b/samples/s5-ch22-java-mail/build.gradle index ba9f855..a1cc7b7 100644 --- a/samples/s5-ch22-java-mail/build.gradle +++ b/samples/s5-ch22-java-mail/build.gradle @@ -21,8 +21,8 @@ repositories { dependencies { // 该依赖用于编译阶段 - compile('org.springframework:context-support:5.0.8.RELEASE') - compile('org.springframework:spring-test:5.0.8.RELEASE') + compile('org.springframework:context-support:5.1.1.RELEASE') + compile('org.springframework:spring-test:5.1.1.RELEASE') compile group: 'com.sun.mail', name: 'javax.mail', version: '1.6.1' diff --git a/samples/s5-ch22-java-mail/pom.xml b/samples/s5-ch22-java-mail/pom.xml index 8a2a09c..833ae7c 100644 --- a/samples/s5-ch22-java-mail/pom.xml +++ b/samples/s5-ch22-java-mail/pom.xml @@ -13,7 +13,7 @@ UTF-8 - 5.0.8.RELEASE + 5.1.1.RELEASE 4.12 1.6.1 diff --git a/samples/s5-ch23-quartz-scheduler/build.gradle b/samples/s5-ch23-quartz-scheduler/build.gradle index 412ea9a..4888cb3 100644 --- a/samples/s5-ch23-quartz-scheduler/build.gradle +++ b/samples/s5-ch23-quartz-scheduler/build.gradle @@ -21,9 +21,9 @@ repositories { dependencies { // 该依赖用于编译阶段 - compile('org.springframework:spring-webmvc:5.0.8.RELEASE') - compile('org.springframework:context-support:5.0.8.RELEASE') - compile('org.springframework:spring-tx:5.0.8.RELEASE') + compile('org.springframework:spring-webmvc:5.1.1.RELEASE') + compile('org.springframework:context-support:5.1.1.RELEASE') + compile('org.springframework:spring-tx:5.1.1.RELEASE') // 添加 Jackson JSON 依赖 compile group: 'com.fasterxml.jackson.core', name: 'jackson-core', version: '2.9.6' diff --git a/samples/s5-ch24-java-cache/build.gradle b/samples/s5-ch24-java-cache/build.gradle index 2d599e5..06132da 100644 --- a/samples/s5-ch24-java-cache/build.gradle +++ b/samples/s5-ch24-java-cache/build.gradle @@ -21,7 +21,7 @@ repositories { dependencies { // 该依赖用于编译阶段 - compile('org.springframework:spring-webmvc:5.0.8.RELEASE') + compile('org.springframework:spring-webmvc:5.1.1.RELEASE') // 添加 Jackson JSON 依赖 compile group: 'com.fasterxml.jackson.core', name: 'jackson-core', version: '2.9.6' diff --git a/samples/s5-ch24-java-cache/pom.xml b/samples/s5-ch24-java-cache/pom.xml index c16ba52..4b5f32e 100644 --- a/samples/s5-ch24-java-cache/pom.xml +++ b/samples/s5-ch24-java-cache/pom.xml @@ -12,7 +12,7 @@ - 5.0.8.RELEASE + 5.1.1.RELEASE 9.4.11.v20180605 2.9.6 4.5.5