|
1 | 1 | <?xml version="1.0" encoding="UTF-8"?> |
2 | 2 | <project |
3 | | - xmlns="http://maven.apache.org/POM/4.0.0" |
4 | | - xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
5 | | - xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" |
| 3 | + xmlns="http://maven.apache.org/POM/4.0.0" |
| 4 | + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 5 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" |
6 | 6 | > |
7 | 7 | <modelVersion>4.0.0</modelVersion> |
8 | 8 |
|
|
71 | 71 |
|
72 | 72 | <!-- Test versions. --> |
73 | 73 | <jacoco.version>0.8.7</jacoco.version> |
74 | | - <glassfish6.version>6.2.3</glassfish6.version> |
75 | | - <payara5.version>5.2021.9</payara5.version> |
76 | | - <wildfly.version>25.0.1.Final</wildfly.version> |
77 | | - <tomee9.version>9.0.0-M7</tomee9.version> |
78 | | - <liberty.version>21.0.0.12</liberty.version> |
| 74 | + <glassfish6.version>6.2.3</glassfish6.version> |
| 75 | + <payara5.version>5.2021.9</payara5.version> |
| 76 | + <wildfly.version>25.0.1.Final</wildfly.version> |
| 77 | + <tomee9.version>9.0.0-M7</tomee9.version> |
| 78 | + <liberty.version>21.0.0.12</liberty.version> |
79 | 79 | <maven-surefire-plugin.version>3.0.0-M5</maven-surefire-plugin.version> |
80 | 80 | </properties> |
81 | 81 |
|
|
261 | 261 | </configuration> |
262 | 262 | </plugin> |
263 | 263 |
|
264 | | - <plugin> |
| 264 | + <!-- Generate documentation from source. --> |
| 265 | + <plugin> |
| 266 | + <groupId>org.asciidoctor</groupId> |
| 267 | + <artifactId>asciidoctor-maven-plugin</artifactId> |
| 268 | + <version>1.5.6</version> |
| 269 | + <configuration> |
| 270 | + <attributes> |
| 271 | + <project-version>${project.version}</project-version> |
| 272 | + <linkcss>true</linkcss> |
| 273 | + </attributes> |
| 274 | + <backend>html5</backend> |
| 275 | + </configuration> |
| 276 | + <executions> |
| 277 | + <execution> |
| 278 | + <id>output-html</id> |
| 279 | + <phase>generate-resources</phase> |
| 280 | + <goals> |
| 281 | + <goal>process-asciidoc</goal> |
| 282 | + </goals> |
| 283 | + </execution> |
| 284 | + </executions> |
| 285 | + </plugin> |
| 286 | + |
| 287 | + <plugin> |
265 | 288 | <groupId>external.atlassian.jgitflow</groupId> |
266 | 289 | <artifactId>jgitflow-maven-plugin</artifactId> |
267 | 290 | <version>1.0-m5.1</version> |
|
356 | 379 | </dependencies> |
357 | 380 | </profile> |
358 | 381 |
|
359 | | - <profile> |
360 | | - <id>payara5</id> |
| 382 | + <profile> |
| 383 | + <id>payara5</id> |
361 | 384 |
|
362 | | - <dependencies> |
363 | | - <dependency> |
364 | | - <groupId>fish.payara.extras</groupId> |
365 | | - <artifactId>payara-embedded-all</artifactId> |
366 | | - <version>${payara5.version}</version> |
367 | | - <scope>test</scope> |
368 | | - </dependency> |
| 385 | + <dependencies> |
| 386 | + <dependency> |
| 387 | + <groupId>fish.payara.extras</groupId> |
| 388 | + <artifactId>payara-embedded-all</artifactId> |
| 389 | + <version>${payara5.version}</version> |
| 390 | + <scope>test</scope> |
| 391 | + </dependency> |
369 | 392 |
|
370 | | - <dependency> |
371 | | - <groupId>fish.payara.arquillian</groupId> |
372 | | - <artifactId>arquillian-payara-server-embedded</artifactId> |
373 | | - <version>2.4.5</version> |
374 | | - </dependency> |
375 | | - </dependencies> |
376 | | - </profile> |
| 393 | + <dependency> |
| 394 | + <groupId>fish.payara.arquillian</groupId> |
| 395 | + <artifactId>arquillian-payara-server-embedded</artifactId> |
| 396 | + <version>2.4.5</version> |
377 | 397 |
|
378 | | - <profile> |
379 | | - <id>wildfly</id> |
| 398 | + </dependency> |
| 399 | + </dependencies> |
| 400 | + </profile> |
| 401 | + |
| 402 | + <profile> |
| 403 | + <id>wildfly</id> |
380 | 404 |
|
381 | 405 | <dependencies> |
382 | 406 | <dependency> |
|
474 | 498 | <tomee.httpsPort>-1</tomee.httpsPort> |
475 | 499 | <tomee.ajpPort>-1</tomee.ajpPort> |
476 | 500 |
|
477 | | - <tomee.dir>target/tomee/server</tomee.dir> |
478 | | - <tomee.appWorkingDir>target/tomee/arquillian</tomee.appWorkingDir> |
479 | | - <tomee.cleanOnStartUp>true</tomee.cleanOnStartUp> |
480 | | - <tomee.classifier>plus</tomee.classifier> |
481 | | - <tomee.properties> |
482 | | - openejb.environment.default=true |
483 | | - </tomee.properties> |
484 | | - </systemPropertyVariables> |
485 | | - </configuration> |
486 | | - </plugin> |
487 | | - </plugins> |
488 | | - </build> |
489 | | - </profile> |
490 | | - |
491 | | - |
492 | | - <profile> |
493 | | - <id>liberty</id> |
| 501 | + <tomee.dir>target/tomee/server</tomee.dir> |
| 502 | + <tomee.appWorkingDir>target/tomee/arquillian</tomee.appWorkingDir> |
| 503 | + <tomee.cleanOnStartUp>true</tomee.cleanOnStartUp> |
| 504 | + <tomee.classifier>plus</tomee.classifier> |
| 505 | + <tomee.properties> |
| 506 | + openejb.environment.default=true |
| 507 | + </tomee.properties> |
| 508 | + </systemPropertyVariables> |
| 509 | + </configuration> |
| 510 | + </plugin> |
| 511 | + </plugins> |
| 512 | + </build> |
| 513 | + </profile> |
| 514 | + |
| 515 | + |
| 516 | + <profile> |
| 517 | + <id>liberty</id> |
494 | 518 |
|
495 | 519 | <dependencies> |
496 | 520 | <dependency> |
|
0 commit comments