File tree 3 files changed +34
-0
lines changed
spring-rewrite-commons-maven-embedder/testcode/maven-projects/simple
3 files changed +34
-0
lines changed Original file line number Diff line number Diff line change
1
+ <?xml version =" 1.0" encoding =" UTF-8" ?>
2
+ <project xmlns =" http://maven.apache.org/POM/4.0.0"
3
+ xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
4
+ xsi : schemaLocation =" http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" >
5
+ <modelVersion >4.0.0</modelVersion >
6
+ <groupId >com.example.maven</groupId >
7
+ <artifactId >simple</artifactId >
8
+ <version >0.1.0-SNAPSHOT</version >
9
+
10
+ <properties >
11
+ <maven .compiler.source>17</maven .compiler.source>
12
+ <maven .compiler.target>17</maven .compiler.target>
13
+ <project .build.sourceEncoding>UTF-8</project .build.sourceEncoding>
14
+ </properties >
15
+
16
+ <dependencies >
17
+ <dependency >
18
+ <groupId >org.junit.jupiter</groupId >
19
+ <artifactId >junit-jupiter-engine</artifactId >
20
+ <version >5.9.2</version >
21
+ <scope >test</scope >
22
+ </dependency >
23
+ </dependencies >
24
+ </project >
Original file line number Diff line number Diff line change
1
+ package com .example ;
2
+
3
+ public class TheClass {
4
+
5
+ }
Original file line number Diff line number Diff line change
1
+ package com .example ;
2
+
3
+ public class TheClassTest {
4
+
5
+ }
You can’t perform that action at this time.
0 commit comments