|
977 | 977 |
|
978 | 978 | </profile> |
979 | 979 |
|
| 980 | + <profile> |
| 981 | + <id>default-jdk25</id> |
| 982 | + <build> |
| 983 | + <plugins> |
| 984 | + <plugin> |
| 985 | + <groupId>org.apache.maven.plugins</groupId> |
| 986 | + <artifactId>maven-surefire-plugin</artifactId> |
| 987 | + <configuration> |
| 988 | + <forkCount>3</forkCount> |
| 989 | + <reuseForks>true</reuseForks> |
| 990 | + <includes> |
| 991 | + <include>SpringContextTest</include> |
| 992 | + <include>**/*UnitTest</include> |
| 993 | + </includes> |
| 994 | + <excludes> |
| 995 | + <exclude>**/*IntegrationTest.java</exclude> |
| 996 | + <exclude>**/*IntTest.java</exclude> |
| 997 | + <exclude>**/*LongRunningUnitTest.java</exclude> |
| 998 | + <exclude>**/*ManualTest.java</exclude> |
| 999 | + <exclude>**/JdbcTest.java</exclude> |
| 1000 | + <exclude>**/*LiveTest.java</exclude> |
| 1001 | + </excludes> |
| 1002 | + </configuration> |
| 1003 | + </plugin> |
| 1004 | + </plugins> |
| 1005 | + </build> |
| 1006 | + |
| 1007 | + <modules> |
| 1008 | + <module>core-java-modules/core-java-25</module> |
| 1009 | + </modules> |
| 1010 | + |
| 1011 | + <properties> |
| 1012 | + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 1013 | + <java.version>25</java.version> |
| 1014 | + <maven.compiler.source>25</maven.compiler.source> |
| 1015 | + <maven.compiler.target>25</maven.compiler.target> |
| 1016 | + <maven-pmd-plugin.version>3.26.0</maven-pmd-plugin.version> |
| 1017 | + </properties> |
| 1018 | + |
| 1019 | + </profile> |
| 1020 | + |
980 | 1021 | <profile> |
981 | 1022 | <id>integration-jdk17</id> |
982 | 1023 | <build> |
|
1405 | 1446 |
|
1406 | 1447 | </profile> |
1407 | 1448 |
|
| 1449 | + <profile> |
| 1450 | + <id>integration-jdk25</id> |
| 1451 | + <build> |
| 1452 | + <plugins> |
| 1453 | + <plugin> |
| 1454 | + <groupId>org.apache.maven.plugins</groupId> |
| 1455 | + <artifactId>maven-surefire-plugin</artifactId> |
| 1456 | + <version>${maven-surefire-plugin.version}</version> |
| 1457 | + <configuration> |
| 1458 | + <excludes> |
| 1459 | + <exclude>**/*ManualTest.java</exclude> |
| 1460 | + <exclude>**/*LiveTest.java</exclude> |
| 1461 | + </excludes> |
| 1462 | + <includes> |
| 1463 | + <include>**/*IntegrationTest.java</include> |
| 1464 | + <include>**/*IntTest.java</include> |
| 1465 | + </includes> |
| 1466 | + </configuration> |
| 1467 | + </plugin> |
| 1468 | + </plugins> |
| 1469 | + </build> |
| 1470 | + |
| 1471 | + <modules> |
| 1472 | + <module>core-java-modules/core-java-25</module> |
| 1473 | + </modules> |
| 1474 | + |
| 1475 | + <properties> |
| 1476 | + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 1477 | + <java.version>25</java.version> |
| 1478 | + <maven.compiler.source>25</maven.compiler.source> |
| 1479 | + <maven.compiler.target>25</maven.compiler.target> |
| 1480 | + <maven-pmd-plugin.version>3.26.0</maven-pmd-plugin.version> |
| 1481 | + </properties> |
| 1482 | + |
| 1483 | + </profile> |
| 1484 | + |
1408 | 1485 | <profile> |
1409 | 1486 | <id>live-all</id> |
1410 | 1487 | <build> |
|
1505 | 1582 | <module>spring-cloud-cli</module> <!-- Not a maven project --> |
1506 | 1583 | <module>spring-roo</module> <!-- Not supported JAVA-17327 --> |
1507 | 1584 | <module>apache-spark</module> <!-- JAVA-42030 --> |
| 1585 | + <module>apache-spark-2</module> |
1508 | 1586 | <module>jhipster-modules</module><!-- failing after upgrading to jdk17--> |
1509 | 1587 | <module>persistence-modules/java-harperdb</module> <!-- This module requires a library to download manually --> <!-- JAVA-42044 --> |
1510 | 1588 | <module>spring-cloud-modules/spring-cloud-data-flow</module> <!-- failing after upgrading to jdk17--> <!-- JAVA-42054 --> |
|
1539 | 1617 | <module>spring-cloud-modules/spring-cloud-task/springcloudtaskbatch</module> <!-- JAVA-34716 --> |
1540 | 1618 | <module>aspectj</module> <!-- JAVA-42031 --> |
1541 | 1619 | <module>persistence-modules/hibernate-queries-2</module> <!-- JAVA-42042 --> |
| 1620 | + <module>testing-modules/selenium-3/scrollelementintoview</module> |
| 1621 | + <module>testing-modules/selenium-3/selenium-json-demo</module> |
1542 | 1622 | </modules> |
1543 | 1623 | </profile> |
1544 | 1624 |
|
|
1571 | 1651 | <module>spring-cloud-cli</module> <!-- Not a maven project --> |
1572 | 1652 | <module>spring-roo</module> <!-- Not supported JAVA-17327 --> |
1573 | 1653 | <module>apache-spark</module> <!-- JAVA-42030 --> |
| 1654 | + <module>apache-spark-2</module> |
1574 | 1655 | <module>jhipster-modules</module><!-- failing after upgrading to jdk17--> |
1575 | 1656 | <module>persistence-modules/java-harperdb</module> <!-- This module requires a library to download manually --> <!-- JAVA-42044 --> |
1576 | 1657 | <module>spring-cloud-modules/spring-cloud-data-flow</module> <!-- failing after upgrading to jdk17--> <!-- JAVA-42054 --> |
|
1605 | 1686 | <module>spring-cloud-modules/spring-cloud-task/springcloudtaskbatch</module> <!-- JAVA-34716 --> |
1606 | 1687 | <module>aspectj</module> <!-- JAVA-42031 --> |
1607 | 1688 | <module>persistence-modules/hibernate-queries-2</module> <!-- JAVA-42042 --> |
| 1689 | + <module>testing-modules/selenium-3/scrollelementintoview</module> |
| 1690 | + <module>testing-modules/selenium-3/selenium-json-demo</module> |
1608 | 1691 | </modules> |
1609 | 1692 | </profile> |
1610 | 1693 |
|
|
0 commit comments