|
6 | 6 | You as the user are entitled to choose the terms under which to adopt Spoon.
|
7 | 7 |
|
8 | 8 | -->
|
9 |
| -<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
| 9 | +<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 10 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
10 | 11 | <modelVersion>4.0.0</modelVersion>
|
11 | 12 |
|
12 | 13 | <groupId>fr.inria.gforge.spoon</groupId>
|
|
35 | 36 | <scope>test</scope>
|
36 | 37 | </dependency>
|
37 | 38 | <dependency>
|
38 |
| - <groupId>org.mockito</groupId> |
39 |
| - <artifactId>mockito-core</artifactId> |
40 |
| - <version>3.11.1</version> |
41 |
| - <scope>test</scope> |
| 39 | + <groupId>org.mockito</groupId> |
| 40 | + <artifactId>mockito-core</artifactId> |
| 41 | + <version>3.11.1</version> |
| 42 | + <scope>test</scope> |
| 43 | + </dependency> |
| 44 | + <dependency> |
| 45 | + <groupId>org.junit.jupiter</groupId> |
| 46 | + <artifactId>junit-jupiter-engine</artifactId> |
| 47 | + <version>5.7.2</version> |
| 48 | + <scope>test</scope> |
| 49 | + </dependency> |
| 50 | + <dependency> |
| 51 | + <groupId>org.junit.jupiter</groupId> |
| 52 | + <artifactId>junit-jupiter-params</artifactId> |
| 53 | + <version>5.7.2</version> |
| 54 | + <scope>test</scope> |
42 | 55 | </dependency>
|
43 |
| - <dependency> |
44 |
| - <groupId>org.junit.jupiter</groupId> |
45 |
| - <artifactId>junit-jupiter-engine</artifactId> |
46 |
| - <version>5.7.2</version> |
47 |
| - <scope>test</scope> |
48 |
| - </dependency> |
49 |
| - <dependency> |
50 |
| - <groupId>org.junit.jupiter</groupId> |
51 |
| - <artifactId>junit-jupiter-params</artifactId> |
52 |
| - <version>5.7.2</version> |
53 |
| - <scope>test</scope> |
54 |
| - </dependency> |
55 | 56 | <dependency>
|
56 | 57 | <groupId>org.mockito</groupId>
|
57 | 58 | <artifactId>mockito-junit-jupiter</artifactId>
|
58 | 59 | <version>3.11.1</version>
|
59 | 60 | <scope>test</scope>
|
60 | 61 | </dependency>
|
61 | 62 |
|
62 |
| - <dependency> |
63 |
| - <!-- must come after junit5 deps, otherwise it overrides the junit version --> |
64 |
| - <!-- must be here in the parent POM, because the parent always comes last, see https://stackoverflow.com/questions/28999057/order-of-inherited-dependencies-in-maven-3 --> |
65 |
| - <groupId>com.github.stefanbirkner</groupId> |
66 |
| - <artifactId>system-rules</artifactId> |
67 |
| - <version>1.19.0</version> |
68 |
| - <scope>test</scope> |
69 |
| - </dependency> |
70 |
| - |
| 63 | + <dependency> |
| 64 | + <!-- must come after junit5 deps, otherwise it overrides the junit version --> |
| 65 | + <!-- must be here in the parent POM, because the parent always comes last, see https://stackoverflow.com/questions/28999057/order-of-inherited-dependencies-in-maven-3 --> |
| 66 | + <groupId>com.github.stefanbirkner</groupId> |
| 67 | + <artifactId>system-rules</artifactId> |
| 68 | + <version>1.19.0</version> |
| 69 | + <scope>test</scope> |
| 70 | + </dependency> |
| 71 | + |
71 | 72 | </dependencies>
|
72 |
| - |
| 73 | + |
73 | 74 | <organization>
|
74 | 75 | <name>Inria</name>
|
75 | 76 | <url>http://www.inria.fr</url>
|
|
232 | 233 | </goals>
|
233 | 234 | </pluginExecutionFilter>
|
234 | 235 | <action>
|
235 |
| - <ignore /> |
| 236 | + <ignore/> |
236 | 237 | </action>
|
237 | 238 | </pluginExecution>
|
238 | 239 | </pluginExecutions>
|
|
255 | 256 | </licenseSet>
|
256 | 257 | </licenseSets>
|
257 | 258 | <excludes>
|
258 |
| - <!-- excluding the code coming from Javaparser --> |
259 |
| - <exclude>src/main/java/spoon/javadoc/internal/*</exclude> |
| 259 | + <!-- excluding the code coming from Javaparser --> |
| 260 | + <exclude>src/main/java/spoon/javadoc/internal/*</exclude> |
260 | 261 | </excludes>
|
261 | 262 | </configuration>
|
262 | 263 | <executions>
|
|
323 | 324 | <artifactId>jaxb-api</artifactId>
|
324 | 325 | <version>2.3.1</version>
|
325 | 326 | </dependency>
|
326 |
| - </dependencies> |
| 327 | + </dependencies> |
327 | 328 | </plugin>
|
328 | 329 |
|
329 |
| - |
330 | 330 |
|
331 | 331 | </plugins>
|
332 | 332 | </build>
|
|
0 commit comments