diff --git a/data/test.lck b/data/test.lck index df88dc6..72fd74d 100644 Binary files a/data/test.lck and b/data/test.lck differ diff --git a/data/test.log b/data/test.log index e69de29..dd542e3 100644 --- a/data/test.log +++ b/data/test.log @@ -0,0 +1,3 @@ +/*C1*/SET SCHEMA SYSTEM_LOBS +INSERT INTO BLOCKS VALUES(0,2147483647,0) +COMMIT diff --git a/data/test.properties b/data/test.properties index fc5bfab..e00d83d 100644 --- a/data/test.properties +++ b/data/test.properties @@ -1,5 +1,5 @@ #HSQL Database Engine 2.7.2 -#Sat Oct 11 11:14:13 CEST 2025 -modified=no -tx_timestamp=153 +#Sat Oct 11 15:53:59 CEST 2025 +modified=yes +tx_timestamp=1 version=2.7.2 diff --git a/data/test.script b/data/test.script index fface10..edaf1e7 100644 --- a/data/test.script +++ b/data/test.script @@ -1,4 +1,4 @@ -SET DATABASE UNIQUE NAME HSQLDB999B2B92D0 +SET DATABASE UNIQUE NAME HSQLDB99D38CBBE0 SET DATABASE DEFAULT RESULT MEMORY ROWS 0 SET DATABASE EVENT LOG LEVEL 0 SET DATABASE TRANSACTION CONTROL LOCKS @@ -29,32 +29,12 @@ SET FILES NIO TRUE SET FILES NIO SIZE 256 SET FILES LOG TRUE SET FILES LOG SIZE 50 -SET FILES CHECK 153 -SET DATABASE COLLATION "SQL_TEXT" PAD SPACE +SET FILES CHECK 1 +SET DATABASE COLLATION SQL_TEXT PAD SPACE CREATE USER SA PASSWORD DIGEST 'd41d8cd98f00b204e9800998ecf8427e' ALTER USER SA SET LOCAL TRUE CREATE SCHEMA PUBLIC AUTHORIZATION DBA -CREATE SEQUENCE PUBLIC.QUIZZ_SEQ AS INTEGER START WITH 1 INCREMENT BY 50 -CREATE SEQUENCE PUBLIC.REPONSE_SEQ AS INTEGER START WITH 1 INCREMENT BY 50 -CREATE MEMORY TABLE PUBLIC.CHOIX(CHOIX_ID INTEGER NOT NULL PRIMARY KEY,CHOIX VARCHAR(255) ARRAY) -CREATE MEMORY TABLE PUBLIC.QUESTION(BONNE_REPONSE INTEGER,ID INTEGER GENERATED BY DEFAULT AS IDENTITY(START WITH 1) NOT NULL PRIMARY KEY,ID_QUIZZ INTEGER,QUESTION VARCHAR(255),UNIQUE(BONNE_REPONSE)) -ALTER TABLE PUBLIC.QUESTION ALTER COLUMN ID RESTART WITH 4 -CREATE MEMORY TABLE PUBLIC.QUIZZ(ID INTEGER NOT NULL PRIMARY KEY,ID_UTILISATEUR INTEGER,SESSION_ID INTEGER) -CREATE MEMORY TABLE PUBLIC.REPONSE(ID INTEGER NOT NULL PRIMARY KEY,QUESTION_ID INTEGER,TYPE_REPONSE VARCHAR(31) NOT NULL,REPONSES VARCHAR(255) ARRAY,UNIQUE(QUESTION_ID),CONSTRAINT FKGDR6SI626NQIXG8QYFX6S0PJL FOREIGN KEY(QUESTION_ID) REFERENCES PUBLIC.QUESTION(ID)) -CREATE MEMORY TABLE PUBLIC.REPONSECOURTE(RC_ID INTEGER NOT NULL PRIMARY KEY,VALUE VARCHAR(255),CONSTRAINT FKOCS5T60OV4KWOOM69761AY7QD FOREIGN KEY(RC_ID) REFERENCES PUBLIC.REPONSE(ID)) -CREATE MEMORY TABLE PUBLIC.SESSION(CODEPIN INTEGER,ID INTEGER GENERATED BY DEFAULT AS IDENTITY(START WITH 1) NOT NULL PRIMARY KEY,THEME VARCHAR(255),UNIQUE(CODEPIN)) -ALTER TABLE PUBLIC.SESSION ALTER COLUMN ID RESTART WITH 2 -CREATE MEMORY TABLE PUBLIC.UTILISATEUR(ID INTEGER GENERATED BY DEFAULT AS IDENTITY(START WITH 1) NOT NULL PRIMARY KEY,EMAIL VARCHAR(255),NAME VARCHAR(255),PASSWORD VARCHAR(255),UNIQUE(EMAIL)) -ALTER TABLE PUBLIC.UTILISATEUR ALTER COLUMN ID RESTART WITH 2 -CREATE MEMORY TABLE PUBLIC.UTILISATEUR_SESSION(SESSION_ID INTEGER NOT NULL,UTILISATEUR_ID INTEGER NOT NULL,CONSTRAINT FK2RIP0K622CEQL0W3UFF4Y6W9X FOREIGN KEY(SESSION_ID) REFERENCES PUBLIC.SESSION(ID),CONSTRAINT FK4F5DGIWF12KD9VRHSC6S4X2PK FOREIGN KEY(UTILISATEUR_ID) REFERENCES PUBLIC.UTILISATEUR(ID)) -ALTER TABLE PUBLIC.CHOIX ADD CONSTRAINT FK15F4FGMTOCO1TG4RRA1VUALR5 FOREIGN KEY(CHOIX_ID) REFERENCES PUBLIC.REPONSE(ID) -ALTER TABLE PUBLIC.QUESTION ADD CONSTRAINT FKG1JHCNX0GW81N3IOGGW38LDED FOREIGN KEY(ID_QUIZZ) REFERENCES PUBLIC.QUIZZ(ID) -ALTER TABLE PUBLIC.QUESTION ADD CONSTRAINT FKHT8PE2O5V6SFF88MR3PBH40F6 FOREIGN KEY(BONNE_REPONSE) REFERENCES PUBLIC.REPONSE(ID) -ALTER TABLE PUBLIC.QUIZZ ADD CONSTRAINT FK6EAR00W55TL7EU04GX1UR3K20 FOREIGN KEY(SESSION_ID) REFERENCES PUBLIC.SESSION(ID) -ALTER TABLE PUBLIC.QUIZZ ADD CONSTRAINT FKLSVN0PVGA68UMMFYIVIDLWGGH FOREIGN KEY(ID_UTILISATEUR) REFERENCES PUBLIC.UTILISATEUR(ID) ALTER SEQUENCE SYSTEM_LOBS.LOB_ID RESTART WITH 1 -ALTER SEQUENCE PUBLIC.QUIZZ_SEQ RESTART WITH 101 -ALTER SEQUENCE PUBLIC.REPONSE_SEQ RESTART WITH 151 SET DATABASE DEFAULT INITIAL SCHEMA PUBLIC GRANT USAGE ON DOMAIN INFORMATION_SCHEMA.CARDINAL_NUMBER TO PUBLIC GRANT USAGE ON DOMAIN INFORMATION_SCHEMA.YES_OR_NO TO PUBLIC @@ -62,20 +42,3 @@ GRANT USAGE ON DOMAIN INFORMATION_SCHEMA.CHARACTER_DATA TO PUBLIC GRANT USAGE ON DOMAIN INFORMATION_SCHEMA.SQL_IDENTIFIER TO PUBLIC GRANT USAGE ON DOMAIN INFORMATION_SCHEMA.TIME_STAMP TO PUBLIC GRANT DBA TO SA -SET SCHEMA SYSTEM_LOBS -INSERT INTO BLOCKS VALUES(0,2147483647,0) -SET SCHEMA PUBLIC -INSERT INTO CHOIX VALUES(1, ARRAY['a\u000d','a\u000d','a\u000d','a']) -INSERT INTO CHOIX VALUES(2, ARRAY['Kesterman\u000d','Kesteman\u000d','Kasterman\u000d','Kasteman']) -INSERT INTO QUESTION VALUES(1,1,1,'a') -INSERT INTO QUESTION VALUES(2,2,1,'Quel est le nom de famille d''Amael') -INSERT INTO QUESTION VALUES(52,3,1,'Quel est le nom de famille d''Amael (mode difficile)') -INSERT INTO QUIZZ VALUES(1,1,1) -INSERT INTO QUIZZ VALUES(2,1,NULL) -INSERT INTO REPONSE VALUES(1,1,'Choix', ARRAY['aaaa']) -INSERT INTO REPONSE VALUES(2,2,'Choix', ARRAY['Kesteman']) -INSERT INTO REPONSE VALUES(52,3,'ReponseCourte', ARRAY['Kesteman']) -INSERT INTO REPONSECOURTE VALUES(52,NULL) -INSERT INTO SESSION VALUES(1234,1,'ThemA') -INSERT INTO UTILISATEUR VALUES(1,'a@a','a',NULL) -INSERT INTO UTILISATEUR_SESSION VALUES(1,1) diff --git a/src/main/java/sample/data/jpa/SecurityConfig.java b/src/main/java/sample/data/jpa/SecurityConfig.java new file mode 100644 index 0000000..37da8eb --- /dev/null +++ b/src/main/java/sample/data/jpa/SecurityConfig.java @@ -0,0 +1,21 @@ +package sample.data.jpa; + +import org.springframework.context.annotation.Bean; +import org.springframework.context.annotation.Configuration; +import org.springframework.security.config.annotation.web.builders.HttpSecurity; +import org.springframework.security.web.SecurityFilterChain; + +@Configuration +public class SecurityConfig { + + @Bean + public SecurityFilterChain filterChain(HttpSecurity http) throws Exception { + http + .csrf(csrf -> csrf.disable()) + .authorizeHttpRequests(auth -> auth + .anyRequest().permitAll() + ); + + return http.build(); + } +} diff --git a/src/main/java/sample/data/jpa/metier/Question.java b/src/main/java/sample/data/jpa/metier/Question.java index 4fb4026..56bad0e 100644 --- a/src/main/java/sample/data/jpa/metier/Question.java +++ b/src/main/java/sample/data/jpa/metier/Question.java @@ -15,7 +15,7 @@ public class Question implements Serializable { @Id @GeneratedValue(strategy = GenerationType.IDENTITY) private int id; - private String question; + private String enonce; @OneToOne(cascade = CascadeType.ALL) @JoinColumn(name ="bonne_reponse", referencedColumnName = "id") diff --git a/src/main/java/sample/data/jpa/web/QuestionController.java b/src/main/java/sample/data/jpa/web/QuestionController.java index 448949a..15f1628 100644 --- a/src/main/java/sample/data/jpa/web/QuestionController.java +++ b/src/main/java/sample/data/jpa/web/QuestionController.java @@ -1,10 +1,14 @@ package sample.data.jpa.web; import java.util.List; +import java.util.Map; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Controller; +import org.springframework.web.bind.annotation.PathVariable; import org.springframework.web.bind.annotation.PostMapping; +import org.springframework.web.bind.annotation.PutMapping; +import org.springframework.web.bind.annotation.RequestBody; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.ResponseBody; @@ -18,37 +22,49 @@ import sample.data.jpa.service.QuestionDao; @Controller @RequestMapping("/question") public class QuestionController { -@Autowired + + @Autowired private QuestionDao qDao; - - @RequestMapping("/create") - @ResponseBody - public String create(String email, String name) { - String qId = ""; - try { - Question question = new Question(); - qDao.save(question); - qId = String.valueOf(question.getId()); - } - catch (Exception ex) { - return "Error creating the question : " + ex.toString(); - } - return "Question succesfully created with id = " + qId; - } - - @RequestMapping("/update") + /* + * Utiliser un Json pour mettre : String enonce + */ + @PostMapping("/create") @ResponseBody - public String updateQuestion(int id, String newQ) { + public String create(@RequestBody Map body) { + String qId = ""; + Question q = new Question(); try { - Question q = qDao.findById(id).get(); - q.setQuestion(newQ); - qDao.save(q); + if(body.containsKey("enonce")){ + q.setEnonce(body.get("enonce")); + } + else q.setEnonce(""); + qDao.save(q); + qId = String.valueOf(q.getId()); } catch (Exception ex) { - return "Error updating the question: " + ex.toString(); + return "Error creating the question : " + ex.toString(); } - return "Question succesfully updated!"; + return "Question \""+q.getEnonce()+"\" succesfully created with id = " + qId; + } + + /* + * Utiliser un Json pour mettre : String enonce + * l'id se met dans l'url + */ + @PutMapping("/update/{id}") + @ResponseBody + public String updateQuestion(@PathVariable("id") int id, @RequestBody Map body) { + Question q; + try { + q = qDao.findById(id).get(); + q.setEnonce(body.get("enonce")); + qDao.save(q); + } + catch (Exception ex) { + return "Error updating the question: " + ex.toString(); + } + return "Question "+id+" succesfully updated! : " + q.getEnonce(); } @RequestMapping("/getReponse") diff --git a/target/classes/sample/data/jpa/SampleDataJpaApplication.class b/target/classes/sample/data/jpa/SampleDataJpaApplication.class index cc0d40e..57cb21f 100644 Binary files a/target/classes/sample/data/jpa/SampleDataJpaApplication.class and b/target/classes/sample/data/jpa/SampleDataJpaApplication.class differ diff --git a/target/classes/sample/data/jpa/SecurityConfig.class b/target/classes/sample/data/jpa/SecurityConfig.class new file mode 100644 index 0000000..91e641c Binary files /dev/null and b/target/classes/sample/data/jpa/SecurityConfig.class differ diff --git a/target/classes/sample/data/jpa/domain/User.class b/target/classes/sample/data/jpa/domain/User.class index 8f7a958..be3f9c2 100644 Binary files a/target/classes/sample/data/jpa/domain/User.class and b/target/classes/sample/data/jpa/domain/User.class differ diff --git a/target/classes/sample/data/jpa/metier/Choix.class b/target/classes/sample/data/jpa/metier/Choix.class index 595ddb9..7dbf10a 100644 Binary files a/target/classes/sample/data/jpa/metier/Choix.class and b/target/classes/sample/data/jpa/metier/Choix.class differ diff --git a/target/classes/sample/data/jpa/metier/Question.class b/target/classes/sample/data/jpa/metier/Question.class index 5a1a61b..8acc07e 100644 Binary files a/target/classes/sample/data/jpa/metier/Question.class and b/target/classes/sample/data/jpa/metier/Question.class differ diff --git a/target/classes/sample/data/jpa/metier/Quizz.class b/target/classes/sample/data/jpa/metier/Quizz.class index 9fd816e..4e89552 100644 Binary files a/target/classes/sample/data/jpa/metier/Quizz.class and b/target/classes/sample/data/jpa/metier/Quizz.class differ diff --git a/target/classes/sample/data/jpa/metier/Reponse.class b/target/classes/sample/data/jpa/metier/Reponse.class index 2657171..4706d3e 100644 Binary files a/target/classes/sample/data/jpa/metier/Reponse.class and b/target/classes/sample/data/jpa/metier/Reponse.class differ diff --git a/target/classes/sample/data/jpa/metier/ReponseCourte.class b/target/classes/sample/data/jpa/metier/ReponseCourte.class index 0e2fb8c..7dbfbe0 100644 Binary files a/target/classes/sample/data/jpa/metier/ReponseCourte.class and b/target/classes/sample/data/jpa/metier/ReponseCourte.class differ diff --git a/target/classes/sample/data/jpa/metier/Session.class b/target/classes/sample/data/jpa/metier/Session.class index fa608bd..cb0982e 100644 Binary files a/target/classes/sample/data/jpa/metier/Session.class and b/target/classes/sample/data/jpa/metier/Session.class differ diff --git a/target/classes/sample/data/jpa/metier/Utilisateur.class b/target/classes/sample/data/jpa/metier/Utilisateur.class index e7e13f2..6d78c76 100644 Binary files a/target/classes/sample/data/jpa/metier/Utilisateur.class and b/target/classes/sample/data/jpa/metier/Utilisateur.class differ diff --git a/target/classes/sample/data/jpa/service/QuestionDao.class b/target/classes/sample/data/jpa/service/QuestionDao.class index 80417f4..f260b11 100644 Binary files a/target/classes/sample/data/jpa/service/QuestionDao.class and b/target/classes/sample/data/jpa/service/QuestionDao.class differ diff --git a/target/classes/sample/data/jpa/service/QuizzDao.class b/target/classes/sample/data/jpa/service/QuizzDao.class index d020507..76292de 100644 Binary files a/target/classes/sample/data/jpa/service/QuizzDao.class and b/target/classes/sample/data/jpa/service/QuizzDao.class differ diff --git a/target/classes/sample/data/jpa/service/ReponseDao.class b/target/classes/sample/data/jpa/service/ReponseDao.class index 42d8744..f83f857 100644 Binary files a/target/classes/sample/data/jpa/service/ReponseDao.class and b/target/classes/sample/data/jpa/service/ReponseDao.class differ diff --git a/target/classes/sample/data/jpa/service/SessionDao.class b/target/classes/sample/data/jpa/service/SessionDao.class index e4f5cab..2ea0d5f 100644 Binary files a/target/classes/sample/data/jpa/service/SessionDao.class and b/target/classes/sample/data/jpa/service/SessionDao.class differ diff --git a/target/classes/sample/data/jpa/service/UserDao.class b/target/classes/sample/data/jpa/service/UserDao.class index 9197fe4..595f10f 100644 Binary files a/target/classes/sample/data/jpa/service/UserDao.class and b/target/classes/sample/data/jpa/service/UserDao.class differ diff --git a/target/classes/sample/data/jpa/service/UtilisateurDao.class b/target/classes/sample/data/jpa/service/UtilisateurDao.class index f3c6ac4..99c1f2c 100644 Binary files a/target/classes/sample/data/jpa/service/UtilisateurDao.class and b/target/classes/sample/data/jpa/service/UtilisateurDao.class differ diff --git a/target/classes/sample/data/jpa/web/QuestionController.class b/target/classes/sample/data/jpa/web/QuestionController.class index fb6aa05..a2f76a2 100644 Binary files a/target/classes/sample/data/jpa/web/QuestionController.class and b/target/classes/sample/data/jpa/web/QuestionController.class differ diff --git a/target/classes/sample/data/jpa/web/QuizzController.class b/target/classes/sample/data/jpa/web/QuizzController.class index 2ec9937..6cc2ee6 100644 Binary files a/target/classes/sample/data/jpa/web/QuizzController.class and b/target/classes/sample/data/jpa/web/QuizzController.class differ diff --git a/target/classes/sample/data/jpa/web/ReponseController.class b/target/classes/sample/data/jpa/web/ReponseController.class index e5dcaf5..fec8338 100644 Binary files a/target/classes/sample/data/jpa/web/ReponseController.class and b/target/classes/sample/data/jpa/web/ReponseController.class differ diff --git a/target/classes/sample/data/jpa/web/SessionController.class b/target/classes/sample/data/jpa/web/SessionController.class index 35459dd..cb4c714 100644 Binary files a/target/classes/sample/data/jpa/web/SessionController.class and b/target/classes/sample/data/jpa/web/SessionController.class differ diff --git a/target/classes/sample/data/jpa/web/UserController.class b/target/classes/sample/data/jpa/web/UserController.class index 3f9a4ee..c446fc8 100644 Binary files a/target/classes/sample/data/jpa/web/UserController.class and b/target/classes/sample/data/jpa/web/UserController.class differ diff --git a/target/classes/sample/data/jpa/web/UtilisateurController.class b/target/classes/sample/data/jpa/web/UtilisateurController.class index 695a3c9..ddc7b76 100644 Binary files a/target/classes/sample/data/jpa/web/UtilisateurController.class and b/target/classes/sample/data/jpa/web/UtilisateurController.class differ diff --git a/target/dependency/HikariCP-5.1.0.jar b/target/dependency/HikariCP-5.1.0.jar deleted file mode 100644 index 0aa1c9f..0000000 Binary files a/target/dependency/HikariCP-5.1.0.jar and /dev/null differ diff --git a/target/dependency/accessors-smart-2.5.1.jar b/target/dependency/accessors-smart-2.5.1.jar deleted file mode 100644 index de9487c..0000000 Binary files a/target/dependency/accessors-smart-2.5.1.jar and /dev/null differ diff --git a/target/dependency/android-json-0.0.20131108.vaadin1.jar b/target/dependency/android-json-0.0.20131108.vaadin1.jar deleted file mode 100644 index add495f..0000000 Binary files a/target/dependency/android-json-0.0.20131108.vaadin1.jar and /dev/null differ diff --git a/target/dependency/angus-activation-2.0.2.jar b/target/dependency/angus-activation-2.0.2.jar deleted file mode 100644 index 93c7aad..0000000 Binary files a/target/dependency/angus-activation-2.0.2.jar and /dev/null differ diff --git a/target/dependency/antlr4-runtime-4.13.0.jar b/target/dependency/antlr4-runtime-4.13.0.jar deleted file mode 100644 index 40c77ff..0000000 Binary files a/target/dependency/antlr4-runtime-4.13.0.jar and /dev/null differ diff --git a/target/dependency/apiguardian-api-1.1.2.jar b/target/dependency/apiguardian-api-1.1.2.jar deleted file mode 100644 index 2b678e1..0000000 Binary files a/target/dependency/apiguardian-api-1.1.2.jar and /dev/null differ diff --git a/target/dependency/asm-9.6.jar b/target/dependency/asm-9.6.jar deleted file mode 100644 index cc1c2cd..0000000 Binary files a/target/dependency/asm-9.6.jar and /dev/null differ diff --git a/target/dependency/aspectjweaver-1.9.22.1.jar b/target/dependency/aspectjweaver-1.9.22.1.jar deleted file mode 100644 index 8cb9273..0000000 Binary files a/target/dependency/aspectjweaver-1.9.22.1.jar and /dev/null differ diff --git a/target/dependency/assertj-core-3.25.3.jar b/target/dependency/assertj-core-3.25.3.jar deleted file mode 100644 index 5bbac20..0000000 Binary files a/target/dependency/assertj-core-3.25.3.jar and /dev/null differ diff --git a/target/dependency/attoparser-2.0.7.RELEASE.jar b/target/dependency/attoparser-2.0.7.RELEASE.jar deleted file mode 100644 index 16161b2..0000000 Binary files a/target/dependency/attoparser-2.0.7.RELEASE.jar and /dev/null differ diff --git a/target/dependency/awaitility-4.2.2.jar b/target/dependency/awaitility-4.2.2.jar deleted file mode 100644 index f5012fb..0000000 Binary files a/target/dependency/awaitility-4.2.2.jar and /dev/null differ diff --git a/target/dependency/byte-buddy-1.14.19.jar b/target/dependency/byte-buddy-1.14.19.jar deleted file mode 100644 index a7f2921..0000000 Binary files a/target/dependency/byte-buddy-1.14.19.jar and /dev/null differ diff --git a/target/dependency/byte-buddy-agent-1.14.19.jar b/target/dependency/byte-buddy-agent-1.14.19.jar deleted file mode 100644 index 271466a..0000000 Binary files a/target/dependency/byte-buddy-agent-1.14.19.jar and /dev/null differ diff --git a/target/dependency/classmate-1.7.0.jar b/target/dependency/classmate-1.7.0.jar deleted file mode 100644 index 984a779..0000000 Binary files a/target/dependency/classmate-1.7.0.jar and /dev/null differ diff --git a/target/dependency/content-type-2.2.jar b/target/dependency/content-type-2.2.jar deleted file mode 100644 index 40463fc..0000000 Binary files a/target/dependency/content-type-2.2.jar and /dev/null differ diff --git a/target/dependency/h2-2.2.224.jar b/target/dependency/h2-2.2.224.jar deleted file mode 100644 index ff1997a..0000000 Binary files a/target/dependency/h2-2.2.224.jar and /dev/null differ diff --git a/target/dependency/hamcrest-2.2.jar b/target/dependency/hamcrest-2.2.jar deleted file mode 100644 index 7106578..0000000 Binary files a/target/dependency/hamcrest-2.2.jar and /dev/null differ diff --git a/target/dependency/hamcrest-core-2.2.jar b/target/dependency/hamcrest-core-2.2.jar deleted file mode 100644 index 3068f1d..0000000 Binary files a/target/dependency/hamcrest-core-2.2.jar and /dev/null differ diff --git a/target/dependency/hibernate-commons-annotations-6.0.6.Final.jar b/target/dependency/hibernate-commons-annotations-6.0.6.Final.jar deleted file mode 100644 index fe67e63..0000000 Binary files a/target/dependency/hibernate-commons-annotations-6.0.6.Final.jar and /dev/null differ diff --git a/target/dependency/hibernate-core-6.5.2.Final.jar b/target/dependency/hibernate-core-6.5.2.Final.jar deleted file mode 100644 index 78ae82a..0000000 Binary files a/target/dependency/hibernate-core-6.5.2.Final.jar and /dev/null differ diff --git a/target/dependency/hsqldb-2.7.2.jar b/target/dependency/hsqldb-2.7.2.jar deleted file mode 100644 index 1338739..0000000 Binary files a/target/dependency/hsqldb-2.7.2.jar and /dev/null differ diff --git a/target/dependency/istack-commons-runtime-4.1.2.jar b/target/dependency/istack-commons-runtime-4.1.2.jar deleted file mode 100644 index d1a642b..0000000 Binary files a/target/dependency/istack-commons-runtime-4.1.2.jar and /dev/null differ diff --git a/target/dependency/jackson-annotations-2.17.2.jar b/target/dependency/jackson-annotations-2.17.2.jar deleted file mode 100644 index c13bcb9..0000000 Binary files a/target/dependency/jackson-annotations-2.17.2.jar and /dev/null differ diff --git a/target/dependency/jackson-core-2.17.2.jar b/target/dependency/jackson-core-2.17.2.jar deleted file mode 100644 index 34be902..0000000 Binary files a/target/dependency/jackson-core-2.17.2.jar and /dev/null differ diff --git a/target/dependency/jackson-databind-2.17.2.jar b/target/dependency/jackson-databind-2.17.2.jar deleted file mode 100644 index 3750b8c..0000000 Binary files a/target/dependency/jackson-databind-2.17.2.jar and /dev/null differ diff --git a/target/dependency/jackson-datatype-jdk8-2.17.2.jar b/target/dependency/jackson-datatype-jdk8-2.17.2.jar deleted file mode 100644 index c6ff58a..0000000 Binary files a/target/dependency/jackson-datatype-jdk8-2.17.2.jar and /dev/null differ diff --git a/target/dependency/jackson-datatype-jsr310-2.17.2.jar b/target/dependency/jackson-datatype-jsr310-2.17.2.jar deleted file mode 100644 index 3aa01f1..0000000 Binary files a/target/dependency/jackson-datatype-jsr310-2.17.2.jar and /dev/null differ diff --git a/target/dependency/jackson-module-parameter-names-2.17.2.jar b/target/dependency/jackson-module-parameter-names-2.17.2.jar deleted file mode 100644 index 288bf56..0000000 Binary files a/target/dependency/jackson-module-parameter-names-2.17.2.jar and /dev/null differ diff --git a/target/dependency/jakarta.activation-api-2.1.3.jar b/target/dependency/jakarta.activation-api-2.1.3.jar deleted file mode 100644 index 0d015d5..0000000 Binary files a/target/dependency/jakarta.activation-api-2.1.3.jar and /dev/null differ diff --git a/target/dependency/jakarta.annotation-api-2.1.1.jar b/target/dependency/jakarta.annotation-api-2.1.1.jar deleted file mode 100644 index e13b7df..0000000 Binary files a/target/dependency/jakarta.annotation-api-2.1.1.jar and /dev/null differ diff --git a/target/dependency/jakarta.inject-api-2.0.1.jar b/target/dependency/jakarta.inject-api-2.0.1.jar deleted file mode 100644 index a92e099..0000000 Binary files a/target/dependency/jakarta.inject-api-2.0.1.jar and /dev/null differ diff --git a/target/dependency/jakarta.persistence-api-3.1.0.jar b/target/dependency/jakarta.persistence-api-3.1.0.jar deleted file mode 100644 index 4030796..0000000 Binary files a/target/dependency/jakarta.persistence-api-3.1.0.jar and /dev/null differ diff --git a/target/dependency/jakarta.transaction-api-2.0.1.jar b/target/dependency/jakarta.transaction-api-2.0.1.jar deleted file mode 100644 index b1e7da4..0000000 Binary files a/target/dependency/jakarta.transaction-api-2.0.1.jar and /dev/null differ diff --git a/target/dependency/jakarta.xml.bind-api-4.0.2.jar b/target/dependency/jakarta.xml.bind-api-4.0.2.jar deleted file mode 100644 index 4824282..0000000 Binary files a/target/dependency/jakarta.xml.bind-api-4.0.2.jar and /dev/null differ diff --git a/target/dependency/jandex-3.1.2.jar b/target/dependency/jandex-3.1.2.jar deleted file mode 100644 index fcbd356..0000000 Binary files a/target/dependency/jandex-3.1.2.jar and /dev/null differ diff --git a/target/dependency/jaxb-core-4.0.5.jar b/target/dependency/jaxb-core-4.0.5.jar deleted file mode 100644 index 44d089b..0000000 Binary files a/target/dependency/jaxb-core-4.0.5.jar and /dev/null differ diff --git a/target/dependency/jaxb-runtime-4.0.5.jar b/target/dependency/jaxb-runtime-4.0.5.jar deleted file mode 100644 index fd5dccf..0000000 Binary files a/target/dependency/jaxb-runtime-4.0.5.jar and /dev/null differ diff --git a/target/dependency/jboss-logging-3.5.3.Final.jar b/target/dependency/jboss-logging-3.5.3.Final.jar deleted file mode 100644 index a922e47..0000000 Binary files a/target/dependency/jboss-logging-3.5.3.Final.jar and /dev/null differ diff --git a/target/dependency/jcip-annotations-1.0-1.jar b/target/dependency/jcip-annotations-1.0-1.jar deleted file mode 100644 index edfda76..0000000 Binary files a/target/dependency/jcip-annotations-1.0-1.jar and /dev/null differ diff --git a/target/dependency/json-path-2.9.0.jar b/target/dependency/json-path-2.9.0.jar deleted file mode 100644 index f731408..0000000 Binary files a/target/dependency/json-path-2.9.0.jar and /dev/null differ diff --git a/target/dependency/json-smart-2.5.1.jar b/target/dependency/json-smart-2.5.1.jar deleted file mode 100644 index 2842d99..0000000 Binary files a/target/dependency/json-smart-2.5.1.jar and /dev/null differ diff --git a/target/dependency/jsonassert-1.5.3.jar b/target/dependency/jsonassert-1.5.3.jar deleted file mode 100644 index e30349c..0000000 Binary files a/target/dependency/jsonassert-1.5.3.jar and /dev/null differ diff --git a/target/dependency/jul-to-slf4j-2.0.16.jar b/target/dependency/jul-to-slf4j-2.0.16.jar deleted file mode 100644 index e2c0311..0000000 Binary files a/target/dependency/jul-to-slf4j-2.0.16.jar and /dev/null differ diff --git a/target/dependency/junit-4.13.2.jar b/target/dependency/junit-4.13.2.jar deleted file mode 100644 index 6da55d8..0000000 Binary files a/target/dependency/junit-4.13.2.jar and /dev/null differ diff --git a/target/dependency/junit-jupiter-5.10.3.jar b/target/dependency/junit-jupiter-5.10.3.jar deleted file mode 100644 index ebe4965..0000000 Binary files a/target/dependency/junit-jupiter-5.10.3.jar and /dev/null differ diff --git a/target/dependency/junit-jupiter-api-5.10.3.jar b/target/dependency/junit-jupiter-api-5.10.3.jar deleted file mode 100644 index fa1c216..0000000 Binary files a/target/dependency/junit-jupiter-api-5.10.3.jar and /dev/null differ diff --git a/target/dependency/junit-jupiter-engine-5.10.3.jar b/target/dependency/junit-jupiter-engine-5.10.3.jar deleted file mode 100644 index 2334257..0000000 Binary files a/target/dependency/junit-jupiter-engine-5.10.3.jar and /dev/null differ diff --git a/target/dependency/junit-jupiter-params-5.10.3.jar b/target/dependency/junit-jupiter-params-5.10.3.jar deleted file mode 100644 index 03855ad..0000000 Binary files a/target/dependency/junit-jupiter-params-5.10.3.jar and /dev/null differ diff --git a/target/dependency/junit-platform-commons-1.10.3.jar b/target/dependency/junit-platform-commons-1.10.3.jar deleted file mode 100644 index 7a7324f..0000000 Binary files a/target/dependency/junit-platform-commons-1.10.3.jar and /dev/null differ diff --git a/target/dependency/junit-platform-engine-1.10.3.jar b/target/dependency/junit-platform-engine-1.10.3.jar deleted file mode 100644 index 5fa8fd3..0000000 Binary files a/target/dependency/junit-platform-engine-1.10.3.jar and /dev/null differ diff --git a/target/dependency/lang-tag-1.7.jar b/target/dependency/lang-tag-1.7.jar deleted file mode 100644 index c089707..0000000 Binary files a/target/dependency/lang-tag-1.7.jar and /dev/null differ diff --git a/target/dependency/log4j-api-2.23.1.jar b/target/dependency/log4j-api-2.23.1.jar deleted file mode 100644 index 0e8e3f5..0000000 Binary files a/target/dependency/log4j-api-2.23.1.jar and /dev/null differ diff --git a/target/dependency/log4j-to-slf4j-2.23.1.jar b/target/dependency/log4j-to-slf4j-2.23.1.jar deleted file mode 100644 index 81b5143..0000000 Binary files a/target/dependency/log4j-to-slf4j-2.23.1.jar and /dev/null differ diff --git a/target/dependency/logback-classic-1.5.7.jar b/target/dependency/logback-classic-1.5.7.jar deleted file mode 100644 index af65bff..0000000 Binary files a/target/dependency/logback-classic-1.5.7.jar and /dev/null differ diff --git a/target/dependency/logback-core-1.5.7.jar b/target/dependency/logback-core-1.5.7.jar deleted file mode 100644 index 49e0c2f..0000000 Binary files a/target/dependency/logback-core-1.5.7.jar and /dev/null differ diff --git a/target/dependency/lombok-1.18.42.jar b/target/dependency/lombok-1.18.42.jar deleted file mode 100644 index b6b4f02..0000000 Binary files a/target/dependency/lombok-1.18.42.jar and /dev/null differ diff --git a/target/dependency/micrometer-commons-1.13.3.jar b/target/dependency/micrometer-commons-1.13.3.jar deleted file mode 100644 index f424dd7..0000000 Binary files a/target/dependency/micrometer-commons-1.13.3.jar and /dev/null differ diff --git a/target/dependency/micrometer-observation-1.13.3.jar b/target/dependency/micrometer-observation-1.13.3.jar deleted file mode 100644 index 222148c..0000000 Binary files a/target/dependency/micrometer-observation-1.13.3.jar and /dev/null differ diff --git a/target/dependency/mockito-core-5.11.0.jar b/target/dependency/mockito-core-5.11.0.jar deleted file mode 100644 index f0c35ec..0000000 Binary files a/target/dependency/mockito-core-5.11.0.jar and /dev/null differ diff --git a/target/dependency/mockito-junit-jupiter-5.11.0.jar b/target/dependency/mockito-junit-jupiter-5.11.0.jar deleted file mode 100644 index 60312c2..0000000 Binary files a/target/dependency/mockito-junit-jupiter-5.11.0.jar and /dev/null differ diff --git a/target/dependency/mysql-connector-j-8.3.0.jar b/target/dependency/mysql-connector-j-8.3.0.jar deleted file mode 100644 index 5c720ab..0000000 Binary files a/target/dependency/mysql-connector-j-8.3.0.jar and /dev/null differ diff --git a/target/dependency/nimbus-jose-jwt-9.37.3.jar b/target/dependency/nimbus-jose-jwt-9.37.3.jar deleted file mode 100644 index 0eafe0d..0000000 Binary files a/target/dependency/nimbus-jose-jwt-9.37.3.jar and /dev/null differ diff --git a/target/dependency/oauth2-oidc-sdk-9.43.4.jar b/target/dependency/oauth2-oidc-sdk-9.43.4.jar deleted file mode 100644 index 3223cc4..0000000 Binary files a/target/dependency/oauth2-oidc-sdk-9.43.4.jar and /dev/null differ diff --git a/target/dependency/objenesis-3.3.jar b/target/dependency/objenesis-3.3.jar deleted file mode 100644 index d660190..0000000 Binary files a/target/dependency/objenesis-3.3.jar and /dev/null differ diff --git a/target/dependency/opentest4j-1.3.0.jar b/target/dependency/opentest4j-1.3.0.jar deleted file mode 100644 index 7ec7bc5..0000000 Binary files a/target/dependency/opentest4j-1.3.0.jar and /dev/null differ diff --git a/target/dependency/slf4j-api-2.0.16.jar b/target/dependency/slf4j-api-2.0.16.jar deleted file mode 100644 index cbb5448..0000000 Binary files a/target/dependency/slf4j-api-2.0.16.jar and /dev/null differ diff --git a/target/dependency/snakeyaml-2.2.jar b/target/dependency/snakeyaml-2.2.jar deleted file mode 100644 index 275dd57..0000000 Binary files a/target/dependency/snakeyaml-2.2.jar and /dev/null differ diff --git a/target/dependency/spring-aop-6.1.12.jar b/target/dependency/spring-aop-6.1.12.jar deleted file mode 100644 index eff88f9..0000000 Binary files a/target/dependency/spring-aop-6.1.12.jar and /dev/null differ diff --git a/target/dependency/spring-aspects-6.1.12.jar b/target/dependency/spring-aspects-6.1.12.jar deleted file mode 100644 index 3a66809..0000000 Binary files a/target/dependency/spring-aspects-6.1.12.jar and /dev/null differ diff --git a/target/dependency/spring-beans-6.1.12.jar b/target/dependency/spring-beans-6.1.12.jar deleted file mode 100644 index 8a6fb3f..0000000 Binary files a/target/dependency/spring-beans-6.1.12.jar and /dev/null differ diff --git a/target/dependency/spring-boot-3.3.3.jar b/target/dependency/spring-boot-3.3.3.jar deleted file mode 100644 index 63e0957..0000000 Binary files a/target/dependency/spring-boot-3.3.3.jar and /dev/null differ diff --git a/target/dependency/spring-boot-autoconfigure-3.3.3.jar b/target/dependency/spring-boot-autoconfigure-3.3.3.jar deleted file mode 100644 index 0190ee6..0000000 Binary files a/target/dependency/spring-boot-autoconfigure-3.3.3.jar and /dev/null differ diff --git a/target/dependency/spring-boot-starter-3.3.3.jar b/target/dependency/spring-boot-starter-3.3.3.jar deleted file mode 100644 index fe2faaf..0000000 Binary files a/target/dependency/spring-boot-starter-3.3.3.jar and /dev/null differ diff --git a/target/dependency/spring-boot-starter-aop-3.3.3.jar b/target/dependency/spring-boot-starter-aop-3.3.3.jar deleted file mode 100644 index d64d4c4..0000000 Binary files a/target/dependency/spring-boot-starter-aop-3.3.3.jar and /dev/null differ diff --git a/target/dependency/spring-boot-starter-data-jpa-3.3.3.jar b/target/dependency/spring-boot-starter-data-jpa-3.3.3.jar deleted file mode 100644 index 1856e62..0000000 Binary files a/target/dependency/spring-boot-starter-data-jpa-3.3.3.jar and /dev/null differ diff --git a/target/dependency/spring-boot-starter-jdbc-3.3.3.jar b/target/dependency/spring-boot-starter-jdbc-3.3.3.jar deleted file mode 100644 index 8c922df..0000000 Binary files a/target/dependency/spring-boot-starter-jdbc-3.3.3.jar and /dev/null differ diff --git a/target/dependency/spring-boot-starter-json-3.3.3.jar b/target/dependency/spring-boot-starter-json-3.3.3.jar deleted file mode 100644 index 4e3deb2..0000000 Binary files a/target/dependency/spring-boot-starter-json-3.3.3.jar and /dev/null differ diff --git a/target/dependency/spring-boot-starter-logging-3.3.3.jar b/target/dependency/spring-boot-starter-logging-3.3.3.jar deleted file mode 100644 index 9ff6127..0000000 Binary files a/target/dependency/spring-boot-starter-logging-3.3.3.jar and /dev/null differ diff --git a/target/dependency/spring-boot-starter-oauth2-client-3.3.3.jar b/target/dependency/spring-boot-starter-oauth2-client-3.3.3.jar deleted file mode 100644 index 970dea1..0000000 Binary files a/target/dependency/spring-boot-starter-oauth2-client-3.3.3.jar and /dev/null differ diff --git a/target/dependency/spring-boot-starter-oauth2-resource-server-3.3.3.jar b/target/dependency/spring-boot-starter-oauth2-resource-server-3.3.3.jar deleted file mode 100644 index e2f55e1..0000000 Binary files a/target/dependency/spring-boot-starter-oauth2-resource-server-3.3.3.jar and /dev/null differ diff --git a/target/dependency/spring-boot-starter-security-3.3.3.jar b/target/dependency/spring-boot-starter-security-3.3.3.jar deleted file mode 100644 index 4c10a43..0000000 Binary files a/target/dependency/spring-boot-starter-security-3.3.3.jar and /dev/null differ diff --git a/target/dependency/spring-boot-starter-test-3.3.3.jar b/target/dependency/spring-boot-starter-test-3.3.3.jar deleted file mode 100644 index 1ae4343..0000000 Binary files a/target/dependency/spring-boot-starter-test-3.3.3.jar and /dev/null differ diff --git a/target/dependency/spring-boot-starter-thymeleaf-3.3.3.jar b/target/dependency/spring-boot-starter-thymeleaf-3.3.3.jar deleted file mode 100644 index 28bd3bc..0000000 Binary files a/target/dependency/spring-boot-starter-thymeleaf-3.3.3.jar and /dev/null differ diff --git a/target/dependency/spring-boot-starter-tomcat-3.3.3.jar b/target/dependency/spring-boot-starter-tomcat-3.3.3.jar deleted file mode 100644 index a1d25db..0000000 Binary files a/target/dependency/spring-boot-starter-tomcat-3.3.3.jar and /dev/null differ diff --git a/target/dependency/spring-boot-starter-web-3.3.3.jar b/target/dependency/spring-boot-starter-web-3.3.3.jar deleted file mode 100644 index 66e51e3..0000000 Binary files a/target/dependency/spring-boot-starter-web-3.3.3.jar and /dev/null differ diff --git a/target/dependency/spring-boot-test-3.3.3.jar b/target/dependency/spring-boot-test-3.3.3.jar deleted file mode 100644 index 29ae16d..0000000 Binary files a/target/dependency/spring-boot-test-3.3.3.jar and /dev/null differ diff --git a/target/dependency/spring-boot-test-autoconfigure-3.3.3.jar b/target/dependency/spring-boot-test-autoconfigure-3.3.3.jar deleted file mode 100644 index b0f7aff..0000000 Binary files a/target/dependency/spring-boot-test-autoconfigure-3.3.3.jar and /dev/null differ diff --git a/target/dependency/spring-context-6.1.12.jar b/target/dependency/spring-context-6.1.12.jar deleted file mode 100644 index 7d1bd2c..0000000 Binary files a/target/dependency/spring-context-6.1.12.jar and /dev/null differ diff --git a/target/dependency/spring-core-6.1.12.jar b/target/dependency/spring-core-6.1.12.jar deleted file mode 100644 index c0f4a49..0000000 Binary files a/target/dependency/spring-core-6.1.12.jar and /dev/null differ diff --git a/target/dependency/spring-data-commons-3.3.3.jar b/target/dependency/spring-data-commons-3.3.3.jar deleted file mode 100644 index 2aec06f..0000000 Binary files a/target/dependency/spring-data-commons-3.3.3.jar and /dev/null differ diff --git a/target/dependency/spring-data-jpa-3.3.3.jar b/target/dependency/spring-data-jpa-3.3.3.jar deleted file mode 100644 index 5bb5b87..0000000 Binary files a/target/dependency/spring-data-jpa-3.3.3.jar and /dev/null differ diff --git a/target/dependency/spring-expression-6.1.12.jar b/target/dependency/spring-expression-6.1.12.jar deleted file mode 100644 index 885f854..0000000 Binary files a/target/dependency/spring-expression-6.1.12.jar and /dev/null differ diff --git a/target/dependency/spring-jcl-6.1.12.jar b/target/dependency/spring-jcl-6.1.12.jar deleted file mode 100644 index c85b95c..0000000 Binary files a/target/dependency/spring-jcl-6.1.12.jar and /dev/null differ diff --git a/target/dependency/spring-jdbc-6.1.12.jar b/target/dependency/spring-jdbc-6.1.12.jar deleted file mode 100644 index 44ed0ea..0000000 Binary files a/target/dependency/spring-jdbc-6.1.12.jar and /dev/null differ diff --git a/target/dependency/spring-orm-6.1.12.jar b/target/dependency/spring-orm-6.1.12.jar deleted file mode 100644 index 05b2fad..0000000 Binary files a/target/dependency/spring-orm-6.1.12.jar and /dev/null differ diff --git a/target/dependency/spring-security-config-6.3.3.jar b/target/dependency/spring-security-config-6.3.3.jar deleted file mode 100644 index c055de8..0000000 Binary files a/target/dependency/spring-security-config-6.3.3.jar and /dev/null differ diff --git a/target/dependency/spring-security-core-6.3.3.jar b/target/dependency/spring-security-core-6.3.3.jar deleted file mode 100644 index ae24235..0000000 Binary files a/target/dependency/spring-security-core-6.3.3.jar and /dev/null differ diff --git a/target/dependency/spring-security-crypto-6.3.3.jar b/target/dependency/spring-security-crypto-6.3.3.jar deleted file mode 100644 index b00f960..0000000 Binary files a/target/dependency/spring-security-crypto-6.3.3.jar and /dev/null differ diff --git a/target/dependency/spring-security-oauth2-client-6.3.3.jar b/target/dependency/spring-security-oauth2-client-6.3.3.jar deleted file mode 100644 index 7fd3674..0000000 Binary files a/target/dependency/spring-security-oauth2-client-6.3.3.jar and /dev/null differ diff --git a/target/dependency/spring-security-oauth2-core-6.3.3.jar b/target/dependency/spring-security-oauth2-core-6.3.3.jar deleted file mode 100644 index a0b9d14..0000000 Binary files a/target/dependency/spring-security-oauth2-core-6.3.3.jar and /dev/null differ diff --git a/target/dependency/spring-security-oauth2-jose-6.3.3.jar b/target/dependency/spring-security-oauth2-jose-6.3.3.jar deleted file mode 100644 index a8ead16..0000000 Binary files a/target/dependency/spring-security-oauth2-jose-6.3.3.jar and /dev/null differ diff --git a/target/dependency/spring-security-oauth2-resource-server-6.3.3.jar b/target/dependency/spring-security-oauth2-resource-server-6.3.3.jar deleted file mode 100644 index fd86668..0000000 Binary files a/target/dependency/spring-security-oauth2-resource-server-6.3.3.jar and /dev/null differ diff --git a/target/dependency/spring-security-test-6.3.3.jar b/target/dependency/spring-security-test-6.3.3.jar deleted file mode 100644 index 7c36f70..0000000 Binary files a/target/dependency/spring-security-test-6.3.3.jar and /dev/null differ diff --git a/target/dependency/spring-security-web-6.3.3.jar b/target/dependency/spring-security-web-6.3.3.jar deleted file mode 100644 index 3d429fe..0000000 Binary files a/target/dependency/spring-security-web-6.3.3.jar and /dev/null differ diff --git a/target/dependency/spring-test-6.1.12.jar b/target/dependency/spring-test-6.1.12.jar deleted file mode 100644 index df044b4..0000000 Binary files a/target/dependency/spring-test-6.1.12.jar and /dev/null differ diff --git a/target/dependency/spring-tx-6.1.12.jar b/target/dependency/spring-tx-6.1.12.jar deleted file mode 100644 index 44f68c1..0000000 Binary files a/target/dependency/spring-tx-6.1.12.jar and /dev/null differ diff --git a/target/dependency/spring-web-6.1.12.jar b/target/dependency/spring-web-6.1.12.jar deleted file mode 100644 index da0cbd1..0000000 Binary files a/target/dependency/spring-web-6.1.12.jar and /dev/null differ diff --git a/target/dependency/spring-webmvc-6.1.12.jar b/target/dependency/spring-webmvc-6.1.12.jar deleted file mode 100644 index 2646302..0000000 Binary files a/target/dependency/spring-webmvc-6.1.12.jar and /dev/null differ diff --git a/target/dependency/thymeleaf-3.1.2.RELEASE.jar b/target/dependency/thymeleaf-3.1.2.RELEASE.jar deleted file mode 100644 index 5674eaf..0000000 Binary files a/target/dependency/thymeleaf-3.1.2.RELEASE.jar and /dev/null differ diff --git a/target/dependency/thymeleaf-spring6-3.1.2.RELEASE.jar b/target/dependency/thymeleaf-spring6-3.1.2.RELEASE.jar deleted file mode 100644 index b3f8622..0000000 Binary files a/target/dependency/thymeleaf-spring6-3.1.2.RELEASE.jar and /dev/null differ diff --git a/target/dependency/tomcat-embed-core-10.1.28.jar b/target/dependency/tomcat-embed-core-10.1.28.jar deleted file mode 100644 index 44a57e2..0000000 Binary files a/target/dependency/tomcat-embed-core-10.1.28.jar and /dev/null differ diff --git a/target/dependency/tomcat-embed-el-10.1.28.jar b/target/dependency/tomcat-embed-el-10.1.28.jar deleted file mode 100644 index aaad5f4..0000000 Binary files a/target/dependency/tomcat-embed-el-10.1.28.jar and /dev/null differ diff --git a/target/dependency/tomcat-embed-websocket-10.1.28.jar b/target/dependency/tomcat-embed-websocket-10.1.28.jar deleted file mode 100644 index e035b68..0000000 Binary files a/target/dependency/tomcat-embed-websocket-10.1.28.jar and /dev/null differ diff --git a/target/dependency/txw2-4.0.5.jar b/target/dependency/txw2-4.0.5.jar deleted file mode 100644 index 0c885a1..0000000 Binary files a/target/dependency/txw2-4.0.5.jar and /dev/null differ diff --git a/target/dependency/unbescape-1.1.6.RELEASE.jar b/target/dependency/unbescape-1.1.6.RELEASE.jar deleted file mode 100644 index 10e4da5..0000000 Binary files a/target/dependency/unbescape-1.1.6.RELEASE.jar and /dev/null differ diff --git a/target/dependency/validation-api-2.0.1.Final.jar b/target/dependency/validation-api-2.0.1.Final.jar deleted file mode 100644 index 2368e10..0000000 Binary files a/target/dependency/validation-api-2.0.1.Final.jar and /dev/null differ diff --git a/target/dependency/xmlunit-core-2.9.1.jar b/target/dependency/xmlunit-core-2.9.1.jar deleted file mode 100644 index 5c9f44a..0000000 Binary files a/target/dependency/xmlunit-core-2.9.1.jar and /dev/null differ diff --git a/target/maven-archiver/pom.properties b/target/maven-archiver/pom.properties deleted file mode 100644 index 525495b..0000000 --- a/target/maven-archiver/pom.properties +++ /dev/null @@ -1,3 +0,0 @@ -artifactId=spring-boot-sample-data-jpa -groupId=org.springframework.boot -version=3.1.2 diff --git a/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst b/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst index bca98fd..ece5cbf 100644 --- a/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst +++ b/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst @@ -1,4 +1,5 @@ sample/data/jpa/metier/Session.class +sample/data/jpa/SecurityConfig.class sample/data/jpa/service/UserDao.class sample/data/jpa/web/ReponseController.class sample/data/jpa/web/UtilisateurController.class diff --git a/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst b/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst index 6088f90..f4f9080 100644 --- a/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst +++ b/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst @@ -1,4 +1,5 @@ /home/thibaut/M2/TAA/tpjpa/src/main/java/sample/data/jpa/SampleDataJpaApplication.java +/home/thibaut/M2/TAA/tpjpa/src/main/java/sample/data/jpa/SecurityConfig.java /home/thibaut/M2/TAA/tpjpa/src/main/java/sample/data/jpa/domain/User.java /home/thibaut/M2/TAA/tpjpa/src/main/java/sample/data/jpa/metier/Choix.java /home/thibaut/M2/TAA/tpjpa/src/main/java/sample/data/jpa/metier/Question.java diff --git a/target/spring-boot-sample-data-jpa-3.1.2.jar b/target/spring-boot-sample-data-jpa-3.1.2.jar deleted file mode 100644 index cde839a..0000000 Binary files a/target/spring-boot-sample-data-jpa-3.1.2.jar and /dev/null differ diff --git a/target/spring-boot-sample-data-jpa-3.1.2.jar.original b/target/spring-boot-sample-data-jpa-3.1.2.jar.original deleted file mode 100644 index 28234f2..0000000 Binary files a/target/spring-boot-sample-data-jpa-3.1.2.jar.original and /dev/null differ diff --git a/target/test-classes/sample/data/jpa/SampleDataJpaApplicationTests.class b/target/test-classes/sample/data/jpa/SampleDataJpaApplicationTests.class index 4b88f03..e74db7c 100644 Binary files a/target/test-classes/sample/data/jpa/SampleDataJpaApplicationTests.class and b/target/test-classes/sample/data/jpa/SampleDataJpaApplicationTests.class differ