Skip to content

Commit f350010

Browse files
Create pom.xml
1 parent d6c0a29 commit f350010

File tree

1 file changed

+35
-0
lines changed

1 file changed

+35
-0
lines changed

pom.xml

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
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</sourceDirectory>
8+
<testSourceDirectory>test</testSourceDirectory>
9+
<testResources>
10+
<testResource>
11+
<directory>test</directory>
12+
<excludes>
13+
<exclude>**/*.java</exclude>
14+
</excludes>
15+
</testResource>
16+
</testResources>
17+
<plugins>
18+
<plugin>
19+
<artifactId>maven-compiler-plugin</artifactId>
20+
<version>3.8.1</version>
21+
<configuration>
22+
<release>15</release>
23+
</configuration>
24+
</plugin>
25+
</plugins>
26+
</build>
27+
<dependencies>
28+
<dependency>
29+
<groupId>junit</groupId>
30+
<artifactId>junit</artifactId>
31+
<version>4.13.2</version>
32+
<scope>test</scope>
33+
</dependency>
34+
</dependencies>
35+
</project>

0 commit comments

Comments
 (0)