Skip to content

Commit

Permalink
Upgrade to Spring Boot 3.2.0 (#7)
Browse files Browse the repository at this point in the history
  • Loading branch information
sdeleuze authored Nov 24, 2023
1 parent 39be3de commit de16ba2
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 31 deletions.
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
plugins { id 'org.springframework.boot' version '3.2.0-RC2'
plugins {
id 'org.springframework.boot' version '3.2.0'
id 'io.spring.dependency-management' version '1.1.3'
id 'java'
}
Expand All @@ -9,12 +10,11 @@ sourceCompatibility = '17'

repositories {
mavenCentral()
maven { url 'https://repo.spring.io/milestone' }
}

dependencies {
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation 'org.crac:crac:1.4.0'
implementation 'org.crac:crac'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
}

Expand Down
23 changes: 1 addition & 22 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>3.2.0-RC2</version>
<version>3.2.0</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
<groupId>com.example</groupId>
Expand All @@ -24,7 +24,6 @@
<dependency>
<groupId>org.crac</groupId>
<artifactId>crac</artifactId>
<version>1.4.0</version>
</dependency>

<dependency>
Expand All @@ -42,25 +41,5 @@
</plugin>
</plugins>
</build>
<repositories>
<repository>
<id>spring-milestones</id>
<name>Spring Milestones</name>
<url>https://repo.spring.io/milestone</url>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<id>spring-milestones</id>
<name>Spring Milestones</name>
<url>https://repo.spring.io/milestone</url>
<snapshots>
<enabled>false</enabled>
</snapshots>
</pluginRepository>
</pluginRepositories>

</project>
6 changes: 0 additions & 6 deletions settings.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1 @@
pluginManagement {
repositories {
maven { url 'https://repo.spring.io/milestone' }
gradlePluginPortal()
}
}
rootProject.name = 'example-spring-boot'

0 comments on commit de16ba2

Please sign in to comment.