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