Skip to content

Commit 090c0ca

Browse files
committed
Try to fix jUnit5 issues.
1 parent 4e22153 commit 090c0ca

File tree

1 file changed

+76
-78
lines changed

1 file changed

+76
-78
lines changed

pom.xml

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

0 commit comments

Comments
 (0)