Skip to content

Commit 4244f98

Browse files
committed
Fix tst project
1 parent 5d7e39e commit 4244f98

File tree

3 files changed

+16
-3
lines changed
  • spring-rewrite-commons-launcher/testcode/maven-projects/resources

3 files changed

+16
-3
lines changed

spring-rewrite-commons-launcher/testcode/maven-projects/resources/application/pom.xml

+7-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<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">
2+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
34
<modelVersion>4.0.0</modelVersion>
45
<parent>
56
<groupId>com.acme</groupId>
@@ -8,6 +9,11 @@
89
<relativePath>../pom.xml</relativePath>
910
</parent>
1011
<artifactId>application</artifactId>
12+
<properties>
13+
<maven.compiler.source>17</maven.compiler.source>
14+
<maven.compiler.target>17</maven.compiler.target>
15+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
16+
</properties>
1117
<dependencies>
1218
<dependency>
1319
<groupId>com.acme</groupId>
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<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">
2+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
34
<modelVersion>4.0.0</modelVersion>
45
<parent>
56
<groupId>com.acme</groupId>
@@ -8,4 +9,10 @@
89
<relativePath>../pom.xml</relativePath>
910
</parent>
1011
<artifactId>component</artifactId>
12+
<properties>
13+
<maven.compiler.source>17</maven.compiler.source>
14+
<maven.compiler.target>17</maven.compiler.target>
15+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
16+
</properties>
17+
1118
</project>

spring-rewrite-commons-launcher/testcode/maven-projects/resources/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<packaging>pom</packaging>
88
<modules>
99
<module>application</module>
10-
<!-- <module>component</module>-->
10+
<module>component</module>
1111
</modules>
1212
<properties>
1313
<maven.compiler.source>17</maven.compiler.source>

0 commit comments

Comments
 (0)