Skip to content

Commit 43e2a73

Browse files
committed
changed
1 parent efff6d4 commit 43e2a73

File tree

1 file changed

+40
-25
lines changed

1 file changed

+40
-25
lines changed

pom.xml

Lines changed: 40 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,41 @@
1-
<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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
2-
<modelVersion>4.0.0</modelVersion>
3-
<groupId>MeshLibCoreClean2022</groupId>
4-
<artifactId>MeshLibCoreClean2022</artifactId>
5-
<version>0.0.1-SNAPSHOT</version>
6-
<build>
7-
<sourceDirectory>src/main/java</sourceDirectory>
8-
<testSourceDirectory>src/test/java</testSourceDirectory>
9-
<plugins>
10-
<plugin>
11-
<artifactId>maven-compiler-plugin</artifactId>
12-
<version>3.8.1</version>
13-
<configuration>
14-
<release>15</release>
15-
</configuration>
16-
</plugin>
17-
</plugins>
18-
</build>
19-
<dependencies>
20-
<dependency>
21-
<groupId>org.junit.jupiter</groupId>
22-
<artifactId>junit-jupiter-api</artifactId>
23-
<version>5.9.1</version>
24-
</dependency>
25-
</dependencies>
1+
<project xmlns="http://maven.apache.org/POM/4.0.0"
2+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
4+
<modelVersion>4.0.0</modelVersion>
5+
<groupId>MeshLibCoreClean2022</groupId>
6+
<artifactId>MeshLibCoreClean2022</artifactId>
7+
<version>0.0.1-SNAPSHOT</version>
8+
<build>
9+
<sourceDirectory>src/main/java</sourceDirectory>
10+
<testSourceDirectory>src/test/java</testSourceDirectory>
11+
<plugins>
12+
<plugin>
13+
<artifactId>maven-compiler-plugin</artifactId>
14+
<version>3.8.1</version>
15+
<configuration>
16+
<release>15</release>
17+
</configuration>
18+
</plugin>
19+
</plugins>
20+
</build>
21+
<dependencies>
22+
<dependency>
23+
<groupId>org.junit.jupiter</groupId>
24+
<artifactId>junit-jupiter-engine</artifactId>
25+
<version>5.2.0</version>
26+
<scope>test</scope>
27+
</dependency>
28+
<dependency>
29+
<groupId>org.junit.platform</groupId>
30+
<artifactId>junit-platform-runner</artifactId>
31+
<version>1.2.0</version>
32+
<scope>test</scope>
33+
</dependency>
34+
<dependency>
35+
<groupId>org.junit.jupiter</groupId>
36+
<artifactId>junit-jupiter-api</artifactId>
37+
<version>5.9.1</version>
38+
<scope>test</scope>
39+
</dependency>
40+
</dependencies>
2641
</project>

0 commit comments

Comments
 (0)