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

23
pom.xml
View File

@@ -54,12 +54,12 @@
<version>2.0.1.Final</version> <version>2.0.1.Final</version>
</dependency> </dependency>
<!-- https://mvnrepository.com/artifact/mysql/mysql-connector-java --> <!-- https://mvnrepository.com/artifact/mysql/mysql-connector-java -->
<dependency> <dependency>
<groupId>mysql</groupId> <groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId> <artifactId>mysql-connector-java</artifactId>
<version>8.0.21</version> <version>8.0.21</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>com.h2database</groupId> <groupId>com.h2database</groupId>
@@ -74,6 +74,14 @@
<scope>test</scope> <scope>test</scope>
</dependency> </dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>1.18.42</version>
<scope>provided</scope>
</dependency>
</dependencies> </dependencies>
<build> <build>
<plugins> <plugins>
@@ -97,6 +105,13 @@
<location>${main.basedir}/eclipse/org.eclipse.jdt.core.prefs</location> <location>${main.basedir}/eclipse/org.eclipse.jdt.core.prefs</location>
</file> </file>
</additionalConfig> </additionalConfig>
<annotationProcessorPaths>
<path>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>1.18.42</version>
</path>
</annotationProcessorPaths>
</configuration> </configuration>
</plugin> </plugin>
<plugin> <plugin>
@@ -143,7 +158,7 @@
</goals> </goals>
</pluginExecutionFilter> </pluginExecutionFilter>
<action> <action>
<ignore /> <ignore/>
</action> </action>
</pluginExecution> </pluginExecution>
</pluginExecutions> </pluginExecutions>

View File

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

View File

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

View File

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

View File

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

View File

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