Skip to content

Commit

Permalink
revert helloworld-jms pom changes
Browse files Browse the repository at this point in the history
  • Loading branch information
emmartins committed Aug 26, 2024
1 parent af75bb4 commit 39139f1
Showing 1 changed file with 42 additions and 1 deletion.
43 changes: 42 additions & 1 deletion helloworld-jms/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,48 @@
Rename the output war to ROOT.war before adding it to the server, so that the
application is deployed in the root web context.
-->
<skipDeployment>true</skipDeployment>
<name>ROOT.war</name>
<packaging-scripts>
<packaging-script>
<scripts>
<script>${project.build.scriptSourceDirectory}/configure-jms.cli</script>
</scripts>
<!-- Expressions resolved during server execution -->
<resolve-expressions>false</resolve-expressions>
</packaging-script>
</packaging-scripts>
</configuration>
<executions>
<execution>
<goals>
<goal>package</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
<profile>
<id>openshift</id>
<build>
<plugins>
<plugin>
<groupId>org.wildfly.plugins</groupId>
<artifactId>wildfly-maven-plugin</artifactId>
<configuration>
<discover-provisioning-info>
<version>${version.server}</version>
<context>cloud</context>
<add-ons>
<add-on>embedded-activemq</add-on>
</add-ons>
</discover-provisioning-info>
<!--
The parent POM's 'openshift' profile renames the output archive to ROOT.war so that the
application is deployed in the root web context. Add ROOT.war to the server.
-->
<filename>ROOT.war</filename>
<packaging-scripts>
<packaging-script>
<scripts>
Expand Down

0 comments on commit 39139f1

Please sign in to comment.