push init2

This commit is contained in:
tuanvu
2025-10-06 10:59:10 +02:00
parent e3743e6d16
commit d677d9ddb5
6 changed files with 212 additions and 198 deletions

15
pom.xml
View File

@@ -74,6 +74,14 @@
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>1.18.42</version>
<scope>provided</scope>
</dependency>
</dependencies>
<build>
<plugins>
@@ -97,6 +105,13 @@
<location>${main.basedir}/eclipse/org.eclipse.jdt.core.prefs</location>
</file>
</additionalConfig>
<annotationProcessorPaths>
<path>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>1.18.42</version>
</path>
</annotationProcessorPaths>
</configuration>
</plugin>
<plugin>

View File

@@ -1,6 +1,5 @@
package sample.data.jpa.web;
@Controller
public class QuestionController {
}

View File

@@ -1,6 +1,6 @@
package sample.data.jpa.web;
@Controller
public class QuizzController {
}

View File

@@ -1,6 +1,6 @@
package sample.data.jpa.web;
@Controller
public class ReponseController {
}

View File

@@ -1,6 +1,6 @@
package sample.data.jpa.web;
@Controller
public class SessionController {
}

View File

@@ -1,6 +1,6 @@
package sample.data.jpa.web;
@Controller
public class UtilisateurController {
}