Skip to content

Commit 3098110

Browse files
committed
Pom cleanup
1 parent daf46b6 commit 3098110

File tree

1 file changed

+20
-36
lines changed

1 file changed

+20
-36
lines changed

pom.xml

Lines changed: 20 additions & 36 deletions
Original file line numberDiff line numberDiff line change
@@ -10,64 +10,55 @@
1010

1111
<properties>
1212
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
13+
<lombok.version>1.18.30</lombok.version>
14+
<!-- Testing -->
1315
<junit.jupiter.version>5.8.1</junit.jupiter.version>
14-
<junit.platform.version>1.8.2</junit.platform.version>
16+
<!-- Plugins -->
1517
<maven-surefire-plugin.version>3.2.2</maven-surefire-plugin.version>
1618
<maven-compiler-plugin.version>3.11.0</maven-compiler-plugin.version>
1719
<maven.compiler.release>17</maven.compiler.release>
18-
<lombok.version>1.18.30</lombok.version>
20+
<jacoco-maven-plugin.version>0.8.11</jacoco-maven-plugin.version>
1921
</properties>
2022

2123
<dependencies>
22-
24+
<!-- Testing -->
2325
<dependency>
2426
<groupId>org.junit.jupiter</groupId>
2527
<artifactId>junit-jupiter-engine</artifactId>
2628
<version>5.8.1</version>
2729
<scope>test</scope>
2830
</dependency>
29-
<dependency>
30-
<groupId>org.junit.platform</groupId>
31-
<artifactId>junit-platform-suite</artifactId>
32-
<version>${junit.platform.version}</version>
33-
<scope>test</scope>
34-
</dependency>
35-
<dependency>
36-
<groupId>org.junit.platform</groupId>
37-
<artifactId>junit-platform-suite-api</artifactId>
38-
<version>${junit.platform.version}</version>
39-
<scope>test</scope>
40-
</dependency>
41-
<dependency>
42-
<groupId>org.junit.platform</groupId>
43-
<artifactId>junit-platform-suite-commons</artifactId>
44-
<version>${junit.platform.version}</version>
45-
<scope>test</scope>
46-
</dependency>
47-
<dependency>
48-
<groupId>org.junit.platform</groupId>
49-
<artifactId>junit-platform-suite-engine</artifactId>
50-
<version>${junit.platform.version}</version>
51-
<scope>test</scope>
52-
</dependency>
31+
<!-- Others -->
5332
<dependency>
5433
<groupId>nl.jqno.equalsverifier</groupId>
5534
<artifactId>equalsverifier</artifactId>
5635
<version>3.8</version>
5736
<scope>test</scope>
5837
</dependency>
59-
6038
<dependency>
6139
<groupId>org.projectlombok</groupId>
6240
<artifactId>lombok</artifactId>
6341
<version>${lombok.version}</version>
6442
<scope>provided</scope>
6543
</dependency>
44+
<!-- Graphs -->
6645
<dependency>
6746
<groupId>com.google.guava</groupId>
6847
<artifactId>guava</artifactId>
6948
<version>30.1-jre</version>
7049
</dependency>
50+
<dependency>
51+
<groupId>org.jgrapht</groupId>
52+
<artifactId>jgrapht-core</artifactId>
53+
<version>1.5.2</version>
54+
</dependency>
55+
<!-- JSON management -->
56+
<dependency>
57+
<groupId>com.fasterxml.jackson.core</groupId>
58+
<artifactId>jackson-databind</artifactId>
59+
<version>2.12.7.1</version>
60+
</dependency>
61+
<!-- Apache Commons libraries -->
7162
<dependency>
7263
<groupId>org.apache.commons</groupId>
7364
<artifactId>commons-lang3</artifactId>
@@ -78,13 +69,6 @@
7869
<artifactId>commons-math3</artifactId>
7970
<version>3.6.1</version>
8071
</dependency>
81-
82-
<dependency>
83-
<groupId>com.fasterxml.jackson.core</groupId>
84-
<artifactId>jackson-databind</artifactId>
85-
<version>2.12.7.1</version>
86-
</dependency>
87-
8872
</dependencies>
8973

9074
<build>
@@ -111,7 +95,7 @@
11195
<plugin>
11296
<groupId>org.jacoco</groupId>
11397
<artifactId>jacoco-maven-plugin</artifactId>
114-
<version>0.8.11</version>
98+
<version>${jacoco-maven-plugin.version}</version>
11599
<executions>
116100
<execution>
117101
<goals>

0 commit comments

Comments
 (0)