Skip to content

Commit

Permalink
chore(deps): Update Spring dependencies (framework to 6.0.11, securit…
Browse files Browse the repository at this point in the history
…y to 6.1.2, boot to 3.1.2) #609, #610, #611, #612, #613
  • Loading branch information
deki committed Jul 20, 2023
1 parent 5afae31 commit a858154
Show file tree
Hide file tree
Showing 13 changed files with 18 additions and 18 deletions.
2 changes: 1 addition & 1 deletion aws-serverless-java-container-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@
<dependency>
<groupId>org.springframework.security</groupId>
<artifactId>spring-security-web</artifactId>
<version>6.1.1</version>
<version>6.1.2</version>
<scope>test</scope>
</dependency>
</dependencies>
Expand Down
4 changes: 2 additions & 2 deletions aws-serverless-java-container-spring/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@
</parent>

<properties>
<spring.version>6.0.10</spring.version>
<spring-security.version>6.1.1</spring-security.version>
<spring.version>6.0.11</spring.version>
<spring-security.version>6.1.2</spring-security.version>
</properties>

<dependencies>
Expand Down
6 changes: 3 additions & 3 deletions aws-serverless-java-container-springboot3/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@
<version>2.0.0-SNAPSHOT</version>

<properties>
<spring.version>6.0.10</spring.version>
<springboot.version>3.1.1</springboot.version>
<springsecurity.version>6.1.1</springsecurity.version>
<spring.version>6.0.11</spring.version>
<springboot.version>3.1.2</springboot.version>
<springsecurity.version>6.1.2</springsecurity.version>
</properties>

<dependencies>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ repositories {

dependencies {
implementation (
'org.springframework:spring-webmvc:6.0.10',
'org.springframework:spring-context:6.0.10',
'org.springframework:spring-webmvc:6.0.11',
'org.springframework:spring-context:6.0.11',
'com.amazonaws.serverless:aws-serverless-java-container-spring:[2.0-SNAPSHOT,)',
'org.apache.logging.log4j:log4j-core:2.20.0',
'org.apache.logging.log4j:log4j-api:2.20.0',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
<properties>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<spring.version>6.0.10</spring.version>
<spring.version>6.0.11</spring.version>
<junit.version>5.9.3</junit.version>
<log4j.version>2.20.0</log4j.version>
</properties>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ repositories {

dependencies {
implementation (
'org.springframework.boot:spring-boot-starter-web:3.1.1',
'org.springframework.boot:spring-boot-starter-web:3.1.2',
'com.amazonaws.serverless:aws-serverless-java-container-springboot3:[2.0-SNAPSHOT,)',
)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>3.1.1</version>
<version>3.1.2</version>
</parent>

<properties>
Expand Down
4 changes: 2 additions & 2 deletions samples/spring/pet-store/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ repositories {

dependencies {
implementation (
'org.springframework:spring-webmvc:6.0.10',
'org.springframework:spring-context:6.0.10',
'org.springframework:spring-webmvc:6.0.11',
'org.springframework:spring-context:6.0.11',
'com.amazonaws.serverless:aws-serverless-java-container-spring:[2.0-SNAPSHOT,)',
'org.apache.logging.log4j:log4j-core:2.20.0',
'org.apache.logging.log4j:log4j-api:2.20.0',
Expand Down
2 changes: 1 addition & 1 deletion samples/spring/pet-store/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
</licenses>

<properties>
<spring.version>6.0.10</spring.version>
<spring.version>6.0.11</spring.version>
<log4j.version>2.20.0</log4j.version>
<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target>
Expand Down
2 changes: 1 addition & 1 deletion samples/springboot3/alt-pet-store/builds.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ repositories {

dependencies {
implementation (
implementation('org.springframework.boot:spring-boot-starter-web:3.1.1') {
implementation('org.springframework.boot:spring-boot-starter-web:3.1.2') {
exclude group: 'org.springframework.boot', module: 'spring-boot-starter-tomcat'
},
'com.amazonaws.serverless:aws-serverless-java-container-springboot3:[2.0-SNAPSHOT,)',
Expand Down
2 changes: 1 addition & 1 deletion samples/springboot3/alt-pet-store/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>3.1.1</version>
<version>3.1.2</version>
</parent>

<licenses>
Expand Down
2 changes: 1 addition & 1 deletion samples/springboot3/pet-store/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ repositories {

dependencies {
implementation (
implementation('org.springframework.boot:spring-boot-starter-web:3.1.1') {
implementation('org.springframework.boot:spring-boot-starter-web:3.1.2') {
exclude group: 'org.springframework.boot', module: 'spring-boot-starter-tomcat'
},
'com.amazonaws.serverless:aws-serverless-java-container-springboot3:[2.0-SNAPSHOT,)',
Expand Down
2 changes: 1 addition & 1 deletion samples/springboot3/pet-store/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>3.1.1</version>
<version>3.1.2</version>
</parent>

<licenses>
Expand Down

0 comments on commit a858154

Please sign in to comment.