|
1 | 1 | <?xml version="1.0" encoding="UTF-8"?> |
2 | | -<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 2 | +<project xmlns="http://maven.apache.org/POM/4.0.0" |
| 3 | + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"> |
3 | 4 | <modelVersion>4.0.0</modelVersion> |
4 | 5 | <groupId>fr.istic</groupId> |
5 | 6 | <artifactId>correctexam</artifactId> |
|
37 | 38 | <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> |
38 | 39 | <project.testresult.directory>${project.build.directory}/test-results</project.testresult.directory> |
39 | 40 | <properties-maven-plugin.version>1.0.0</properties-maven-plugin.version> |
40 | | - <quarkus-plugin.version>3.25.4</quarkus-plugin.version> |
| 41 | + <quarkus-plugin.version>3.30.5</quarkus-plugin.version> |
41 | 42 | <quarkus.logManager>org.jboss.logmanager.LogManager</quarkus.logManager> |
42 | | - <quarkus.platform.version>3.25.4</quarkus.platform.version> |
| 43 | + <quarkus.platform.version>3.30.5</quarkus.platform.version> |
43 | 44 | <sonar-maven-plugin.version>3.7.0.1746</sonar-maven-plugin.version> |
44 | 45 | </properties> |
45 | 46 | <dependencyManagement> |
|
55 | 56 | </dependencyManagement> |
56 | 57 | <dependencies> |
57 | 58 |
|
58 | | - <dependency> |
| 59 | + <dependency> |
59 | 60 | <groupId>org.apache.pdfbox</groupId> |
60 | 61 | <artifactId>pdfbox</artifactId> |
61 | 62 | <version>3.0.5</version> |
62 | 63 | </dependency> |
63 | 64 | <!-- https://mvnrepository.com/artifact/io.quarkus/quarkus-awt --> |
64 | | -<dependency> |
65 | | - <groupId>io.quarkus</groupId> |
66 | | - <artifactId>quarkus-awt</artifactId> |
67 | | -</dependency> |
| 65 | + <dependency> |
| 66 | + <groupId>io.quarkus</groupId> |
| 67 | + <artifactId>quarkus-awt</artifactId> |
| 68 | + </dependency> |
68 | 69 | <!-- https://mvnrepository.com/artifact/org.apache.camel.quarkus/camel-quarkus-pdf --> |
69 | | -<!--<dependency> |
| 70 | + <!--<dependency> |
70 | 71 | <groupId>org.apache.camel.quarkus</groupId> |
71 | 72 | <artifactId>camel-quarkus-pdf</artifactId> |
72 | 73 | <version>3.6.0</version> |
73 | 74 | </dependency>--> |
74 | 75 |
|
75 | 76 |
|
76 | | -<dependency> |
77 | | - <groupId>io.quarkiverse.minio</groupId> |
78 | | - <artifactId>quarkus-minio</artifactId> |
79 | | - <version>3.8.4</version> |
80 | | -</dependency> |
81 | | - |
82 | 77 | <dependency> |
| 78 | + <groupId>io.quarkiverse.minio</groupId> |
| 79 | + <artifactId>quarkus-minio</artifactId> |
| 80 | + <version>3.8.6</version> |
| 81 | + </dependency> |
| 82 | + |
| 83 | + <!-- <dependency> |
83 | 84 | <groupId>io.quarkus</groupId> |
84 | 85 | <artifactId>quarkus-resteasy</artifactId> |
85 | 86 | </dependency> |
|
93 | 94 | </dependency> |
94 | 95 | <dependency> |
95 | 96 | <groupId>io.quarkus</groupId> |
96 | | - <artifactId>quarkus-resteasy-jsonb</artifactId> |
97 | | - </dependency> |
| 97 | + <artifactId>quarkus-resteasy-jackson</artifactId> |
| 98 | + </dependency>--> |
98 | 99 | <dependency> |
99 | 100 | <groupId>io.quarkus</groupId> |
100 | 101 | <artifactId>quarkus-mailer</artifactId> |
|
115 | 116 | <groupId>io.quarkus</groupId> |
116 | 117 | <artifactId>quarkus-security</artifactId> |
117 | 118 | </dependency> |
| 119 | + <dependency> |
| 120 | + <groupId>io.quarkus</groupId> |
| 121 | + <artifactId>quarkus-rest</artifactId> |
| 122 | + </dependency> |
| 123 | + <dependency> |
| 124 | + <groupId>io.quarkus</groupId> |
| 125 | + <artifactId>quarkus-rest-jackson</artifactId> |
| 126 | + </dependency> |
| 127 | + |
118 | 128 | <dependency> |
119 | 129 | <groupId>io.quarkus</groupId> |
120 | 130 | <artifactId>quarkus-test-h2</artifactId> |
121 | 131 | <scope>test</scope> |
122 | 132 | </dependency> |
123 | 133 | <dependency> |
| 134 | + <groupId>io.quarkus</groupId> |
| 135 | + <artifactId>quarkus-messaging-rabbitmq</artifactId> |
| 136 | + </dependency> |
| 137 | +<!-- <dependency> |
124 | 138 | <groupId>org.ow2.asm</groupId> |
125 | 139 | <artifactId>asm</artifactId> |
126 | 140 | <version>9.7.1</version> |
127 | 141 | <scope>test</scope> |
128 | | - </dependency> |
| 142 | + </dependency>--> |
129 | 143 | <dependency> |
130 | 144 | <groupId>io.quarkus</groupId> |
131 | 145 | <artifactId>quarkus-liquibase</artifactId> |
|
177 | 191 | <groupId>org.mapstruct</groupId> |
178 | 192 | <artifactId>mapstruct-processor</artifactId> |
179 | 193 | <version>${mapstruct.version}</version> |
| 194 | + |
180 | 195 | <scope>provided</scope> |
181 | 196 | </dependency> |
182 | 197 | <dependency> |
|
187 | 202 | <dependency> |
188 | 203 | <groupId>io.quarkus</groupId> |
189 | 204 | <artifactId>quarkus-junit5-mockito</artifactId> |
190 | | - |
191 | 205 | <scope>test</scope> |
192 | 206 | </dependency> |
193 | 207 | <dependency> |
194 | 208 | <groupId>io.rest-assured</groupId> |
195 | 209 | <artifactId>rest-assured</artifactId> |
196 | | - <version>5.5.6</version> |
| 210 | + <version>5.5.6</version> |
197 | 211 | <scope>test</scope> |
198 | 212 | </dependency> |
199 | 213 | <dependency> |
|
208 | 222 | <version>${archunit-junit5.version}</version> |
209 | 223 | <scope>test</scope> |
210 | 224 | </dependency> |
| 225 | + <!-- https://mvnrepository.com/artifact/jakarta.servlet/jakarta.servlet-api --> |
| 226 | + |
| 227 | + <!--<dependency> |
| 228 | + <groupId>org.jasig.cas.client</groupId> |
| 229 | + <artifactId>cas-client-core</artifactId> |
| 230 | + <version>${cas.version}</version> |
| 231 | + </dependency>--> |
| 232 | + <!-- https://mvnrepository.com/artifact/org.apereo.cas.client/cas-client-core --> |
211 | 233 | <dependency> |
212 | 234 | <groupId>com.tngtech.archunit</groupId> |
213 | 235 | <artifactId>archunit-junit5-engine</artifactId> |
|
221 | 243 | <classifier>runtime</classifier> |
222 | 244 | <scope>test</scope> |
223 | 245 | </dependency> |
224 | | - <!-- https://mvnrepository.com/artifact/jakarta.servlet/jakarta.servlet-api --> |
| 246 | + <dependency> |
| 247 | + <groupId>io.quarkiverse.jdbc</groupId> |
| 248 | + <artifactId>quarkus-jdbc-sqlite</artifactId> |
| 249 | + <version>3.0.11</version> |
| 250 | + </dependency> |
225 | 251 |
|
226 | | - <!--<dependency> |
227 | | - <groupId>org.jasig.cas.client</groupId> |
228 | | - <artifactId>cas-client-core</artifactId> |
229 | | - <version>${cas.version}</version> |
230 | | - </dependency>--> |
231 | | - <!-- https://mvnrepository.com/artifact/org.apereo.cas.client/cas-client-core --> |
232 | | -<dependency> |
233 | | - <groupId>io.quarkiverse.jdbc</groupId> |
234 | | - <artifactId>quarkus-jdbc-sqlite</artifactId> |
235 | | - <version>3.0.11</version> |
236 | | -</dependency> |
237 | | - <!-- <dependency> |
| 252 | + <!-- <dependency> |
238 | 253 | <groupId>org.apereo.cas.client</groupId> |
239 | 254 | <artifactId>cas-client-core</artifactId> |
240 | 255 | <version>4.0.4</version> |
|
375 | 390 | <version>${maven-surefire-plugin.version}</version> |
376 | 391 | <configuration> |
377 | 392 | <systemPropertyVariables> |
378 | | - <!-- <jacoco-agent.destfile>${jacoco.utReportFile}</jacoco-agent.destfile>--> |
| 393 | + <!-- <jacoco-agent.destfile>${jacoco.utReportFile}</jacoco-agent.destfile>--> |
379 | 394 | <java.util.logging.manager>org.jboss.logmanager.LogManager</java.util.logging.manager> |
380 | | - <maven.home>${maven.home}</maven.home> |
| 395 | + <maven.home>${maven.home}</maven.home> |
381 | 396 |
|
382 | 397 | </systemPropertyVariables> |
383 | 398 | </configuration> |
|
437 | 452 | <artifactId>liquibase-maven-plugin</artifactId> |
438 | 453 | <version>4.31.1</version> |
439 | 454 | <configuration> |
440 | | - <changeLogFile>config/liquibase/master.xml</changeLogFile> |
441 | | - <changeLogDirectory>${project.basedir}/src/main/resources/</changeLogDirectory> |
| 455 | + <changeLogFile>config/liquibase/master.xml</changeLogFile> |
| 456 | + <changeLogDirectory>${project.basedir}/src/main/resources/</changeLogDirectory> |
442 | 457 |
|
443 | | - <url>jdbc:mysql://localhost:3306/gradeScopeIstic</url> |
444 | | - <username>tlc</username> |
445 | | - <password>tlc</password> |
446 | | - </configuration> |
| 458 | + <url>jdbc:mysql://localhost:3306/gradeScopeIstic</url> |
| 459 | + <username>tlc</username> |
| 460 | + <password>tlc</password> |
| 461 | + </configuration> |
447 | 462 | </plugin> |
448 | 463 |
|
449 | 464 | <plugin> |
|
632 | 647 | </dependencies> |
633 | 648 | <build> |
634 | 649 | <plugins> |
635 | | - <!-- <plugin> |
| 650 | + <!-- <plugin> |
636 | 651 | <groupId>org.cyclonedx</groupId> |
637 | 652 | <artifactId>cyclonedx-maven-plugin</artifactId> |
638 | 653 | <configuration> |
|
0 commit comments