From d677d9ddb55476c174801ec50c525e108d57924b Mon Sep 17 00:00:00 2001 From: tuanvu Date: Mon, 6 Oct 2025 10:59:10 +0200 Subject: [PATCH] push init2 --- pom.xml | 401 +++++++++--------- .../data/jpa/web/QuestionController.java | 1 - .../sample/data/jpa/web/QuizzController.java | 2 +- .../data/jpa/web/ReponseController.java | 2 +- .../data/jpa/web/SessionController.java | 2 +- .../data/jpa/web/UtilisateurController.java | 2 +- 6 files changed, 212 insertions(+), 198 deletions(-) diff --git a/pom.xml b/pom.xml index f868d79..c2c96b8 100755 --- a/pom.xml +++ b/pom.xml @@ -1,201 +1,216 @@ - 4.0.0 - org.springframework.boot - spring-boot-sample-data-jpa - 3.1.2 - Spring Boot Data JPA Sample - Spring Boot Data JPA Sample - http://projects.spring.io/spring-boot/ - - Pivotal Software, Inc. - http://www.spring.io - - - ${basedir}/../.. - 11 - 11 + 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"> + 4.0.0 + org.springframework.boot + spring-boot-sample-data-jpa + 3.1.2 + Spring Boot Data JPA Sample + Spring Boot Data JPA Sample + http://projects.spring.io/spring-boot/ + + Pivotal Software, Inc. + http://www.spring.io + + + ${basedir}/../.. + 11 + 11 - - - - junit - junit - 4.13.2 - test - - - org.springframework.boot - spring-boot-starter-data-jpa - 3.1.2 - - - org.springframework - spring-beans - - - - - org.springframework.boot - spring-boot-starter-web - 3.1.2 - - - org.hsqldb - hsqldb - 2.7.2 - - - - javax.validation - validation-api - 2.0.1.Final - + + + + junit + junit + 4.13.2 + test + + + org.springframework.boot + spring-boot-starter-data-jpa + 3.1.2 + + + org.springframework + spring-beans + + + + + org.springframework.boot + spring-boot-starter-web + 3.1.2 + + + org.hsqldb + hsqldb + 2.7.2 + + + + javax.validation + validation-api + 2.0.1.Final + - - - mysql - mysql-connector-java - 8.0.21 - + + + mysql + mysql-connector-java + 8.0.21 + - - com.h2database - h2 - 1.4.192 - runtime - - - org.springframework.boot - spring-boot-starter-test - 3.1.2 + + com.h2database + h2 + 1.4.192 + runtime + + + org.springframework.boot + spring-boot-starter-test + 3.1.2 - test - - - - - - org.springframework.boot - spring-boot-maven-plugin - 3.1.2 - - - org.apache.maven.plugins - maven-eclipse-plugin - - false - - - .settings/org.eclipse.jdt.ui.prefs - ${main.basedir}/eclipse/org.eclipse.jdt.ui.prefs - - - .settings/org.eclipse.jdt.core.prefs - ${main.basedir}/eclipse/org.eclipse.jdt.core.prefs - - - - - - org.apache.maven.plugins - maven-surefire-plugin - - - **/*Tests.java - - - **/Abstract*.java - - - file:/dev/./urandom - true - - - - - - - - - org.eclipse.m2e - lifecycle-mapping - 1.0.0 - - - - - - - org.springframework.boot - - - spring-boot-maven-plugin - - - [3.1.2,) - - - build-info - - - - - - - - - - - - - - - - spring-snapshots - Spring Snapshots - http://repo.spring.io/snapshot - - true - - - - spring-milestones - Spring Milestones - http://repo.spring.io/milestone - - false - - - - - - spring-snapshots - Spring Snapshots - http://repo.spring.io/snapshot - - true - - - - spring-milestones - Spring Milestones - http://repo.spring.io/milestone - - false - - - - spring-releases - Spring Releases - http://repo.spring.io/release - - false - - - + test + + + + org.projectlombok + lombok + 1.18.42 + provided + + + + + + + org.springframework.boot + spring-boot-maven-plugin + 3.1.2 + + + org.apache.maven.plugins + maven-eclipse-plugin + + false + + + .settings/org.eclipse.jdt.ui.prefs + ${main.basedir}/eclipse/org.eclipse.jdt.ui.prefs + + + .settings/org.eclipse.jdt.core.prefs + ${main.basedir}/eclipse/org.eclipse.jdt.core.prefs + + + + + org.projectlombok + lombok + 1.18.42 + + + + + + org.apache.maven.plugins + maven-surefire-plugin + + + **/*Tests.java + + + **/Abstract*.java + + + file:/dev/./urandom + true + + + + + + + + + org.eclipse.m2e + lifecycle-mapping + 1.0.0 + + + + + + + org.springframework.boot + + + spring-boot-maven-plugin + + + [3.1.2,) + + + build-info + + + + + + + + + + + + + + + + spring-snapshots + Spring Snapshots + http://repo.spring.io/snapshot + + true + + + + spring-milestones + Spring Milestones + http://repo.spring.io/milestone + + false + + + + + + spring-snapshots + Spring Snapshots + http://repo.spring.io/snapshot + + true + + + + spring-milestones + Spring Milestones + http://repo.spring.io/milestone + + false + + + + spring-releases + Spring Releases + http://repo.spring.io/release + + false + + + diff --git a/src/main/java/sample/data/jpa/web/QuestionController.java b/src/main/java/sample/data/jpa/web/QuestionController.java index 5007fcc..087726d 100644 --- a/src/main/java/sample/data/jpa/web/QuestionController.java +++ b/src/main/java/sample/data/jpa/web/QuestionController.java @@ -1,6 +1,5 @@ package sample.data.jpa.web; -@Controller public class QuestionController { } \ No newline at end of file diff --git a/src/main/java/sample/data/jpa/web/QuizzController.java b/src/main/java/sample/data/jpa/web/QuizzController.java index 2ea3193..fbc868d 100644 --- a/src/main/java/sample/data/jpa/web/QuizzController.java +++ b/src/main/java/sample/data/jpa/web/QuizzController.java @@ -1,6 +1,6 @@ package sample.data.jpa.web; -@Controller + public class QuizzController { } \ No newline at end of file diff --git a/src/main/java/sample/data/jpa/web/ReponseController.java b/src/main/java/sample/data/jpa/web/ReponseController.java index 02ce1fe..9291326 100644 --- a/src/main/java/sample/data/jpa/web/ReponseController.java +++ b/src/main/java/sample/data/jpa/web/ReponseController.java @@ -1,6 +1,6 @@ package sample.data.jpa.web; -@Controller + public class ReponseController { } \ No newline at end of file diff --git a/src/main/java/sample/data/jpa/web/SessionController.java b/src/main/java/sample/data/jpa/web/SessionController.java index 9ffc075..5434cb3 100644 --- a/src/main/java/sample/data/jpa/web/SessionController.java +++ b/src/main/java/sample/data/jpa/web/SessionController.java @@ -1,6 +1,6 @@ package sample.data.jpa.web; -@Controller + public class SessionController { } \ No newline at end of file diff --git a/src/main/java/sample/data/jpa/web/UtilisateurController.java b/src/main/java/sample/data/jpa/web/UtilisateurController.java index 0ab4534..9f9e93d 100644 --- a/src/main/java/sample/data/jpa/web/UtilisateurController.java +++ b/src/main/java/sample/data/jpa/web/UtilisateurController.java @@ -1,6 +1,6 @@ package sample.data.jpa.web; -@Controller + public class UtilisateurController { } \ No newline at end of file