Upgrade auf Spring-Boot 3.1.0-M2
[demos/spring-boot] / pom.xml
diff --git a/pom.xml b/pom.xml
index 861ba15..4e5b16c 100644 (file)
--- a/pom.xml
+++ b/pom.xml
@@ -5,18 +5,17 @@
        <parent>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-starter-parent</artifactId>
-               <version>2.2.4.RELEASE</version>
+               <version>3.1.0-M2</version>
                <relativePath/> <!-- lookup parent from repository -->
        </parent>
        <groupId>de.juplo.demos</groupId>
        <artifactId>TEMPLATE</artifactId>
        <version>0.0.1-SNAPSHOT</version>
        <name>Demo: TEMPLATE</name>
-
+       <description>TEMPLATE for a Demo project for Spring Boot</description>
        <properties>
-               <java.version>1.8</java.version>
+               <java.version>17</java.version>
        </properties>
-
        <dependencies>
                <dependency>
                        <groupId>org.springframework.boot</groupId>
                        <groupId>org.springframework.boot</groupId>
                        <artifactId>spring-boot-starter-test</artifactId>
                        <scope>test</scope>
-                       <exclusions>
-                               <exclusion>
-                                       <groupId>org.junit.vintage</groupId>
-                                       <artifactId>junit-vintage-engine</artifactId>
-                               </exclusion>
-                       </exclusions>
                </dependency>
                <dependency>
                        <groupId>io.projectreactor</groupId>
                        <artifactId>reactor-test</artifactId>
                        <scope>test</scope>
                </dependency>
-
                <dependency>
                        <groupId>org.springframework.boot</groupId>
                        <artifactId>spring-boot-devtools</artifactId>
+                       <scope>runtime</scope>
                        <optional>true</optional>
                </dependency>
        </dependencies>
                        </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>