Skip to content

Commit adc170b

Browse files
committed
Merge
2 parents a2d82d7 + f642905 commit adc170b

File tree

1 file changed

+88
-80
lines changed

1 file changed

+88
-80
lines changed

pom.xml

Lines changed: 88 additions & 80 deletions
Original file line numberDiff line numberDiff line change
@@ -1,81 +1,89 @@
11
<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>MeshLibCore</groupId>
6-
<artifactId>MeshLibCore</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-
<distributionManagement>
22-
<repository>
23-
<id>github</id>
24-
<name>GitHub ArtifactForms Apache Maven Packages</name>
25-
<url>https://maven.pkg.github.com/ArtifactForms/MeshLibCore/master</url>
26-
<releases>
27-
<enabled>true</enabled>
28-
</releases>
29-
<snapshots>
30-
<enabled>true</enabled>
31-
</snapshots>
32-
</repository>
33-
</distributionManagement>
34-
<dependencies>
35-
<dependency>
36-
<groupId>org.junit.jupiter</groupId>
37-
<artifactId>junit-jupiter-params</artifactId>
38-
<version>5.10.0</version>
39-
<scope>test</scope>
40-
</dependency>
41-
<dependency>
42-
<groupId>org.processing</groupId>
43-
<artifactId>core</artifactId>
44-
<version>3.3.7</version>
45-
</dependency>
46-
<dependency>
47-
<groupId>org.jogamp.gluegen</groupId>
48-
<artifactId>gluegen-rt-main</artifactId>
49-
<version>2.3.2</version>
50-
</dependency>
51-
<dependency>
52-
<groupId>org.jogamp.jogl</groupId>
53-
<artifactId>jogl-all-main</artifactId>
54-
<version>2.3.2</version>
55-
</dependency>
56-
<dependency>
57-
<groupId>org.junit.jupiter</groupId>
58-
<artifactId>junit-jupiter-engine</artifactId>
59-
<version>5.2.0</version>
60-
<scope>test</scope>
61-
</dependency>
62-
<dependency>
63-
<groupId>org.junit.platform</groupId>
64-
<artifactId>junit-platform-runner</artifactId>
65-
<version>1.2.0</version>
66-
<scope>test</scope>
67-
</dependency>
68-
<dependency>
69-
<groupId>org.junit.jupiter</groupId>
70-
<artifactId>junit-jupiter-api</artifactId>
71-
<version>5.9.1</version>
72-
<scope>test</scope>
73-
</dependency>
74-
<dependency>
75-
<groupId>org.jacoco</groupId>
76-
<artifactId>jacoco-maven-plugin</artifactId>
77-
<version>0.8.10</version>
78-
</dependency>
79-
</dependencies>
80-
</project>
81-
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>MeshLibCore</groupId>
6+
<artifactId>MeshLibCore</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+
<plugin>
20+
<artifactId>maven-surefire-plugin</artifactId>
21+
<version>2.22.2</version>
22+
</plugin>
23+
<plugin>
24+
<groupId>org.apache.maven.plugins</groupId>
25+
<artifactId>maven-failsafe-plugin</artifactId>
26+
<version>2.22.0</version>
27+
</plugin>
28+
</plugins>
29+
</build>
30+
<distributionManagement>
31+
<repository>
32+
<id>github</id>
33+
<name>GitHub ArtifactForms Apache Maven Packages</name>
34+
<url>https://maven.pkg.github.com/ArtifactForms/MeshLibCore/master</url>
35+
<releases>
36+
<enabled>true</enabled>
37+
</releases>
38+
<snapshots>
39+
<enabled>true</enabled>
40+
</snapshots>
41+
</repository>
42+
</distributionManagement>
43+
<dependencies>
44+
<dependency>
45+
<groupId>org.junit.jupiter</groupId>
46+
<artifactId>junit-jupiter-params</artifactId>
47+
<version>5.10.0</version>
48+
<scope>test</scope>
49+
</dependency>
50+
<dependency>
51+
<groupId>org.processing</groupId>
52+
<artifactId>core</artifactId>
53+
<version>3.3.7</version>
54+
</dependency>
55+
<dependency>
56+
<groupId>org.jogamp.gluegen</groupId>
57+
<artifactId>gluegen-rt-main</artifactId>
58+
<version>2.3.2</version>
59+
</dependency>
60+
<dependency>
61+
<groupId>org.jogamp.jogl</groupId>
62+
<artifactId>jogl-all-main</artifactId>
63+
<version>2.3.2</version>
64+
</dependency>
65+
<dependency>
66+
<groupId>org.junit.jupiter</groupId>
67+
<artifactId>junit-jupiter-engine</artifactId>
68+
<version>5.2.0</version>
69+
<scope>test</scope>
70+
</dependency>
71+
<dependency>
72+
<groupId>org.junit.platform</groupId>
73+
<artifactId>junit-platform-runner</artifactId>
74+
<version>1.2.0</version>
75+
<scope>test</scope>
76+
</dependency>
77+
<dependency>
78+
<groupId>org.junit.jupiter</groupId>
79+
<artifactId>junit-jupiter-api</artifactId>
80+
<version>5.9.1</version>
81+
<scope>test</scope>
82+
</dependency>
83+
<dependency>
84+
<groupId>org.jacoco</groupId>
85+
<artifactId>jacoco-maven-plugin</artifactId>
86+
<version>0.8.10</version>
87+
</dependency>
88+
</dependencies>
89+
</project>

0 commit comments

Comments
 (0)