Skip to content

Commit 6f04a47

Browse files
committed
moving to Spring Boot 3 GA.
1 parent 294038b commit 6f04a47

File tree

2 files changed

+4
-52
lines changed

2 files changed

+4
-52
lines changed

pom.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
<module>extended</module>
1616
<module>fluent</module>
1717
<module>spring</module>
18+
<module>spring-aot</module>
1819
<module>e2e</module>
1920
<module>examples</module>
2021
<module>client-java-contrib/cert-manager</module>

spring-aot/pom.xml

Lines changed: 3 additions & 52 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,9 @@
1313
<version>16.0.0-SNAPSHOT</version>
1414
<relativePath>../pom.xml</relativePath>
1515
</parent>
16+
<properties>
17+
<spring.boot.version>3.0.0</spring.boot.version>
18+
</properties>
1619
<dependencies>
1720
<dependency>
1821
<groupId>org.reflections</groupId>
@@ -44,18 +47,6 @@
4447
<scope>test</scope>
4548
</dependency>
4649
</dependencies>
47-
<dependencyManagement>
48-
<dependencies>
49-
<dependency>
50-
<groupId>org.springframework.boot</groupId>
51-
<artifactId>spring-boot-dependencies</artifactId>
52-
<version>3.0.0-SNAPSHOT</version>
53-
<type>pom</type>
54-
<scope>import</scope>
55-
</dependency>
56-
</dependencies>
57-
</dependencyManagement>
58-
5950
<build>
6051
<plugins>
6152
<plugin>
@@ -93,44 +84,4 @@
9384
</plugin>
9485
</plugins>
9586
</build>
96-
<!--
97-
todo : we don't need this after 24 november, 2022
98-
-->
99-
<repositories>
100-
<repository>
101-
<id>spring-milestones</id>
102-
<name>Spring Milestones</name>
103-
<url>https://repo.spring.io/milestone</url>
104-
<snapshots>
105-
<enabled>false</enabled>
106-
</snapshots>
107-
</repository>
108-
<repository>
109-
<id>spring-snapshots</id>
110-
<name>Spring Snapshots</name>
111-
<url>https://repo.spring.io/snapshot</url>
112-
<releases>
113-
<enabled>false</enabled>
114-
</releases>
115-
</repository>
116-
</repositories>
117-
<pluginRepositories>
118-
<pluginRepository>
119-
<id>spring-milestones</id>
120-
<name>Spring Milestones</name>
121-
<url>https://repo.spring.io/milestone</url>
122-
<snapshots>
123-
<enabled>false</enabled>
124-
</snapshots>
125-
</pluginRepository>
126-
<pluginRepository>
127-
<id>spring-snapshots</id>
128-
<name>Spring Snapshots</name>
129-
<url>https://repo.spring.io/snapshot</url>
130-
<releases>
131-
<enabled>false</enabled>
132-
</releases>
133-
</pluginRepository>
134-
</pluginRepositories>
135-
13687
</project>

0 commit comments

Comments
 (0)