Skip to content

Commit

Permalink
...
Browse files Browse the repository at this point in the history
  • Loading branch information
emmartins committed Oct 31, 2024
1 parent 105b830 commit 1ee9243
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/project_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
- name: Build Quickstarts Release
run: |
cd quickstarts
mvn -U -B -fae clean install -Drelease
mvn -U -B -fae clean install -Drelease -P-provisioned-server,-bootable-jar
shell: bash
- uses: actions/upload-artifact@v4
if: failure()
Expand Down Expand Up @@ -76,7 +76,7 @@ jobs:
- name: Build Quickstarts Release with Server and BOMs Versions
run: |
cd quickstarts
mvn -U -B -fae clean install -Drelease -Dversion.server=${{ needs.wildfly-build.outputs.wildfly-version }}
mvn -U -B -fae clean install -Drelease -P-provisioned-server,-bootable-jar -Dversion.server=${{ needs.wildfly-build.outputs.wildfly-version }}
shell: bash
- uses: actions/upload-artifact@v4
if: failure()
Expand Down
2 changes: 1 addition & 1 deletion http-custom-mechanism/add-custom-module.cli
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# Add the custom module to the server

# If you need to change this command please change also in webapp/pom.xml
module add --name=org.jboss.as.quickstart.http_custom_mechanism.custom-http-mechanism --resources=custom-module/target/custom-module.jar --dependencies=org.wildfly.security.elytron
6 changes: 5 additions & 1 deletion http-custom-mechanism/webapp/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -87,10 +87,14 @@
</discover-provisioning-info>
<packaging-scripts>
<packaging-script>
<commands>
<!-- If you need to change this command please change also in ../add-custom-module.cli -->
<command>module add --name=org.jboss.as.quickstart.http_custom_mechanism.custom-http-mechanism --resources=${project.basedir}/../custom-module/target/custom-module.jar --dependencies=org.wildfly.security.elytron</command>
</commands>
<scripts>
<script>${basedir}/../add-custom-module.cli</script>
<script>${basedir}/../configure-elytron.cli</script>
</scripts>
<resolve-expressions>true</resolve-expressions>
</packaging-script>
</packaging-scripts>
</configuration>
Expand Down

0 comments on commit 1ee9243

Please sign in to comment.