|
6 | 6 | <artifactId>quarkus-demo</artifactId>
|
7 | 7 | <version>1.0.0-SNAPSHOT</version>
|
8 | 8 | <properties>
|
9 |
| - <compiler-plugin.version>3.8.1</compiler-plugin.version> |
| 9 | + <compiler-plugin.version>3.11.0</compiler-plugin.version> |
10 | 10 | <maven.compiler.parameters>true</maven.compiler.parameters>
|
11 |
| - <maven.compiler.source>1.8</maven.compiler.source> |
12 |
| - <maven.compiler.target>1.8</maven.compiler.target> |
| 11 | + <maven.compiler.release>11</maven.compiler.release> |
13 | 12 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
14 | 13 | <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
15 | 14 | <quarkus.platform.artifact-id>quarkus-universe-bom</quarkus.platform.artifact-id>
|
16 | 15 | <quarkus.platform.group-id>io.quarkus</quarkus.platform.group-id>
|
17 |
| - <quarkus.platform.version>1.8.3.Final</quarkus.platform.version> |
18 |
| - <quarkus-plugin.version>1.8.3.Final</quarkus-plugin.version> |
19 |
| - <surefire-plugin.version>2.22.2</surefire-plugin.version> |
| 16 | + <quarkus.platform.version>3.2.8.Final</quarkus.platform.version> |
| 17 | + <surefire-plugin.version>3.1.2</surefire-plugin.version> |
20 | 18 | </properties>
|
21 | 19 | <dependencyManagement>
|
22 | 20 | <dependencies>
|
|
55 | 53 | <groupId>io.quarkus</groupId>
|
56 | 54 | <artifactId>quarkus-mongodb-client</artifactId>
|
57 | 55 | </dependency>
|
58 |
| - <!-- |
| 56 | + <!-- |
59 | 57 | <dependency>
|
60 | 58 | <groupId>io.quarkus</groupId>
|
61 | 59 | <artifactId>quarkus-smallrye-jwt</artifactId>
|
|
67 | 65 | <artifactId>quarkus-smallrye-reactive-messaging-kafka</artifactId>
|
68 | 66 | </dependency>
|
69 | 67 | -->
|
70 |
| - |
| 68 | + |
71 | 69 | <!-- Test dependencies -->
|
72 | 70 | <dependency>
|
73 | 71 | <groupId>io.quarkus</groupId>
|
|
87 | 85 | </dependency>
|
88 | 86 | <dependency>
|
89 | 87 | <groupId>org.microshed</groupId>
|
90 |
| - <artifactId>microshed-testing-core</artifactId> |
| 88 | + <artifactId>microshed-testing-core-jakarta</artifactId> |
91 | 89 | <version>0.9.2-SNAPSHOT</version>
|
92 | 90 | <scope>test</scope>
|
93 | 91 | </dependency>
|
94 | 92 | <dependency>
|
95 | 93 | <groupId>org.testcontainers</groupId>
|
96 | 94 | <artifactId>postgresql</artifactId>
|
97 |
| - <version>1.15.0</version> |
| 95 | + <version>1.19.1</version> |
98 | 96 | <scope>test</scope>
|
99 | 97 | </dependency>
|
100 |
| - <!-- |
| 98 | + <!-- |
101 | 99 | <dependency>
|
102 | 100 | <groupId>org.testcontainers</groupId>
|
103 | 101 | <artifactId>kafka</artifactId>
|
|
108 | 106 | <dependency>
|
109 | 107 | <groupId>org.slf4j</groupId>
|
110 | 108 | <artifactId>slf4j-log4j12</artifactId>
|
111 |
| - <version>1.7.36</version> |
| 109 | + <version>2.0.9</version> |
112 | 110 | <scope>test</scope>
|
113 | 111 | </dependency>
|
114 | 112 | </dependencies>
|
|
117 | 115 | <plugin>
|
118 | 116 | <groupId>io.quarkus</groupId>
|
119 | 117 | <artifactId>quarkus-maven-plugin</artifactId>
|
120 |
| - <version>${quarkus-plugin.version}</version> |
| 118 | + <version>${quarkus.platform.version}</version> |
121 | 119 | <executions>
|
122 | 120 | <execution>
|
123 | 121 | <goals>
|
124 | 122 | <goal>build</goal>
|
| 123 | + <goal>generate-code</goal> |
| 124 | + <goal>generate-code-tests</goal> |
125 | 125 | </goals>
|
126 | 126 | </execution>
|
127 | 127 | </executions>
|
|
161 | 161 | <goal>verify</goal>
|
162 | 162 | </goals>
|
163 | 163 | <configuration>
|
164 |
| - <systemProperties> |
165 |
| - <native.image.path>${project.build.directory}/${project.build.finalName}-runner</native.image.path> |
166 |
| - </systemProperties> |
| 164 | + <systemPropertyVariables> |
| 165 | + <native.image.path> |
| 166 | + ${project.build.directory}/${project.build.finalName}-runner |
| 167 | + </native.image.path> |
| 168 | + <java.util.logging.manager>org.jboss.logmanager.LogManager |
| 169 | + </java.util.logging.manager> |
| 170 | + <maven.home>${maven.home}</maven.home> |
| 171 | + </systemPropertyVariables> |
167 | 172 | </configuration>
|
168 | 173 | </execution>
|
169 | 174 | </executions>
|
|
0 commit comments