Skip to content

Commit 4eaa22b

Browse files
Update pom.xml
back to working version
1 parent 33ededf commit 4eaa22b

File tree

1 file changed

+78
-82
lines changed

1 file changed

+78
-82
lines changed

pom.xml

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

0 commit comments

Comments
 (0)