Skip to content

Commit 281613c

Browse files
🔀 Merge pull request #19 from DevLab-umontp/interface-API
🎉 Ajout de la première interface fonctionnelle de l'API
2 parents ce99f54 + 9ec521d commit 281613c

19 files changed

+1817
-164
lines changed

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
# Compiled class file
22
*.class
33

4+
Test.java
5+
46
#VSCode
57
.project
68
.classpath
@@ -119,3 +121,5 @@ local.properties
119121

120122
nbproject/private/
121123
build/
124+
125+
fichier.ics

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
![GitHub Actions](https://github.com/DevLab-umontp/API-JAVA-EDT/workflows/Java%20CI%20with%20Maven/badge.svg)
2+
[![Javadoc](https://img.shields.io/badge/JavaDoc-Online-green)](https://mathieusoysal.github.io/stats/api-java-edt)
23
[![Gitmoji.dev](https://img.shields.io/badge/gitmoji-%20😜%20😍-FFDD67.svg?style=flat-square)](https://gitmoji.dev)
34
# ![](ressources/devicon.png) API Java : EDT IUT Montpellier
45

pom.xml

Lines changed: 48 additions & 36 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22

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">
54
<modelVersion>4.0.0</modelVersion>
65

76
<groupId>edt.umontp.fr</groupId>
@@ -18,56 +17,69 @@
1817
<maven.compiler.target>11</maven.compiler.target>
1918
</properties>
2019

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+
2132
<dependencies>
2233
<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>
2637
<scope>test</scope>
2738
</dependency>
39+
<dependency>
40+
<groupId>org.mnode.ical4j</groupId>
41+
<artifactId>ical4j</artifactId>
42+
<version>1.0.2</version>
43+
</dependency>
2844
</dependencies>
2945

3046
<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) -->
3249
<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>
4750
<plugin>
51+
<groupId>org.apache.maven.plugins</groupId>
4852
<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>
5860
</plugin>
5961
<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>
6269
</plugin>
63-
<!-- site lifecycle, see https://maven.apache.org/ref/current/maven-core/lifecycles.html#site_Lifecycle -->
6470
<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>
6774
</plugin>
6875
<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>
7183
</plugin>
7284
</plugins>
7385
</pluginManagement>
-38 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)