Branche fusion : API REST Spring Boot pour le front React

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
Aubert Marvin
2026-06-12 10:50:45 +02:00
parent ee299e1e19
commit e67de45a3e
17 changed files with 465 additions and 0 deletions
+19
View File
@@ -15,6 +15,7 @@
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<!-- Main dependencies -->
<spring.boot.version>3.4.1</spring.boot.version>
<lombok.version>1.18.36</lombok.version>
<!-- Test Verisons-->
@@ -48,6 +49,12 @@
</dependencyManagement>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
<version>${spring.boot.version}</version>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
@@ -146,6 +153,18 @@
</properties>
</configuration>
</plugin>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<version>${spring.boot.version}</version>
<executions>
<execution>
<goals>
<goal>repackage</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>