corrections liées aux dépendances

travailApiJean
Siwa12100 1 year ago
parent 33b4655fe7
commit 7d8ef3f00a

@ -48,6 +48,36 @@
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-hateoas</artifactId>
</dependency>
<!-- Dépendance pour Spring Boot Test -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<version>2.6.3</version> <!-- Utilisez la version correspondant à votre version de Spring Boot -->
<scope>test</scope>
<exclusions>
<exclusion>
<groupId>org.junit.vintage</groupId>
<artifactId>junit-vintage-engine</artifactId>
</exclusion>
</exclusions>
</dependency>
<!-- Dépendance pour JUnit Jupiter (JUnit 5) -->
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<version>5.7.2</version> <!-- Utilisez la dernière version disponible -->
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<version>5.7.2</version> <!-- Utilisez la dernière version disponible -->
<scope>test</scope>
</dependency>
</dependencies>
<build>

Loading…
Cancel
Save