Skip to content

Commit

Permalink
[WFLY-18633] moves to parent 9, which no longer has openshift profile
Browse files Browse the repository at this point in the history
  • Loading branch information
emmartins committed Oct 29, 2024
1 parent b6ab8a3 commit e0672d2
Show file tree
Hide file tree
Showing 62 changed files with 959 additions and 69 deletions.
31 changes: 30 additions & 1 deletion batch-processing/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
Maintain separation between the artifact id and the version to help prevent
merge conflicts between commits changing the GA and those changing the V.
-->
<version>8</version>
<version>9</version>
<relativePath/>
</parent>

Expand Down Expand Up @@ -180,6 +180,8 @@
</dependencies>

<build>
<!-- Set the name of the WAR, used as the context root when the app is deployed. -->
<finalName>${project.artifactId}</finalName>
<pluginManagement>
<plugins>
<plugin>
Expand Down Expand Up @@ -252,6 +254,33 @@
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<version>${version.war.plugin}</version>
<configuration>
<warName>ROOT</warName>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<version>${version.war.plugin}</version>
<configuration>
<warName>ROOT</warName>
</configuration>
</plugin>
<!-- do not attach sources to openshift deployments -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<executions>
<execution>
<id>attach-sources</id>
<phase>none</phase>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
Expand Down
23 changes: 22 additions & 1 deletion bmt/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
Maintain separation between the artifact id and the version to help prevent
merge conflicts between commits changing the GA and those changing the V.
-->
<version>8</version>
<version>9</version>
<relativePath/>
</parent>

Expand Down Expand Up @@ -121,6 +121,8 @@
</dependencies>

<build>
<!-- Set the name of the WAR, used as the context root when the app is deployed. -->
<finalName>${project.artifactId}</finalName>
<pluginManagement>
<plugins>
<plugin>
Expand Down Expand Up @@ -195,6 +197,25 @@
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<version>${version.war.plugin}</version>
<configuration>
<warName>ROOT</warName>
</configuration>
</plugin>
<!-- do not attach sources to openshift deployments -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<executions>
<execution>
<id>attach-sources</id>
<phase>none</phase>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
Expand Down
23 changes: 22 additions & 1 deletion cmt/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
Maintain separation between the artifact id and the version to help prevent
merge conflicts between commits changing the GA and those changing the V.
-->
<version>8</version>
<version>9</version>
<relativePath/>
</parent>
<artifactId>cmt</artifactId>
Expand Down Expand Up @@ -125,6 +125,8 @@


<build>
<!-- Set the name of the WAR, used as the context root when the app is deployed. -->
<finalName>${project.artifactId}</finalName>
<pluginManagement>
<plugins>
<plugin>
Expand Down Expand Up @@ -199,6 +201,25 @@
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<version>${version.war.plugin}</version>
<configuration>
<warName>ROOT</warName>
</configuration>
</plugin>
<!-- do not attach sources to openshift deployments -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<executions>
<execution>
<id>attach-sources</id>
<phase>none</phase>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
Expand Down
23 changes: 22 additions & 1 deletion ee-security/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
Maintain separation between the artifact id and the version to help prevent
merge conflicts between commits changing the GA and those changing the V.
-->
<version>8</version>
<version>9</version>
<relativePath/>
</parent>

Expand Down Expand Up @@ -105,6 +105,8 @@
</dependencies>

<build>
<!-- Set the name of the WAR, used as the context root when the app is deployed. -->
<finalName>${project.artifactId}</finalName>
<pluginManagement>
<plugins>
<plugin>
Expand Down Expand Up @@ -189,6 +191,25 @@
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<version>${version.war.plugin}</version>
<configuration>
<warName>ROOT</warName>
</configuration>
</plugin>
<!-- do not attach sources to openshift deployments -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<executions>
<execution>
<id>attach-sources</id>
<phase>none</phase>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
Expand Down
2 changes: 1 addition & 1 deletion ejb-multi-server/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
Maintain separation between the artifact id and the version to help prevent
merge conflicts between commits changing the GA and those changing the V.
-->
<version>8</version>
<version>9</version>
<relativePath/>
</parent>
<artifactId>ejb-multi-server</artifactId>
Expand Down
23 changes: 22 additions & 1 deletion ejb-remote/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
Maintain separation between the artifact id and the version to help prevent
merge conflicts between commits changing the GA and those changing the V.
-->
<version>8</version>
<version>9</version>
<relativePath/>
</parent>
<artifactId>ejb-remote</artifactId>
Expand Down Expand Up @@ -94,6 +94,8 @@
</dependencies>

<build>
<!-- Set the name of the WAR, used as the context root when the app is deployed. -->
<finalName>${project.artifactId}</finalName>
<pluginManagement>
<plugins>
<plugin>
Expand Down Expand Up @@ -166,6 +168,25 @@
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<version>${version.war.plugin}</version>
<configuration>
<warName>ROOT</warName>
</configuration>
</plugin>
<!-- do not attach sources to openshift deployments -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<executions>
<execution>
<id>attach-sources</id>
<phase>none</phase>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
Expand Down
2 changes: 1 addition & 1 deletion ejb-security-context-propagation/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
Maintain separation between the artifact id and the version to help prevent
merge conflicts between commits changing the GA and those changing the V.
-->
<version>8</version>
<version>9</version>
<relativePath/>
</parent>
<artifactId>ejb-security-context-propagation</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion ejb-security-programmatic-auth/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
Maintain separation between the artifact id and the version to help prevent
merge conflicts between commits changing the GA and those changing the V.
-->
<version>8</version>
<version>9</version>
<relativePath/>
</parent>
<artifactId>ejb-security-programmatic-auth</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion ejb-throws-exception/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
Maintain separation between the artifact id and the version to help prevent
merge conflicts between commits changing the GA and those changing the V.
-->
<version>8</version>
<version>9</version>
<relativePath/>
</parent>
<artifactId>ejb-throws-exception</artifactId>
Expand Down
5 changes: 5 additions & 0 deletions ejb-throws-exception/web/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -82,4 +82,9 @@
<scope>test</scope>
</dependency>
</dependencies>

<build>
<!-- Set the name of the WAR, used as the context root when the app is deployed. -->
<finalName>${project.artifactId}</finalName>
</build>
</project>
23 changes: 22 additions & 1 deletion ejb-timer/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
Maintain separation between the artifact id and the version to help prevent
merge conflicts between commits changing the GA and those changing the V.
-->
<version>8</version>
<version>9</version>
<relativePath/>
</parent>
<artifactId>ejb-timer</artifactId>
Expand Down Expand Up @@ -107,6 +107,8 @@
</dependencies>

<build>
<!-- Set the name of the WAR, used as the context root when the app is deployed. -->
<finalName>${project.artifactId}</finalName>
<pluginManagement>
<plugins>
<plugin>
Expand Down Expand Up @@ -173,6 +175,25 @@
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<version>${version.war.plugin}</version>
<configuration>
<warName>ROOT</warName>
</configuration>
</plugin>
<!-- do not attach sources to openshift deployments -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<executions>
<execution>
<id>attach-sources</id>
<phase>none</phase>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
Expand Down
13 changes: 12 additions & 1 deletion ejb-txn-remote-call/client/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
Maintain separation between the artifact id and the version to help prevent
merge conflicts between commits changing the GA and those changing the V.
-->
<version>8</version>
<version>9</version>
<relativePath/>
</parent>

Expand Down Expand Up @@ -322,6 +322,17 @@
</execution>
</executions>
</plugin>
<!-- do not attach sources to openshift deployments -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<executions>
<execution>
<id>attach-sources</id>
<phase>none</phase>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
Expand Down
2 changes: 1 addition & 1 deletion ejb-txn-remote-call/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
Maintain separation between the artifact id and the version to help prevent
merge conflicts between commits changing the GA and those changing the V.
-->
<version>8</version>
<version>9</version>
<relativePath/>
</parent>
<artifactId>ejb-txn-remote-call</artifactId>
Expand Down
13 changes: 12 additions & 1 deletion ejb-txn-remote-call/server/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
Maintain separation between the artifact id and the version to help prevent
merge conflicts between commits changing the GA and those changing the V.
-->
<version>8</version>
<version>9</version>
<relativePath/>
</parent>

Expand Down Expand Up @@ -269,6 +269,17 @@
<!-- We need to add the quickstart user automatically -->
</executions>
</plugin>
<!-- do not attach sources to openshift deployments -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<executions>
<execution>
<id>attach-sources</id>
<phase>none</phase>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
Expand Down
4 changes: 3 additions & 1 deletion ha-singleton-deployment/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
Maintain separation between the artifact id and the version to help prevent
merge conflicts between commits changing the GA and those changing the V.
-->
<version>8</version>
<version>9</version>
<relativePath/>
</parent>

Expand Down Expand Up @@ -100,6 +100,8 @@
</dependencies>

<build>
<!-- Set the name of the WAR, used as the context root when the app is deployed. -->
<finalName>${project.artifactId}</finalName>
<pluginManagement>
<plugins>
<plugin>
Expand Down
Loading

0 comments on commit e0672d2

Please sign in to comment.