Skip to content

Commit

Permalink
[issues-133] - (Unrelated) Fix the testsuite EAP XP 5 deployments, in…
Browse files Browse the repository at this point in the history
… order to set the XP GA bits version
  • Loading branch information
fabiobrz committed Nov 21, 2024
1 parent d60fb48 commit 6af013b
Showing 1 changed file with 57 additions and 8 deletions.
65 changes: 57 additions & 8 deletions testsuite/deployments/wildfly-shared/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@
</manifest>
</channel>
</channels>
<!-- When testing against EAP (-Peap), wildfly-ee-galeon-pack is needed -->
<!-- When testing against EAP 8, the wildfly-ee-galleon-pack is needed -->
<feature-packs>
<feature-pack>
<location>${wildfly.ee-feature-pack.location}</location>
Expand Down Expand Up @@ -265,18 +265,60 @@
<id>ts.wildfly.target-distribution.eapxp</id>
<properties>
<!-- Default EAP XP `microprofile` BOM version is set here and can be overridden for pulling the right BOM -->
<bom.wildfly-microprofile.groupId>org.jboss.eap.xp</bom.wildfly-microprofile.groupId>
<bom.wildfly-microprofile.artifactId>wildfly-microprofile</bom.wildfly-microprofile.artifactId>
<bom.wildfly-microprofile.version>5.0.0.GA-redhat-20240221</bom.wildfly-microprofile.version>
<!-- EAP XP Channel coordinates -->
<bom.wildfly-microprofile.groupId>org.jboss.bom</bom.wildfly-microprofile.groupId>
<bom.wildfly-microprofile.artifactId>jboss-eap-xp-microprofile</bom.wildfly-microprofile.artifactId>
<bom.wildfly-microprofile.version>5.0.0.GA-redhat-00009</bom.wildfly-microprofile.version>
<!-- EAP 8 Channel coordinates -->
<wildfly.ee-channel.groupId>org.jboss.eap.channels</wildfly.ee-channel.groupId>
<wildfly.ee-channel.artifactId>eap-8.0-plus-eap-xp-5.0</wildfly.ee-channel.artifactId>
<wildfly.ee-channel.version>1.0.0.Final-redhat-00001</wildfly.ee-channel.version>
<wildfly.feature-pack.location>org.jboss.eap.xp:wildfly-galleon-pack:5.0.0.GA-redhat-20240221</wildfly.feature-pack.location>
<wildfly.ee-channel.artifactId>eap-8.0</wildfly.ee-channel.artifactId>
<wildfly.ee-channel.version>1.0.1.GA-redhat-00003</wildfly.ee-channel.version>
<!-- EAP XP Channel coordinates -->
<wildfly.xp-channel.groupId>org.jboss.eap.channels</wildfly.xp-channel.groupId>
<wildfly.xp-channel.artifactId>eap-xp-5.0</wildfly.xp-channel.artifactId>
<wildfly.xp-channel.version>1.0.0.GA-redhat-00006</wildfly.xp-channel.version>
<!-- WildFly FPL -->
<wildfly.feature-pack.location>org.jboss.eap.xp:wildfly-galleon-pack:5.0.0.GA-redhat-00005</wildfly.feature-pack.location>
</properties>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>${wildfly-maven-plugin.groupId}</groupId>
<artifactId>${wildfly-maven-plugin.artifactId}</artifactId>
<version>${wildfly-maven-plugin.version}</version>
<configuration>
<channels>
<channel>
<manifest>
<groupId>${wildfly.ee-channel.groupId}</groupId>
<artifactId>${wildfly.ee-channel.artifactId}</artifactId>
<version>${wildfly.ee-channel.version}</version>
</manifest>
</channel>
</channels>
<!-- When testing against EAP XP, the wildfly-galleon-pack is needed -->
<feature-packs>
<feature-pack>
<location>${wildfly.feature-pack.location}</location>
</feature-pack>
<feature-pack>
<location>${wildfly.cloud-feature-pack.location}</location>
</feature-pack>
</feature-packs>
<galleon-options>
<!-- this flag is super necessary: otherwise wildfly-maven-plugin and
wildfly-jar-maven-plugin would collide -->
<jboss-fork-embedded>true</jboss-fork-embedded>
</galleon-options>
</configuration>
<executions>
<execution>
<goals>
<goal>package</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.wildfly.plugins</groupId>
<artifactId>wildfly-jar-maven-plugin</artifactId>
Expand All @@ -295,6 +337,13 @@
<version>${wildfly.ee-channel.version}</version>
</manifest>
</channel>
<channel>
<manifest>
<groupId>${wildfly.xp-channel.groupId}</groupId>
<artifactId>${wildfly.xp-channel.artifactId}</artifactId>
<version>${wildfly.xp-channel.version}</version>
</manifest>
</channel>
</channels>
</configuration>
</plugin>
Expand Down

0 comments on commit 6af013b

Please sign in to comment.