Skip to content

Commit 8485999

Browse files
committed
Update
1 parent 9d0c8f7 commit 8485999

File tree

1 file changed

+85
-78
lines changed

1 file changed

+85
-78
lines changed

pom.xml

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

0 commit comments

Comments
 (0)