|
13 | 13 | <maven.compiler.target>21</maven.compiler.target> |
14 | 14 | <maven.compiler.release>21</maven.compiler.release> |
15 | 15 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
16 | | - <jacoco.version>0.8.12</jacoco.version> |
| 16 | + <jacoco.version>0.8.14</jacoco.version> |
17 | 17 | </properties> |
18 | 18 |
|
19 | 19 | <dependencies> |
20 | 20 | <!-- JUnit for testing --> |
21 | 21 | <dependency> |
22 | 22 | <groupId>org.junit.jupiter</groupId> |
23 | 23 | <artifactId>junit-jupiter</artifactId> |
24 | | - <version>5.10.2</version> |
| 24 | + <version>5.11.4</version> |
25 | 25 | <scope>test</scope> |
26 | 26 | </dependency> |
27 | 27 |
|
28 | 28 | <!-- SLF4J API for logging --> |
29 | 29 | <dependency> |
30 | 30 | <groupId>org.slf4j</groupId> |
31 | 31 | <artifactId>slf4j-api</artifactId> |
32 | | - <version>2.0.9</version> |
| 32 | + <version>2.0.16</version> |
33 | 33 | </dependency> |
34 | 34 |
|
35 | 35 | <!-- Logback Classic (includes logback-core) --> |
36 | 36 | <dependency> |
37 | 37 | <groupId>ch.qos.logback</groupId> |
38 | 38 | <artifactId>logback-classic</artifactId> |
39 | | - <version>1.4.14</version> |
| 39 | + <version>1.5.19</version> |
40 | 40 | </dependency> |
41 | 41 | </dependencies> |
42 | 42 |
|
|
46 | 46 | <plugin> |
47 | 47 | <groupId>org.apache.maven.plugins</groupId> |
48 | 48 | <artifactId>maven-assembly-plugin</artifactId> |
49 | | - <version>3.3.0</version> |
| 49 | + <version>3.7.1</version> |
50 | 50 | <configuration> |
51 | 51 | <archive> |
52 | 52 | <manifest> |
|
72 | 72 | <plugin> |
73 | 73 | <groupId>org.codehaus.mojo</groupId> |
74 | 74 | <artifactId>exec-maven-plugin</artifactId> |
75 | | - <version>3.0.0</version> |
| 75 | + <version>3.6.1</version> |
76 | 76 | <configuration> |
77 | 77 | <mainClass>prog.Main</mainClass> |
78 | 78 | </configuration> |
|
82 | 82 | <plugin> |
83 | 83 | <groupId>org.apache.maven.plugins</groupId> |
84 | 84 | <artifactId>maven-surefire-plugin</artifactId> |
85 | | - <version>3.2.5</version> |
| 85 | + <version>3.5.4</version> |
86 | 86 | <configuration> |
87 | 87 | <argLine> |
88 | 88 | --add-opens java.base/java.lang=ALL-UNNAMED |
|
0 commit comments