Skip to content

Commit de16ba2

Browse files
authored
Upgrade to Spring Boot 3.2.0 (#7)
1 parent 39be3de commit de16ba2

File tree

3 files changed

+4
-31
lines changed

3 files changed

+4
-31
lines changed

build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
plugins { id 'org.springframework.boot' version '3.2.0-RC2'
1+
plugins {
2+
id 'org.springframework.boot' version '3.2.0'
23
id 'io.spring.dependency-management' version '1.1.3'
34
id 'java'
45
}
@@ -9,12 +10,11 @@ sourceCompatibility = '17'
910

1011
repositories {
1112
mavenCentral()
12-
maven { url 'https://repo.spring.io/milestone' }
1313
}
1414

1515
dependencies {
1616
implementation 'org.springframework.boot:spring-boot-starter-web'
17-
implementation 'org.crac:crac:1.4.0'
17+
implementation 'org.crac:crac'
1818
testImplementation 'org.springframework.boot:spring-boot-starter-test'
1919
}
2020

pom.xml

Lines changed: 1 addition & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>org.springframework.boot</groupId>
77
<artifactId>spring-boot-starter-parent</artifactId>
8-
<version>3.2.0-RC2</version>
8+
<version>3.2.0</version>
99
<relativePath/> <!-- lookup parent from repository -->
1010
</parent>
1111
<groupId>com.example</groupId>
@@ -24,7 +24,6 @@
2424
<dependency>
2525
<groupId>org.crac</groupId>
2626
<artifactId>crac</artifactId>
27-
<version>1.4.0</version>
2827
</dependency>
2928

3029
<dependency>
@@ -42,25 +41,5 @@
4241
</plugin>
4342
</plugins>
4443
</build>
45-
<repositories>
46-
<repository>
47-
<id>spring-milestones</id>
48-
<name>Spring Milestones</name>
49-
<url>https://repo.spring.io/milestone</url>
50-
<snapshots>
51-
<enabled>false</enabled>
52-
</snapshots>
53-
</repository>
54-
</repositories>
55-
<pluginRepositories>
56-
<pluginRepository>
57-
<id>spring-milestones</id>
58-
<name>Spring Milestones</name>
59-
<url>https://repo.spring.io/milestone</url>
60-
<snapshots>
61-
<enabled>false</enabled>
62-
</snapshots>
63-
</pluginRepository>
64-
</pluginRepositories>
6544

6645
</project>

settings.gradle

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1 @@
1-
pluginManagement {
2-
repositories {
3-
maven { url 'https://repo.spring.io/milestone' }
4-
gradlePluginPortal()
5-
}
6-
}
71
rootProject.name = 'example-spring-boot'

0 commit comments

Comments
 (0)