Skip to content

Commit

Permalink
HV-1882 Make sure to copy javafx.api modules to WildFly when running …
Browse files Browse the repository at this point in the history
…the TCK with JDK8
  • Loading branch information
yrodiere authored and gsmet committed Feb 28, 2022
1 parent 70cef76 commit 2efa072
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions tck-runner/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -400,6 +400,41 @@
</plugins>
</build>
</profile>
<profile>
<id>testWithJdk8</id>
<activation>
<property>
<name>java-version.test.release</name>
<value>8</value>
</property>
</activation>
<build>
<plugins>
<!-- Copy additional modules -->
<plugin>
<artifactId>maven-resources-plugin</artifactId>
<executions>
<execution>
<id>copy-resources</id>
<phase>generate-test-resources</phase>
<goals>
<goal>copy-resources</goal>
</goals>
<configuration>
<outputDirectory>${wildfly.target-dir}/modules/system/layers/base/</outputDirectory>
<resources>
<resource>
<directory>src/test/modules/jdk8</directory>
<filtering>true</filtering>
</resource>
</resources>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
<profile>
<id>testWithJdk11+</id>
<activation>
Expand Down

0 comments on commit 2efa072

Please sign in to comment.