Files
2026TestsBibliotheque/pom.xml
2025-09-18 01:02:03 +02:00

37 lines
1.1 KiB
XML

<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">
<modelVersion>4.0.0</modelVersion>
<groupId>com.mycompany</groupId>
<artifactId>bibliotheque</artifactId>
<version>1.0-SNAPSHOT</version>
<packaging>jar</packaging>
<!-- Dépendances du projet -->
<dependencies>
<!-- JUnit 4 pour les tests -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.13.2</version>
<scope>test</scope>
</dependency>
</dependencies>
<!-- Configuration du build -->
<build>
<plugins>
<!-- Maven Surefire Plugin pour exécuter les tests -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.1.2</version>
</plugin>
</plugins>
</build>
</project>