Skip to content

Commit

Permalink
chore(deps): Update Spring dependencies (framework to 6.1.12, securit…
Browse files Browse the repository at this point in the history
…y to 6.3.3, boot to 3.3.3)
  • Loading branch information
deki committed Aug 23, 2024
1 parent 67b8543 commit 0fc7430
Show file tree
Hide file tree
Showing 15 changed files with 20 additions and 20 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.3.1</version>
<version>6.3.3</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.1.11</spring.version>
<spring-security.version>6.3.1</spring-security.version>
<spring.version>6.1.12</spring.version>
<spring-security.version>6.3.3</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.1.0-SNAPSHOT</version>

<properties>
<spring.version>6.1.11</spring.version>
<springboot.version>3.3.2</springboot.version>
<springsecurity.version>6.3.1</springsecurity.version>
<spring.version>6.1.12</spring.version>
<springboot.version>3.3.3</springboot.version>
<springsecurity.version>6.3.3</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.1.11',
'org.springframework:spring-context:6.1.11',
'org.springframework:spring-webmvc:6.1.12',
'org.springframework:spring-context:6.1.12',
'com.amazonaws.serverless:aws-serverless-java-container-spring:[2.0-SNAPSHOT,)',
'org.apache.logging.log4j:log4j-core:2.23.1',
'org.apache.logging.log4j:log4j-api:2.23.1',
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.1.11</spring.version>
<spring.version>6.1.12</spring.version>
<junit.version>5.11.0</junit.version>
<log4j.version>2.23.1</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.3.2',
'org.springframework.boot:spring-boot-starter-web:3.3.3',
'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.3.2</version>
<version>3.3.3</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.1.11',
'org.springframework:spring-context:6.1.11',
'org.springframework:spring-webmvc:6.1.12',
'org.springframework:spring-context:6.1.12',
'com.amazonaws.serverless:aws-serverless-java-container-spring:[2.0-SNAPSHOT,)',
'org.apache.logging.log4j:log4j-core:2.23.1',
'org.apache.logging.log4j:log4j-api:2.23.1',
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.1.11</spring.version>
<spring.version>6.1.12</spring.version>
<log4j.version>2.23.1</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/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.3.2') {
implementation('org.springframework.boot:spring-boot-starter-web:3.3.3') {
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.3.2</version>
<version>3.3.3</version>
</parent>

<licenses>
Expand Down
2 changes: 1 addition & 1 deletion samples/springboot3/graphql-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.3.2</version>
<version>3.3.3</version>
</parent>

<licenses>
Expand Down
2 changes: 1 addition & 1 deletion samples/springboot3/pet-store-native/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>3.3.2</version>
<version>3.3.3</version>
<relativePath /> <!-- lookup parent from repository -->
</parent>
<groupId>com.amazonaws.serverless.sample</groupId>
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.3.2') {
implementation('org.springframework.boot:spring-boot-starter-web:3.3.3') {
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.3.2</version>
<version>3.3.3</version>
</parent>

<licenses>
Expand Down

0 comments on commit 0fc7430

Please sign in to comment.