diff --git a/pom.xml b/pom.xml new file mode 100644 index 0000000000000000000000000000000000000000..c73143938e52aa9456eb3c1f214c58733f2d843e --- /dev/null +++ b/pom.xml @@ -0,0 +1,30 @@ +<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xmlns="http://maven.apache.org/POM/4.0.0" + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 + http://maven.apache.org/maven-v4_0_0.xsd"> + <modelVersion>4.0.0</modelVersion> + + <groupId>fr.univlille.iut.r304</groupId> + <artifactId>tp3</artifactId> + <version>1.0</version> + <dependencies> + <dependency> + <groupId>org.junit.jupiter</groupId> + <artifactId>junit-jupiter</artifactId> + <version>RELEASE</version> + <scope>test</scope> + </dependency> + </dependencies> + <build> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-compiler-plugin</artifactId> + <configuration> + <source>15</source> + <target>15</target> + </configuration> + </plugin> + </plugins> + </build> +</project>