Skip to content

Commit bf8dbf7

Browse files
committed
extra module for Spring Boot 3.0 upgrade OR Recipes and Visitors
1 parent 80cacbc commit bf8dbf7

File tree

2 files changed

+85
-0
lines changed

2 files changed

+85
-0
lines changed

spring-boot-upgrade-30/pom.xml

Lines changed: 73 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,73 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!--
3+
~ Copyright 2021 - 2022 the original author or authors.
4+
~
5+
~ Licensed under the Apache License, Version 2.0 (the "License");
6+
~ you may not use this file except in compliance with the License.
7+
~ You may obtain a copy of the License at
8+
~
9+
~ https://www.apache.org/licenses/LICENSE-2.0
10+
~
11+
~ Unless required by applicable law or agreed to in writing, software
12+
~ distributed under the License is distributed on an "AS IS" BASIS,
13+
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14+
~ See the License for the specific language governing permissions and
15+
~ limitations under the License.
16+
-->
17+
18+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
19+
<modelVersion>4.0.0</modelVersion>
20+
21+
<groupId>org.springframework.sbm</groupId>
22+
<artifactId>spring-boot-upgrades-30</artifactId>
23+
<version>0.1.0-SNAPSHOT</version>
24+
<packaging>jar</packaging>
25+
26+
<dependencies>
27+
<dependency>
28+
<groupId>org.openrewrite</groupId>
29+
<artifactId>rewrite-java</artifactId>
30+
<version>7.24.0</version>
31+
</dependency>
32+
<dependency>
33+
<groupId>org.openrewrite</groupId>
34+
<artifactId>rewrite-java-17</artifactId>
35+
<version>7.24.0</version>
36+
</dependency>
37+
<dependency>
38+
<groupId>org.openrewrite</groupId>
39+
<artifactId>rewrite-java-11</artifactId>
40+
<version>7.24.0</version>
41+
</dependency>
42+
<dependency>
43+
<groupId>org.openrewrite</groupId>
44+
<artifactId>rewrite-test</artifactId>
45+
<version>7.24.0</version>
46+
<scope>test</scope>
47+
</dependency>
48+
</dependencies>
49+
50+
<repositories>
51+
<!-- OR Snapshots repo -->
52+
<repository>
53+
<id>rewrite-snapshots</id>
54+
<name>rewrite-snapshots</name>
55+
<url>https://oss.sonatype.org/content/repositories/snapshots/</url>
56+
</repository>
57+
<repository>
58+
<id>jcenter</id>
59+
<name>jcenter</name>
60+
<url>https://jcenter.bintray.com</url>
61+
</repository>
62+
<repository>
63+
<id>mavencentral</id>
64+
<name>mavencentral</name>
65+
<url>https://repo.maven.apache.org/maven2</url>
66+
</repository>
67+
<!-- TODO: remove after b umping testcontainers to > 1.17.1 -->
68+
<repository>
69+
<id>jitpack.io</id>
70+
<url>https://jitpack.io</url>
71+
</repository>
72+
</repositories>
73+
</project>
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
package org.openrewrite.java;
2+
3+
import org.junit.jupiter.api.Test;
4+
5+
public class SomeTest {
6+
7+
@Test
8+
void test() {
9+
// TODO:
10+
}
11+
12+
}

0 commit comments

Comments
 (0)