Skip to content

Commit

Permalink
Merge pull request #981 from emmartins/removes-glow
Browse files Browse the repository at this point in the history
[main-no-glow] Removes Glow
  • Loading branch information
emmartins authored Nov 21, 2024
2 parents 383128d + 6b8105e commit 8205b15
Show file tree
Hide file tree
Showing 61 changed files with 1,103 additions and 477 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/project_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
WildFly-build:
uses: wildfly/wildfly/.github/workflows/shared-wildfly-build.yml@main
with:
wildfly-branch: ${{ github.base_ref }}
wildfly-branch: main
wildfly-repo: "wildfly/wildfly"

Test-build-with-deps-matrix:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/quickstart_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ jobs:
WildFly-build:
uses: wildfly/wildfly/.github/workflows/shared-wildfly-build.yml@main
with:
wildfly-branch: ${{ github.base_ref }}
wildfly-branch: main
wildfly-repo: "wildfly/wildfly"

Test-build-with-deps-matrix:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/quickstart_ejb-txn-remote-call_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ jobs:
WildFly-build:
uses: wildfly/wildfly/.github/workflows/shared-wildfly-build.yml@main
with:
wildfly-branch: ${{ github.base_ref }}
wildfly-branch: main
wildfly-repo: "wildfly/wildfly"

Test-build-with-deps-matrix:
Expand Down
41 changes: 28 additions & 13 deletions batch-processing/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@
<version.server>34.0.0.Final</version.server>
<!-- the versions for BOMs, Packs and Plugins -->
<version.bom.ee>${version.server}</version.bom.ee>
<version.pack.cloud>7.0.2.Final</version.pack.cloud>
<version.plugin.wildfly>5.1.0.Alpha1</version.plugin.wildfly>
</properties>

Expand Down Expand Up @@ -205,12 +206,18 @@
<groupId>org.wildfly.plugins</groupId>
<artifactId>wildfly-maven-plugin</artifactId>
<configuration>
<discover-provisioning-info>
<version>${version.server}</version>
<addOns>
<addOn>h2-database:default</addOn>
</addOns>
</discover-provisioning-info>
<feature-packs>
<feature-pack>
<location>org.wildfly:wildfly-galleon-pack:${version.server}</location>
</feature-pack>
</feature-packs>
<layers>
<!-- layers may be used to customize the server to provision-->
<layer>batch-jberet</layer>
<layer>cloud-server</layer>
<layer>h2-default-datasource</layer>
<layer>jsf</layer>
</layers>
</configuration>
<executions>
<execution>
Expand All @@ -231,13 +238,21 @@
<groupId>org.wildfly.plugins</groupId>
<artifactId>wildfly-maven-plugin</artifactId>
<configuration>
<discover-provisioning-info>
<version>${version.server}</version>
<context>cloud</context>
<addOns>
<addOn>h2-database:default</addOn>
</addOns>
</discover-provisioning-info>
<feature-packs>
<feature-pack>
<location>org.wildfly:wildfly-galleon-pack:${version.server}</location>
</feature-pack>
<feature-pack>
<location>org.wildfly.cloud:wildfly-cloud-galleon-pack:${version.pack.cloud}</location>
</feature-pack>
</feature-packs>
<layers>
<!-- layers may be used to customize the server to provision-->
<layer>batch-jberet</layer>
<layer>cloud-server</layer>
<layer>h2-default-datasource</layer>
<layer>jsf</layer>
</layers>
</configuration>
<executions>
<execution>
Expand Down
43 changes: 28 additions & 15 deletions bmt/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@
<version.server>34.0.0.Final</version.server>
<!-- the versions for BOMs, Packs and Plugins -->
<version.bom.ee>${version.server}</version.bom.ee>
<version.pack.cloud>7.0.2.Final</version.pack.cloud>
<version.plugin.wildfly>5.1.0.Alpha1</version.plugin.wildfly>
</properties>

Expand Down Expand Up @@ -146,13 +147,18 @@
<groupId>org.wildfly.plugins</groupId>
<artifactId>wildfly-maven-plugin</artifactId>
<configuration>
<discover-provisioning-info>
<version>${version.server}</version>
<addOns>
<addOn>embedded-activemq</addOn>
<addOn>h2-database:default</addOn>
</addOns>
</discover-provisioning-info>
<feature-packs>
<feature-pack>
<location>org.wildfly:wildfly-galleon-pack:${version.server}</location>
</feature-pack>
</feature-packs>
<layers>
<layer>cloud-server</layer>
<layer>ejb</layer>
<layer>embedded-activemq</layer>
<layer>h2-default-datasource</layer>
<layer>jsf</layer>
</layers>
</configuration>
<executions>
<execution>
Expand All @@ -173,14 +179,21 @@
<groupId>org.wildfly.plugins</groupId>
<artifactId>wildfly-maven-plugin</artifactId>
<configuration>
<discover-provisioning-info>
<version>${version.server}</version>
<context>cloud</context>
<addOns>
<addOn>embedded-activemq</addOn>
<addOn>h2-database:default</addOn>
</addOns>
</discover-provisioning-info>
<feature-packs>
<feature-pack>
<location>org.wildfly:wildfly-galleon-pack:${version.server}</location>
</feature-pack>
<feature-pack>
<location>org.wildfly.cloud:wildfly-cloud-galleon-pack:${version.pack.cloud}</location>
</feature-pack>
</feature-packs>
<layers>
<layer>cloud-server</layer>
<layer>ejb</layer>
<layer>embedded-activemq</layer>
<layer>h2-default-datasource</layer>
<layer>jsf</layer>
</layers>
</configuration>
<executions>
<execution>
Expand Down
43 changes: 28 additions & 15 deletions cmt/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@
<version.server>34.0.0.Final</version.server>
<!-- the versions for BOMs, Packs and Plugins -->
<version.bom.ee>${version.server}</version.bom.ee>
<version.pack.cloud>7.0.2.Final</version.pack.cloud>
<version.plugin.wildfly>5.1.0.Alpha1</version.plugin.wildfly>
</properties>

Expand Down Expand Up @@ -150,13 +151,18 @@
<groupId>org.wildfly.plugins</groupId>
<artifactId>wildfly-maven-plugin</artifactId>
<configuration>
<discover-provisioning-info>
<version>${version.server}</version>
<addOns>
<addOn>embedded-activemq</addOn>
<addOn>h2-database:default</addOn>
</addOns>
</discover-provisioning-info>
<feature-packs>
<feature-pack>
<location>org.wildfly:wildfly-galleon-pack:${version.server}</location>
</feature-pack>
</feature-packs>
<layers>
<layer>cloud-server</layer>
<layer>ejb</layer>
<layer>embedded-activemq</layer>
<layer>h2-default-datasource</layer>
<layer>jsf</layer>
</layers>
</configuration>
<executions>
<execution>
Expand All @@ -177,14 +183,21 @@
<groupId>org.wildfly.plugins</groupId>
<artifactId>wildfly-maven-plugin</artifactId>
<configuration>
<discover-provisioning-info>
<version>${version.server}</version>
<context>cloud</context>
<addOns>
<addOn>embedded-activemq</addOn>
<addOn>h2-database:default</addOn>
</addOns>
</discover-provisioning-info>
<feature-packs>
<feature-pack>
<location>org.wildfly:wildfly-galleon-pack:${version.server}</location>
</feature-pack>
<feature-pack>
<location>org.wildfly.cloud:wildfly-cloud-galleon-pack:${version.pack.cloud}</location>
</feature-pack>
</feature-packs>
<layers>
<layer>cloud-server</layer>
<layer>ejb</layer>
<layer>embedded-activemq</layer>
<layer>h2-default-datasource</layer>
<layer>jsf</layer>
</layers>
</configuration>
<executions>
<execution>
Expand Down
27 changes: 20 additions & 7 deletions ee-security/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@
<version.server>34.0.0.Final</version.server>
<!-- the versions for BOMs, Packs and Plugins -->
<version.bom.ee>${version.server}</version.bom.ee>
<version.pack.cloud>7.0.2.Final</version.pack.cloud>
<version.plugin.wildfly>5.1.0.Alpha1</version.plugin.wildfly>
</properties>

Expand Down Expand Up @@ -130,9 +131,14 @@
<groupId>org.wildfly.plugins</groupId>
<artifactId>wildfly-maven-plugin</artifactId>
<configuration>
<discover-provisioning-info>
<version>${version.server}</version>
</discover-provisioning-info>
<feature-packs>
<feature-pack>
<location>org.wildfly:wildfly-galleon-pack:${version.server}</location>
</feature-pack>
</feature-packs>
<layers>
<layer>cloud-server</layer>
</layers>
<packaging-scripts>
<packaging-script>
<scripts>
Expand Down Expand Up @@ -162,10 +168,17 @@
<groupId>org.wildfly.plugins</groupId>
<artifactId>wildfly-maven-plugin</artifactId>
<configuration>
<discover-provisioning-info>
<version>${version.server}</version>
<context>cloud</context>
</discover-provisioning-info>
<feature-packs>
<feature-pack>
<location>org.wildfly:wildfly-galleon-pack:${version.server}</location>
</feature-pack>
<feature-pack>
<location>org.wildfly.cloud:wildfly-cloud-galleon-pack:${version.pack.cloud}</location>
</feature-pack>
</feature-packs>
<layers>
<layer>cloud-server</layer>
</layers>
<packaging-scripts>
<packaging-script>
<scripts>
Expand Down
1 change: 1 addition & 0 deletions ejb-multi-server/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@
<version.server>34.0.0.Final</version.server>
<!-- the versions for BOMs, Packs and Plugins -->
<version.bom.ee>${version.server}</version.bom.ee>
<version.pack.cloud>7.0.2.Final</version.pack.cloud>
<version.plugin.wildfly>5.1.0.Alpha1</version.plugin.wildfly>
</properties>

Expand Down
35 changes: 22 additions & 13 deletions ejb-remote/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@
<version.server>34.0.0.Final</version.server>
<!-- the versions for BOMs, Packs and Plugins -->
<version.bom.ee>${version.server}</version.bom.ee>
<version.pack.cloud>7.0.2.Final</version.pack.cloud>
<version.plugin.wildfly>5.1.0.Alpha1</version.plugin.wildfly>
</properties>

Expand Down Expand Up @@ -119,12 +120,15 @@
<groupId>org.wildfly.plugins</groupId>
<artifactId>wildfly-maven-plugin</artifactId>
<configuration>
<discover-provisioning-info>
<version>${version.server}</version>
<addOns>
<addOn>wildfly-cli</addOn>
</addOns>
</discover-provisioning-info>
<feature-packs>
<feature-pack>
<location>org.wildfly:wildfly-galleon-pack:${version.server}</location>
</feature-pack>
</feature-packs>
<layers>
<layer>cloud-server</layer>
<layer>ejb</layer>
</layers>
</configuration>
<executions>
<execution>
Expand All @@ -145,13 +149,18 @@
<groupId>org.wildfly.plugins</groupId>
<artifactId>wildfly-maven-plugin</artifactId>
<configuration>
<discover-provisioning-info>
<version>${version.server}</version>
<addOns>
<addOn>wildfly-cli</addOn>
</addOns>
<context>cloud</context>
</discover-provisioning-info>
<feature-packs>
<feature-pack>
<location>org.wildfly:wildfly-galleon-pack:${version.server}</location>
</feature-pack>
<feature-pack>
<location>org.wildfly.cloud:wildfly-cloud-galleon-pack:${version.pack.cloud}</location>
</feature-pack>
</feature-packs>
<layers>
<layer>cloud-server</layer>
<layer>ejb</layer>
</layers>
</configuration>
<executions>
<execution>
Expand Down
21 changes: 11 additions & 10 deletions ejb-security-context-propagation/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@
<version.server>34.0.0.Final</version.server>
<!-- the versions for BOMs, Packs and Plugins -->
<version.bom.ee>${version.server}</version.bom.ee>
<version.pack.cloud>7.0.2.Final</version.pack.cloud>
<version.plugin.wildfly>5.1.0.Alpha1</version.plugin.wildfly>
</properties>

Expand Down Expand Up @@ -140,16 +141,16 @@
<groupId>org.wildfly.plugins</groupId>
<artifactId>wildfly-maven-plugin</artifactId>
<configuration>
<discover-provisioning-info>
<version>${version.server}</version>
<addOns>
<addOn>wildfly-cli</addOn>
</addOns>
<!-- no need to scan packaged jars -->
<excludedArchives>
<archive>*</archive>
</excludedArchives>
</discover-provisioning-info>
<feature-packs>
<feature-pack>
<location>org.wildfly:wildfly-galleon-pack:${version.server}</location>
</feature-pack>
</feature-packs>
<layers>
<!-- layers may be used to customize the server to provision -->
<layer>cloud-server</layer>
<layer>ejb</layer>
</layers>
<!-- use cli script(s) to configure the server -->
<packaging-scripts>
<packaging-script>
Expand Down
Loading

0 comments on commit 8205b15

Please sign in to comment.