|
1 | 1 | <?xml version="1.0" encoding="UTF-8"?> |
2 | 2 |
|
3 | | -<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
4 | | - xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 3 | +<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/xsd/maven-4.0.0.xsd"> |
5 | 4 | <modelVersion>4.0.0</modelVersion> |
6 | 5 |
|
7 | 6 | <groupId>edt.umontp.fr</groupId> |
|
18 | 17 | <maven.compiler.target>11</maven.compiler.target> |
19 | 18 | </properties> |
20 | 19 |
|
| 20 | + <dependencyManagement> |
| 21 | + <dependencies> |
| 22 | + <dependency> |
| 23 | + <groupId>org.junit</groupId> |
| 24 | + <artifactId>junit-bom</artifactId> |
| 25 | + <version>5.5.2</version> |
| 26 | + <type>pom</type> |
| 27 | + <scope>import</scope> |
| 28 | + </dependency> |
| 29 | + </dependencies> |
| 30 | + </dependencyManagement> |
| 31 | + |
21 | 32 | <dependencies> |
22 | 33 | <dependency> |
23 | | - <groupId>junit</groupId> |
24 | | - <artifactId>junit</artifactId> |
25 | | - <version>4.13.1</version> |
| 34 | + <groupId>org.junit.jupiter</groupId> |
| 35 | + <artifactId>junit-jupiter</artifactId> |
| 36 | + <version>5.4.0-M1</version> |
26 | 37 | <scope>test</scope> |
27 | 38 | </dependency> |
| 39 | + <dependency> |
| 40 | + <groupId>org.mnode.ical4j</groupId> |
| 41 | + <artifactId>ical4j</artifactId> |
| 42 | + <version>1.0.2</version> |
| 43 | + </dependency> |
28 | 44 | </dependencies> |
29 | 45 |
|
30 | 46 | <build> |
31 | | - <pluginManagement><!-- lock down plugins versions to avoid using Maven defaults (may be moved to parent pom) --> |
| 47 | + <pluginManagement> |
| 48 | + <!-- lock down plugins versions to avoid using Maven defaults (may be moved to parent pom) --> |
32 | 49 | <plugins> |
33 | | - <!-- clean lifecycle, see https://maven.apache.org/ref/current/maven-core/lifecycles.html#clean_Lifecycle --> |
34 | | - <plugin> |
35 | | - <artifactId>maven-clean-plugin</artifactId> |
36 | | - <version>3.1.0</version> |
37 | | - </plugin> |
38 | | - <!-- default lifecycle, jar packaging: see https://maven.apache.org/ref/current/maven-core/default-bindings.html#Plugin_bindings_for_jar_packaging --> |
39 | | - <plugin> |
40 | | - <artifactId>maven-resources-plugin</artifactId> |
41 | | - <version>3.0.2</version> |
42 | | - </plugin> |
43 | | - <plugin> |
44 | | - <artifactId>maven-compiler-plugin</artifactId> |
45 | | - <version>3.8.0</version> |
46 | | - </plugin> |
47 | 50 | <plugin> |
| 51 | + <groupId>org.apache.maven.plugins</groupId> |
48 | 52 | <artifactId>maven-surefire-plugin</artifactId> |
49 | | - <version>2.22.1</version> |
50 | | - </plugin> |
51 | | - <plugin> |
52 | | - <artifactId>maven-jar-plugin</artifactId> |
53 | | - <version>3.0.2</version> |
54 | | - </plugin> |
55 | | - <plugin> |
56 | | - <artifactId>maven-install-plugin</artifactId> |
57 | | - <version>2.5.2</version> |
| 53 | + <version>3.0.0-M5</version> |
| 54 | + <configuration> |
| 55 | + <includes> |
| 56 | + <source>.</source> |
| 57 | + <include>src/test/java/**</include> |
| 58 | + </includes> |
| 59 | + </configuration> |
58 | 60 | </plugin> |
59 | 61 | <plugin> |
60 | | - <artifactId>maven-deploy-plugin</artifactId> |
61 | | - <version>2.8.2</version> |
| 62 | + <groupId>org.apache.maven.plugins</groupId> |
| 63 | + <artifactId>maven-javadoc-plugin</artifactId> |
| 64 | + <version>3.0.0</version> |
| 65 | + <configuration> |
| 66 | + <source>11</source> |
| 67 | + <target>11</target> |
| 68 | + </configuration> |
62 | 69 | </plugin> |
63 | | - <!-- site lifecycle, see https://maven.apache.org/ref/current/maven-core/lifecycles.html#site_Lifecycle --> |
64 | 70 | <plugin> |
65 | | - <artifactId>maven-site-plugin</artifactId> |
66 | | - <version>3.7.1</version> |
| 71 | + <groupId>org.apache.maven.plugins</groupId> |
| 72 | + <artifactId>maven-failsafe-plugin</artifactId> |
| 73 | + <version>2.22.0</version> |
67 | 74 | </plugin> |
68 | 75 | <plugin> |
69 | | - <artifactId>maven-project-info-reports-plugin</artifactId> |
70 | | - <version>3.0.0</version> |
| 76 | + <groupId>org.apache.maven.plugins</groupId> |
| 77 | + <artifactId>maven-compiler-plugin</artifactId> |
| 78 | + <version>3.8.1</version> |
| 79 | + <configuration> |
| 80 | + <source>11</source> |
| 81 | + <target>11</target> |
| 82 | + </configuration> |
71 | 83 | </plugin> |
72 | 84 | </plugins> |
73 | 85 | </pluginManagement> |
|
0 commit comments