|
30 | 30 | <dependencies>
|
31 | 31 | <dependency>
|
32 | 32 | <groupId>org.junit.jupiter</groupId>
|
33 |
| - <artifactId>junit-jupiter-api</artifactId> |
34 |
| - <scope>test</scope> |
35 |
| - </dependency> |
36 |
| - <dependency> |
37 |
| - <groupId>org.junit.jupiter</groupId> |
38 |
| - <artifactId>junit-jupiter-engine</artifactId> |
| 33 | + <artifactId>junit-jupiter</artifactId> |
| 34 | + <version>5.11.2</version> |
39 | 35 | <scope>test</scope>
|
40 | 36 | </dependency>
|
41 | 37 | <dependency>
|
|
44 | 40 | <version>${assertj.version}</version>
|
45 | 41 | <scope>test</scope>
|
46 | 42 | </dependency>
|
| 43 | + |
| 44 | + <dependency> |
| 45 | + <groupId>org.junit.jupiter</groupId> |
| 46 | + <artifactId>junit-jupiter-api</artifactId> |
| 47 | + <version>5.11.2</version> |
| 48 | + <scope>test</scope> |
| 49 | + </dependency> |
47 | 50 | <dependency>
|
48 | 51 | <groupId>org.apache.commons</groupId>
|
49 | 52 | <artifactId>commons-lang3</artifactId>
|
|
58 | 61 |
|
59 | 62 | <build>
|
60 | 63 | <plugins>
|
| 64 | + <plugin> |
| 65 | + <artifactId>maven-surefire-plugin</artifactId> |
| 66 | + <version>3.5.1</version> |
| 67 | + <configuration> |
| 68 | + <forkNode implementation="org.apache.maven.plugin.surefire.extensions.SurefireForkNodeFactory"/> |
| 69 | + </configuration> |
| 70 | + </plugin> |
61 | 71 | <plugin>
|
62 | 72 | <groupId>org.apache.maven.plugins</groupId>
|
63 | 73 | <artifactId>maven-compiler-plugin</artifactId>
|
64 |
| - <version>3.10.1</version> <!-- Updated version --> |
| 74 | + <version>3.13.0</version> |
65 | 75 | <configuration>
|
66 | 76 | <source>21</source>
|
67 | 77 | <target>21</target>
|
|
75 | 85 | </compilerArgs>
|
76 | 86 | </configuration>
|
77 | 87 | </plugin>
|
78 |
| - <plugin> |
79 |
| - <artifactId>maven-surefire-plugin</artifactId> |
80 |
| - <version>3.0.0-M5</version> <!-- Updated version --> |
81 |
| - <configuration> |
82 |
| - <forkNode implementation="org.apache.maven.plugin.surefire.extensions.SurefireForkNodeFactory"/> |
83 |
| - </configuration> |
84 |
| - </plugin> |
85 | 88 | <plugin>
|
86 | 89 | <groupId>org.jacoco</groupId>
|
87 | 90 | <artifactId>jacoco-maven-plugin</artifactId>
|
|
113 | 116 | </configuration>
|
114 | 117 | <dependencies>
|
115 | 118 | <dependency>
|
116 |
| - <groupId>com.puppycrawl.tools</groupId> |
117 |
| - <artifactId>checkstyle</artifactId> |
118 |
| - <version>10.18.2</version> |
| 119 | + <groupId>com.puppycrawl.tools</groupId> |
| 120 | + <artifactId>checkstyle</artifactId> |
| 121 | + <version>10.18.2</version> |
119 | 122 | </dependency>
|
120 | 123 | </dependencies>
|
121 | 124 | </plugin>
|
|
0 commit comments