Matthias Andreas Benkard | 8ddaf66 | 2020-01-19 20:21:57 +0100 | [diff] [blame] | 1 | <?xml version="1.0"?> |
| 2 | <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" |
| 3 | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> |
| 4 | |
| 5 | <modelVersion>4.0.0</modelVersion> |
| 6 | |
| 7 | <groupId>eu.mulk</groupId> |
| 8 | <artifactId>mulkcms2</artifactId> |
| 9 | <version>0.1.0-SNAPSHOT</version> |
| 10 | |
| 11 | <properties> |
| 12 | <maven.compiler.parameters>true</maven.compiler.parameters> |
| 13 | <maven.compiler.source>11</maven.compiler.source> |
| 14 | <maven.compiler.target>11</maven.compiler.target> |
| 15 | |
| 16 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 17 | <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> |
| 18 | |
Matthias Andreas Benkard | 7f4dacc | 2020-04-13 11:25:19 +0200 | [diff] [blame] | 19 | <antrun-plugin.version>1.8</antrun-plugin.version> |
Matthias Andreas Benkard | 55243c8 | 2020-04-13 20:49:15 +0200 | [diff] [blame] | 20 | <compiler-plugin.version>3.8.1</compiler-plugin.version> |
Matthias Andreas Benkard | b8bac1f | 2020-04-24 16:02:25 +0200 | [diff] [blame] | 21 | <quarkus-plugin.version>1.4.0.Final</quarkus-plugin.version> |
Matthias Andreas Benkard | 55243c8 | 2020-04-13 20:49:15 +0200 | [diff] [blame] | 22 | <spotless-plugin.version>1.30.0</spotless-plugin.version> |
| 23 | <surefire-plugin.version>3.0.0-M4</surefire-plugin.version> |
Matthias Andreas Benkard | 8ddaf66 | 2020-01-19 20:21:57 +0100 | [diff] [blame] | 24 | |
Matthias Andreas Benkard | 2710bf3 | 2020-01-25 10:48:07 +0100 | [diff] [blame] | 25 | <!-- <quarkus.platform.artifact-id>quarkus-universe-bom</quarkus.platform.artifact-id> --> |
| 26 | <quarkus.platform.artifact-id>quarkus-bom</quarkus.platform.artifact-id> |
Matthias Andreas Benkard | 8ddaf66 | 2020-01-19 20:21:57 +0100 | [diff] [blame] | 27 | <quarkus.platform.group-id>io.quarkus</quarkus.platform.group-id> |
Matthias Andreas Benkard | b8bac1f | 2020-04-24 16:02:25 +0200 | [diff] [blame] | 28 | <quarkus.platform.version>1.4.0.Final</quarkus.platform.version> |
Matthias Andreas Benkard | 8ddaf66 | 2020-01-19 20:21:57 +0100 | [diff] [blame] | 29 | |
Matthias Andreas Benkard | 1e7674c | 2020-04-18 20:28:51 +0200 | [diff] [blame] | 30 | <basic-annotations.version>0.2.0</basic-annotations.version> |
Matthias Andreas Benkard | 8ddaf66 | 2020-01-19 20:21:57 +0100 | [diff] [blame] | 31 | <findbugs-jsr305.version>3.0.2</findbugs-jsr305.version> |
Matthias Andreas Benkard | df7485c | 2020-04-20 08:38:31 +0200 | [diff] [blame] | 32 | <flexmark.version>0.61.16</flexmark.version> |
Matthias Andreas Benkard | 593765d | 2020-04-18 20:44:07 +0200 | [diff] [blame] | 33 | <google.java.format.version>1.7</google.java.format.version> |
Matthias Andreas Benkard | 98e63f0 | 2020-04-18 19:45:48 +0200 | [diff] [blame] | 34 | <hibernate.version>5.4.14.Final</hibernate.version> |
Matthias Andreas Benkard | 699e9ab | 2020-04-10 15:52:54 +0200 | [diff] [blame] | 35 | <hibernate-types.version>2.9.8</hibernate-types.version> |
Matthias Andreas Benkard | 8ddaf66 | 2020-01-19 20:21:57 +0100 | [diff] [blame] | 36 | <jakarta-jacc-api.version>1.6.1</jakarta-jacc-api.version> |
| 37 | <jna.version>5.5.0</jna.version> |
Matthias Andreas Benkard | 551f50c | 2020-03-15 12:34:07 +0100 | [diff] [blame] | 38 | <jsoup.version>1.13.1</jsoup.version> |
Matthias Andreas Benkard | 0684956 | 2020-02-14 20:13:17 +0100 | [diff] [blame] | 39 | <mapstruct.version>1.3.1.Final</mapstruct.version> |
Matthias Andreas Benkard | 981f279 | 2020-02-16 14:54:54 +0100 | [diff] [blame] | 40 | <rome.version>1.12.2</rome.version> |
Matthias Andreas Benkard | 70d2795 | 2020-04-17 21:30:09 +0200 | [diff] [blame] | 41 | <testcontainers.version>1.14.0</testcontainers.version> |
Matthias Andreas Benkard | 8ddaf66 | 2020-01-19 20:21:57 +0100 | [diff] [blame] | 42 | </properties> |
| 43 | |
| 44 | <dependencyManagement> |
| 45 | <dependencies> |
| 46 | |
| 47 | <dependency> |
| 48 | <groupId>${quarkus.platform.group-id}</groupId> |
| 49 | <artifactId>${quarkus.platform.artifact-id}</artifactId> |
| 50 | <version>${quarkus.platform.version}</version> |
| 51 | <type>pom</type> |
| 52 | <scope>import</scope> |
| 53 | </dependency> |
| 54 | |
| 55 | <!-- Hibernate PostgreSQL Extra Types --> |
| 56 | <dependency> |
| 57 | <groupId>com.vladmihalcea</groupId> |
| 58 | <artifactId>hibernate-types-52</artifactId> |
| 59 | <version>${hibernate-types.version}</version> |
| 60 | </dependency> |
| 61 | |
Matthias Andreas Benkard | 1e7674c | 2020-04-18 20:28:51 +0200 | [diff] [blame] | 62 | <!-- Annotations --> |
| 63 | <dependency> |
| 64 | <groupId>pl.tlinkowski.annotation</groupId> |
| 65 | <artifactId>pl.tlinkowski.annotation.basic</artifactId> |
| 66 | <version>${basic-annotations.version}</version> |
| 67 | <scope>provided</scope> |
| 68 | </dependency> |
| 69 | |
Matthias Andreas Benkard | 4e29a24 | 2020-01-25 05:38:27 +0100 | [diff] [blame] | 70 | <!-- Jsoup --> |
| 71 | <dependency> |
| 72 | <groupId>org.jsoup</groupId> |
| 73 | <artifactId>jsoup</artifactId> |
| 74 | <version>${jsoup.version}</version> |
| 75 | </dependency> |
| 76 | |
Matthias Andreas Benkard | 424e16e | 2020-02-09 18:29:56 +0100 | [diff] [blame] | 77 | <!-- FlexMark --> |
| 78 | <dependency> |
| 79 | <groupId>com.vladsch.flexmark</groupId> |
| 80 | <artifactId>flexmark-all</artifactId> |
| 81 | <version>${flexmark.version}</version> |
| 82 | </dependency> |
| 83 | |
Matthias Andreas Benkard | 981f279 | 2020-02-16 14:54:54 +0100 | [diff] [blame] | 84 | <!-- Rome --> |
| 85 | <dependency> |
| 86 | <groupId>com.rometools</groupId> |
| 87 | <artifactId>rome</artifactId> |
| 88 | <version>${rome.version}</version> |
| 89 | </dependency> |
| 90 | |
Matthias Andreas Benkard | 8ddaf66 | 2020-01-19 20:21:57 +0100 | [diff] [blame] | 91 | <!-- JNA --> |
| 92 | <dependency> |
| 93 | <groupId>net.java.dev.jna</groupId> |
| 94 | <artifactId>jna</artifactId> |
| 95 | <version>${jna.version}</version> |
| 96 | </dependency> |
| 97 | |
| 98 | <!-- JACC --> |
| 99 | <dependency> |
| 100 | <groupId>jakarta.security.jacc</groupId> |
| 101 | <artifactId>jakarta.security.jacc-api</artifactId> |
| 102 | <version>${jakarta-jacc-api.version}</version> |
| 103 | </dependency> |
| 104 | |
Matthias Andreas Benkard | 2a1383f | 2020-02-01 23:53:17 +0100 | [diff] [blame] | 105 | <!-- JOSE for Java --> |
| 106 | <dependency> |
| 107 | <groupId>org.bitbucket.b_c</groupId> |
| 108 | <artifactId>jose4j</artifactId> |
| 109 | <version>0.7.0</version> |
| 110 | </dependency> |
| 111 | |
Matthias Andreas Benkard | 8ddaf66 | 2020-01-19 20:21:57 +0100 | [diff] [blame] | 112 | <!-- MapStruct --> |
| 113 | <dependency> |
| 114 | <groupId>org.mapstruct</groupId> |
| 115 | <artifactId>mapstruct</artifactId> |
| 116 | <version>${mapstruct.version}</version> |
| 117 | </dependency> |
Matthias Andreas Benkard | 8ddaf66 | 2020-01-19 20:21:57 +0100 | [diff] [blame] | 118 | |
| 119 | <!-- Annotations --> |
| 120 | <dependency> |
| 121 | <groupId>com.google.code.findbugs</groupId> |
| 122 | <artifactId>jsr305</artifactId> |
| 123 | <version>${findbugs-jsr305.version}</version> |
| 124 | <scope>provided</scope> |
| 125 | </dependency> |
| 126 | |
| 127 | <!-- Testing --> |
| 128 | <dependency> |
| 129 | <groupId>org.testcontainers</groupId> |
| 130 | <artifactId>testcontainers</artifactId> |
| 131 | <version>${testcontainers.version}</version> |
| 132 | <scope>test</scope> |
| 133 | </dependency> |
| 134 | <dependency> |
| 135 | <groupId>org.testcontainers</groupId> |
| 136 | <artifactId>postgresql</artifactId> |
| 137 | <version>${testcontainers.version}</version> |
| 138 | <scope>test</scope> |
| 139 | </dependency> |
| 140 | |
| 141 | </dependencies> |
| 142 | </dependencyManagement> |
| 143 | |
| 144 | <dependencies> |
| 145 | |
| 146 | <dependency> |
| 147 | <groupId>io.quarkus</groupId> |
Matthias Andreas Benkard | 4cb34f4 | 2020-01-24 14:44:28 +0100 | [diff] [blame] | 148 | <artifactId>quarkus-agroal</artifactId> |
Matthias Andreas Benkard | 8ddaf66 | 2020-01-19 20:21:57 +0100 | [diff] [blame] | 149 | </dependency> |
| 150 | <dependency> |
| 151 | <groupId>io.quarkus</groupId> |
Matthias Andreas Benkard | c27d1cb | 2020-01-26 11:11:24 +0100 | [diff] [blame] | 152 | <artifactId>quarkus-elytron-security-properties-file</artifactId> |
| 153 | </dependency> |
| 154 | <dependency> |
| 155 | <groupId>io.quarkus</groupId> |
Matthias Andreas Benkard | 8ddaf66 | 2020-01-19 20:21:57 +0100 | [diff] [blame] | 156 | <artifactId>quarkus-flyway</artifactId> |
| 157 | </dependency> |
| 158 | <dependency> |
| 159 | <groupId>io.quarkus</groupId> |
Matthias Andreas Benkard | 4cb34f4 | 2020-01-24 14:44:28 +0100 | [diff] [blame] | 160 | <artifactId>quarkus-hibernate-orm-panache</artifactId> |
Matthias Andreas Benkard | 8ddaf66 | 2020-01-19 20:21:57 +0100 | [diff] [blame] | 161 | </dependency> |
| 162 | <dependency> |
| 163 | <groupId>io.quarkus</groupId> |
| 164 | <artifactId>quarkus-hibernate-validator</artifactId> |
| 165 | </dependency> |
| 166 | <dependency> |
| 167 | <groupId>io.quarkus</groupId> |
Matthias Andreas Benkard | 4cb34f4 | 2020-01-24 14:44:28 +0100 | [diff] [blame] | 168 | <artifactId>quarkus-jdbc-postgresql</artifactId> |
| 169 | </dependency> |
Matthias Andreas Benkard | 4cb34f4 | 2020-01-24 14:44:28 +0100 | [diff] [blame] | 170 | <dependency> |
| 171 | <groupId>io.quarkus</groupId> |
| 172 | <artifactId>quarkus-oidc</artifactId> |
| 173 | </dependency> |
| 174 | <dependency> |
| 175 | <groupId>io.quarkus</groupId> |
| 176 | <artifactId>quarkus-resteasy</artifactId> |
| 177 | </dependency> |
| 178 | <dependency> |
| 179 | <groupId>io.quarkus</groupId> |
| 180 | <artifactId>quarkus-resteasy-jsonb</artifactId> |
| 181 | </dependency> |
| 182 | <dependency> |
| 183 | <groupId>io.quarkus</groupId> |
| 184 | <artifactId>quarkus-resteasy-qute</artifactId> |
| 185 | </dependency> |
Matthias Andreas Benkard | 2a1383f | 2020-02-01 23:53:17 +0100 | [diff] [blame] | 186 | <dependency> |
| 187 | <groupId>io.quarkus</groupId> |
| 188 | <artifactId>quarkus-smallrye-jwt</artifactId> |
| 189 | </dependency> |
Matthias Andreas Benkard | db48be4 | 2020-04-17 21:44:59 +0200 | [diff] [blame] | 190 | <dependency> |
| 191 | <groupId>io.quarkus</groupId> |
| 192 | <artifactId>quarkus-container-image-jib</artifactId> |
| 193 | </dependency> |
Matthias Andreas Benkard | 8ddaf66 | 2020-01-19 20:21:57 +0100 | [diff] [blame] | 194 | |
| 195 | <!-- JNA --> |
| 196 | <dependency> |
| 197 | <groupId>net.java.dev.jna</groupId> |
| 198 | <artifactId>jna</artifactId> |
| 199 | </dependency> |
| 200 | |
| 201 | <!-- JACC --> |
| 202 | <dependency> |
| 203 | <groupId>jakarta.security.jacc</groupId> |
| 204 | <artifactId>jakarta.security.jacc-api</artifactId> |
| 205 | </dependency> |
| 206 | |
| 207 | <!-- Hibernate PostgreSQL Extra Types --> |
| 208 | <dependency> |
| 209 | <groupId>com.vladmihalcea</groupId> |
| 210 | <artifactId>hibernate-types-52</artifactId> |
| 211 | </dependency> |
| 212 | |
Matthias Andreas Benkard | 1e7674c | 2020-04-18 20:28:51 +0200 | [diff] [blame] | 213 | <!-- Annotations --> |
| 214 | <dependency> |
| 215 | <groupId>pl.tlinkowski.annotation</groupId> |
| 216 | <artifactId>pl.tlinkowski.annotation.basic</artifactId> |
| 217 | <scope>provided</scope> |
| 218 | </dependency> |
| 219 | |
Matthias Andreas Benkard | 4e29a24 | 2020-01-25 05:38:27 +0100 | [diff] [blame] | 220 | <!-- Jsoup --> |
| 221 | <dependency> |
| 222 | <groupId>org.jsoup</groupId> |
| 223 | <artifactId>jsoup</artifactId> |
| 224 | </dependency> |
| 225 | |
Matthias Andreas Benkard | 424e16e | 2020-02-09 18:29:56 +0100 | [diff] [blame] | 226 | <!-- FlexMark --> |
| 227 | <dependency> |
| 228 | <groupId>com.vladsch.flexmark</groupId> |
| 229 | <artifactId>flexmark-all</artifactId> |
| 230 | </dependency> |
| 231 | |
Matthias Andreas Benkard | 981f279 | 2020-02-16 14:54:54 +0100 | [diff] [blame] | 232 | <!-- Rome --> |
| 233 | <dependency> |
| 234 | <groupId>com.rometools</groupId> |
| 235 | <artifactId>rome</artifactId> |
| 236 | </dependency> |
| 237 | |
Matthias Andreas Benkard | 2a1383f | 2020-02-01 23:53:17 +0100 | [diff] [blame] | 238 | <!-- JOSE for Java --> |
| 239 | <dependency> |
| 240 | <groupId>org.bitbucket.b_c</groupId> |
| 241 | <artifactId>jose4j</artifactId> |
| 242 | </dependency> |
| 243 | |
Matthias Andreas Benkard | 8ddaf66 | 2020-01-19 20:21:57 +0100 | [diff] [blame] | 244 | <!-- MapStruct --> |
| 245 | <dependency> |
| 246 | <groupId>org.mapstruct</groupId> |
| 247 | <artifactId>mapstruct</artifactId> |
| 248 | </dependency> |
Matthias Andreas Benkard | 8ddaf66 | 2020-01-19 20:21:57 +0100 | [diff] [blame] | 249 | |
| 250 | <!-- Annotations --> |
| 251 | <dependency> |
| 252 | <groupId>com.google.code.findbugs</groupId> |
| 253 | <artifactId>jsr305</artifactId> |
| 254 | <scope>provided</scope> |
| 255 | </dependency> |
| 256 | |
| 257 | <!-- Testing --> |
| 258 | <dependency> |
| 259 | <groupId>io.quarkus</groupId> |
| 260 | <artifactId>quarkus-junit5</artifactId> |
| 261 | <scope>test</scope> |
| 262 | </dependency> |
| 263 | <dependency> |
| 264 | <groupId>io.rest-assured</groupId> |
| 265 | <artifactId>rest-assured</artifactId> |
| 266 | <scope>test</scope> |
| 267 | </dependency> |
| 268 | <dependency> |
| 269 | <groupId>org.testcontainers</groupId> |
| 270 | <artifactId>junit-jupiter</artifactId> |
| 271 | <scope>test</scope> |
| 272 | </dependency> |
| 273 | <dependency> |
| 274 | <groupId>org.testcontainers</groupId> |
| 275 | <artifactId>testcontainers</artifactId> |
| 276 | <scope>test</scope> |
| 277 | </dependency> |
| 278 | <dependency> |
| 279 | <groupId>org.testcontainers</groupId> |
| 280 | <artifactId>postgresql</artifactId> |
| 281 | <scope>test</scope> |
| 282 | </dependency> |
| 283 | |
| 284 | </dependencies> |
| 285 | |
| 286 | <build> |
| 287 | |
| 288 | <plugins> |
| 289 | |
| 290 | <plugin> |
| 291 | <groupId>io.quarkus</groupId> |
| 292 | <artifactId>quarkus-maven-plugin</artifactId> |
| 293 | <version>${quarkus-plugin.version}</version> |
| 294 | <executions> |
| 295 | <execution> |
| 296 | <goals> |
| 297 | <goal>build</goal> |
| 298 | </goals> |
| 299 | </execution> |
| 300 | </executions> |
| 301 | </plugin> |
| 302 | |
| 303 | <plugin> |
| 304 | <artifactId>maven-compiler-plugin</artifactId> |
| 305 | <version>${compiler-plugin.version}</version> |
Matthias Andreas Benkard | 98e63f0 | 2020-04-18 19:45:48 +0200 | [diff] [blame] | 306 | |
| 307 | <configuration> |
| 308 | <annotationProcessorPaths> |
| 309 | <!-- Hibernate --> |
| 310 | <annotationProcessorPath> |
| 311 | <groupId>org.hibernate</groupId> |
| 312 | <artifactId>hibernate-jpamodelgen</artifactId> |
| 313 | <version>${hibernate.version}</version> |
| 314 | </annotationProcessorPath> |
| 315 | |
| 316 | <!-- MapStruct --> |
| 317 | <annotationProcessorPath> |
| 318 | <groupId>org.mapstruct</groupId> |
| 319 | <artifactId>mapstruct-processor</artifactId> |
| 320 | <version>${mapstruct.version}</version> |
| 321 | </annotationProcessorPath> |
| 322 | </annotationProcessorPaths> |
| 323 | </configuration> |
Matthias Andreas Benkard | 8ddaf66 | 2020-01-19 20:21:57 +0100 | [diff] [blame] | 324 | </plugin> |
| 325 | |
| 326 | <plugin> |
| 327 | <artifactId>maven-surefire-plugin</artifactId> |
| 328 | <version>${surefire-plugin.version}</version> |
| 329 | <configuration> |
| 330 | <systemProperties> |
| 331 | <java.util.logging.manager>org.jboss.logmanager.LogManager</java.util.logging.manager> |
| 332 | <compilerArgs> |
| 333 | <compilerArg>-Amapstruct.defaultComponentModel=cdi</compilerArg> |
| 334 | </compilerArgs> |
| 335 | </systemProperties> |
| 336 | </configuration> |
| 337 | </plugin> |
| 338 | |
| 339 | <!-- Google Java Code Formatter, for enforcing style conventions --> |
| 340 | <plugin> |
| 341 | <groupId>com.diffplug.spotless</groupId> |
| 342 | <artifactId>spotless-maven-plugin</artifactId> |
| 343 | <version>${spotless-plugin.version}</version> |
| 344 | <configuration> |
| 345 | <java> |
| 346 | <removeUnusedImports/> |
| 347 | <importOrder> |
| 348 | <order>java,javax,org,com,de,io,dagger,eu.mulk,</order> |
| 349 | </importOrder> |
| 350 | <googleJavaFormat> |
| 351 | <version>${google.java.format.version}</version> |
| 352 | <style>GOOGLE</style> |
| 353 | </googleJavaFormat> |
| 354 | </java> |
| 355 | </configuration> |
| 356 | </plugin> |
Matthias Andreas Benkard | f7bf7c4 | 2020-01-28 22:31:12 +0100 | [diff] [blame] | 357 | |
| 358 | <plugin> |
Matthias Andreas Benkard | 7f4dacc | 2020-04-13 11:25:19 +0200 | [diff] [blame] | 359 | <artifactId>maven-antrun-plugin</artifactId> |
| 360 | <version>${antrun-plugin.version}</version> |
| 361 | <executions> |
| 362 | <execution> |
| 363 | <phase>generate-resources</phase> |
| 364 | <configuration> |
| 365 | <target> |
| 366 | <ant target="web.resources" /> |
| 367 | </target> |
| 368 | </configuration> |
| 369 | <goals> |
| 370 | <goal>run</goal> |
| 371 | </goals> |
| 372 | </execution> |
| 373 | </executions> |
| 374 | </plugin> |
| 375 | |
Matthias Andreas Benkard | 8ddaf66 | 2020-01-19 20:21:57 +0100 | [diff] [blame] | 376 | </plugins> |
| 377 | |
Matthias Andreas Benkard | b712a01 | 2020-01-26 08:10:49 +0100 | [diff] [blame] | 378 | <resources> |
| 379 | <resource> |
| 380 | <directory>src/main/resources</directory> |
| 381 | <excludes> |
| 382 | <exclude>META-INF/resources/node_modules/**/*</exclude> |
Matthias Andreas Benkard | 97130f9 | 2020-01-27 21:03:39 +0100 | [diff] [blame] | 383 | <exclude>META-INF/resources/package.json</exclude> |
| 384 | <exclude>META-INF/resources/yarn.lock</exclude> |
Matthias Andreas Benkard | b712a01 | 2020-01-26 08:10:49 +0100 | [diff] [blame] | 385 | </excludes> |
| 386 | <filtering>false</filtering> |
| 387 | </resource> |
| 388 | </resources> |
| 389 | |
Matthias Andreas Benkard | 8ddaf66 | 2020-01-19 20:21:57 +0100 | [diff] [blame] | 390 | </build> |
| 391 | |
| 392 | <profiles> |
| 393 | |
| 394 | <profile> |
| 395 | |
| 396 | <id>native</id> |
| 397 | |
| 398 | <activation> |
| 399 | <property> |
| 400 | <name>native</name> |
| 401 | </property> |
| 402 | </activation> |
| 403 | |
Matthias Andreas Benkard | 8ddaf66 | 2020-01-19 20:21:57 +0100 | [diff] [blame] | 404 | <properties> |
| 405 | <quarkus.package.type>native</quarkus.package.type> |
| 406 | </properties> |
| 407 | |
| 408 | </profile> |
| 409 | |
| 410 | </profiles> |
| 411 | |
| 412 | </project> |