|
1 | 1 | <project xmlns="http://maven.apache.org/POM/4.0.0" |
2 | 2 | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
3 | 3 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"> |
4 | | - |
5 | 4 | <modelVersion>4.0.0</modelVersion> |
6 | 5 | <groupId>MeshLibCore</groupId> |
7 | 6 | <artifactId>MeshLibCore</artifactId> |
8 | 7 | <version>0.0.1-SNAPSHOT</version> |
9 | | - |
10 | | - <!-- Build Configuration --> |
11 | 8 | <build> |
12 | 9 | <sourceDirectory>src/main/java</sourceDirectory> |
13 | 10 | <testSourceDirectory>src/test/java</testSourceDirectory> |
14 | 11 | <plugins> |
15 | 12 | <plugin> |
16 | 13 | <artifactId>maven-compiler-plugin</artifactId> |
17 | | - <version>3.13.0</version> |
| 14 | + <version>3.8.1</version> |
18 | 15 | <configuration> |
19 | 16 | <release>15</release> |
20 | 17 | </configuration> |
21 | 18 | </plugin> |
22 | 19 | <plugin> |
23 | 20 | <groupId>org.apache.maven.plugins</groupId> |
24 | 21 | <artifactId>maven-surefire-plugin</artifactId> |
25 | | - <version>3.0.0-M5</version> <!-- Updated to latest version |
26 | | - compatible with JUnit 5 --> |
| 22 | + <version>2.22.2</version> |
27 | 23 | <configuration> |
28 | | - <useModulePath>false</useModulePath> |
29 | 24 | </configuration> |
30 | 25 | </plugin> |
31 | 26 | </plugins> |
32 | 27 | </build> |
33 | | - |
34 | | - <!-- Repository Configuration --> |
35 | 28 | <repositories> |
36 | 29 | <repository> |
37 | 30 | <name>JoGL Distrib</name> |
38 | 31 | <id>org.jogamp</id> |
39 | 32 | <url>https://www.jogamp.org/deployment/maven/</url> |
40 | 33 | </repository> |
41 | 34 | </repositories> |
42 | | - |
43 | | - <!-- Dependencies --> |
| 35 | + <distributionManagement> |
| 36 | + <repository> |
| 37 | + <id>github</id> |
| 38 | + <name>GitHub ArtifactForms Apache Maven Packages</name> |
| 39 | + <url>https://maven.pkg.github.com/ArtifactForms/MeshLibCore/master</url> |
| 40 | + <releases> |
| 41 | + <enabled>true</enabled> |
| 42 | + </releases> |
| 43 | + <snapshots> |
| 44 | + <enabled>true</enabled> |
| 45 | + </snapshots> |
| 46 | + </repository> |
| 47 | + </distributionManagement> |
44 | 48 | <dependencies> |
45 | | - <!-- Processing Core --> |
46 | 49 | <dependency> |
47 | 50 | <groupId>org.processing</groupId> |
48 | 51 | <artifactId>core</artifactId> |
49 | 52 | <version>4.3.1</version> |
50 | 53 | </dependency> |
51 | | - |
52 | | - <!-- JoGL Gluegen --> |
53 | 54 | <dependency> |
54 | 55 | <groupId>org.jogamp.gluegen</groupId> |
55 | 56 | <artifactId>gluegen-rt-main</artifactId> |
56 | 57 | <version>2.5.0</version> |
57 | 58 | </dependency> |
58 | | - |
59 | | - <!-- JoGL --> |
60 | 59 | <dependency> |
61 | 60 | <groupId>org.jogamp.jogl</groupId> |
62 | 61 | <artifactId>jogl-all-main</artifactId> |
63 | 62 | <version>2.5.0</version> |
64 | 63 | </dependency> |
65 | | - |
66 | | - <!-- JUnit 5 Dependencies --> |
| 64 | + <dependency> |
| 65 | + <groupId>org.junit.platform</groupId> |
| 66 | + <artifactId>junit-platform-runner</artifactId> |
| 67 | + <version>1.2.0</version> |
| 68 | + <scope>test</scope> |
| 69 | + </dependency> |
67 | 70 | <dependency> |
68 | 71 | <groupId>org.junit.jupiter</groupId> |
69 | | - <artifactId>junit-jupiter</artifactId> |
70 | | - <version>5.11.3</version> |
| 72 | + <artifactId>junit-jupiter-engine</artifactId> |
| 73 | + <version>5.4.0</version> |
71 | 74 | <scope>test</scope> |
72 | 75 | </dependency> |
73 | | - |
74 | 76 | <dependency> |
75 | 77 | <groupId>org.junit.jupiter</groupId> |
76 | 78 | <artifactId>junit-jupiter-params</artifactId> |
77 | | - <version>5.11.3</version> |
| 79 | + <version>5.4.0</version> |
| 80 | + <scope>test</scope> |
| 81 | + </dependency> |
| 82 | + <dependency> |
| 83 | + <groupId>org.junit.jupiter</groupId> |
| 84 | + <artifactId>junit-jupiter-api</artifactId> |
| 85 | + <version>5.4.0</version> |
78 | 86 | <scope>test</scope> |
79 | 87 | </dependency> |
80 | | - |
81 | | - <!-- Jacoco for Code Coverage --> |
82 | 88 | <dependency> |
83 | 89 | <groupId>org.jacoco</groupId> |
84 | 90 | <artifactId>jacoco-maven-plugin</artifactId> |
85 | 91 | <version>0.8.10</version> |
86 | 92 | </dependency> |
87 | 93 | </dependencies> |
88 | | - |
89 | 94 | </project> |
0 commit comments