Skip to content

Commit

Permalink
Merge pull request wildfly#17789 from bstansberry/WFLY-19202
Browse files Browse the repository at this point in the history
[WFLY-19202] Require SE 17+ to run testsuite/integration/preview subm…
  • Loading branch information
bstansberry committed Apr 3, 2024
2 parents 057dee2 + 1f80c45 commit 97fc464
Showing 1 changed file with 18 additions and 4 deletions.
22 changes: 18 additions & 4 deletions testsuite/preview/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,7 @@
<property>
<name>!no.preview.integration.tests</name>
</property>
<jdk>[17,)</jdk>
</activation>
<modules>
<module>basic</module>
Expand Down Expand Up @@ -157,6 +158,7 @@
<property>
<name>ts.bootable.preview</name>
</property>
<jdk>[17,)</jdk>
</activation>
<properties>
<!-- Re-enable the default surefire execution -->
Expand All @@ -174,7 +176,10 @@
<!-- Run all tests on -DallTests. -->
<profile>
<id>ts.preview.allGroups</id>
<activation><property><name>allTests</name></property></activation>
<activation>
<property><name>allTests</name></property>
<jdk>[17,)</jdk>
</activation>
<modules>
<module>basic</module>
<!--<module>ws</module>
Expand All @@ -199,7 +204,10 @@
<!-- Define ts.integration uber-group. -->
<profile>
<id>ts.preview.allGroupsIntegration</id>
<activation><property><name>ts.integration</name></property></activation>
<activation>
<property><name>ts.integration</name></property>
<jdk>[17,)</jdk>
</activation>
<modules>
<module>basic</module>
<!--<module>ws</module>
Expand Down Expand Up @@ -236,7 +244,10 @@
<!-- -Dts.basic -->
<profile>
<id>ts.preview.group.basic</id>
<activation><property><name>ts.basic</name></property></activation>
<activation>
<property><name>ts.basic</name></property>
<jdk>[17,)</jdk>
</activation>
<modules>
<!--<module>ws</module>-->
<module>basic</module>
Expand Down Expand Up @@ -325,7 +336,10 @@
<!-- -Dts.layers -->
<profile>
<id>ts.preview.group.layers</id>
<activation><property><name>ts.layers</name></property></activation>
<activation>
<property><name>ts.layers</name></property>
<jdk>[17,)</jdk>
</activation>
<modules>
<module>basic</module>
</modules>
Expand Down

0 comments on commit 97fc464

Please sign in to comment.