From 53c388dcbbaa3dd3649dcd475ca1e76a7ab9d180 Mon Sep 17 00:00:00 2001 From: Kabir Khan Date: Wed, 17 Jan 2024 15:22:44 +0000 Subject: [PATCH 01/26] Target WildFly main from the glow-preview branch --- .github/workflows/project_ci.yml | 4 +++- .github/workflows/quickstart_ci.yml | 4 +++- .github/workflows/quickstart_ejb-txn-remote-call_ci.yml | 4 +++- 3 files changed, 9 insertions(+), 3 deletions(-) diff --git a/.github/workflows/project_ci.yml b/.github/workflows/project_ci.yml index 1c6a1c9fa0..9541aa22b5 100644 --- a/.github/workflows/project_ci.yml +++ b/.github/workflows/project_ci.yml @@ -44,7 +44,9 @@ jobs: WildFly-build: uses: wildfly/wildfly/.github/workflows/shared-wildfly-build.yml@main with: - wildfly-branch: ${{ github.base_ref }} + # There is no upstream glow-preview branch. The QS glow-preview branch targets WildFLy main + #wildfly-branch: ${{ github.base_ref }} + wildfly-branch: main wildfly-repo: "wildfly/wildfly" Test-build-with-deps-matrix: diff --git a/.github/workflows/quickstart_ci.yml b/.github/workflows/quickstart_ci.yml index 5e6db1e158..04ae314996 100644 --- a/.github/workflows/quickstart_ci.yml +++ b/.github/workflows/quickstart_ci.yml @@ -165,7 +165,9 @@ jobs: WildFly-build: uses: wildfly/wildfly/.github/workflows/shared-wildfly-build.yml@main with: - wildfly-branch: ${{ github.base_ref }} + # There is no upstream glow-preview branch. The QS glow-preview branch targets WildFLy main + #wildfly-branch: ${{ github.base_ref }} + wildfly-branch: main wildfly-repo: "wildfly/wildfly" Test-build-with-deps-matrix: diff --git a/.github/workflows/quickstart_ejb-txn-remote-call_ci.yml b/.github/workflows/quickstart_ejb-txn-remote-call_ci.yml index c3165e0082..81be549e7f 100644 --- a/.github/workflows/quickstart_ejb-txn-remote-call_ci.yml +++ b/.github/workflows/quickstart_ejb-txn-remote-call_ci.yml @@ -132,7 +132,9 @@ jobs: WildFly-build: uses: wildfly/wildfly/.github/workflows/shared-wildfly-build.yml@main with: - wildfly-branch: ${{ github.base_ref }} + # There is no upstream glow-preview branch. The QS glow-preview branch targets WildFLy main + #wildfly-branch: ${{ github.base_ref }} + wildfly-branch: main wildfly-repo: "wildfly/wildfly" Test-build-with-deps-matrix: From 32e9a8fa8465cc526ab6af8272287c3c496d02b8 Mon Sep 17 00:00:00 2001 From: Kabir Khan Date: Tue, 24 Oct 2023 11:35:56 +0100 Subject: [PATCH 02/26] Port enhanced quickstarts to Glow --- .github/workflows/project_ci.yml | 3 +- .github/workflows/quickstart_ci.yml | 45 ++++--- .../quickstart_ejb-txn-remote-call_ci.yml | 55 ++++---- batch-processing/pom.xml | 51 ++++---- bmt/pom.xml | 53 ++++---- cmt/pom.xml | 53 ++++---- ee-security/pom.xml | 39 +++--- ejb-remote/pom.xml | 47 ++++--- ejb-security-context-propagation/pom.xml | 28 +++-- ejb-security-programmatic-auth/pom.xml | 33 +++-- ejb-throws-exception/ear/pom.xml | 14 +-- ejb-throws-exception/pom.xml | 4 +- ejb-timer/pom.xml | 41 +++--- ejb-txn-remote-call/README.adoc | 22 ++-- ejb-txn-remote-call/charts/client.yaml | 2 +- ejb-txn-remote-call/charts/server.yaml | 3 - ejb-txn-remote-call/client/client-cr.yaml | 9 ++ ejb-txn-remote-call/client/pom.xml | 74 +++++------ .../as/quickstarts/ejb/BasicRuntimeIT.java | 19 ++- ejb-txn-remote-call/pom.xml | 2 +- ejb-txn-remote-call/server/pom.xml | 119 +++++------------- ejb-txn-remote-call/server/server-cr.yaml | 9 ++ .../as/quickstarts/ejb/BasicRuntimeIT.java | 7 +- helloworld-jms/pom.xml | 48 ++++--- helloworld-mdb/pom.xml | 47 ++++--- helloworld-singleton/pom.xml | 33 ++--- helloworld-ws/pom.xml | 39 +++--- helloworld/pom.xml | 39 +++--- hibernate/pom.xml | 58 ++++----- http-custom-mechanism/pom.xml | 3 +- http-custom-mechanism/webapp/pom.xml | 20 +-- jaxrs-client/pom.xml | 36 +++--- jaxrs-jwt/pom.xml | 45 +++---- jaxws-ejb/pom.xml | 41 +++--- jaxws-retail/pom.xml | 41 +++--- jsonp/pom.xml | 41 +++--- kitchensink/pom.xml | 43 +++---- logging/README.adoc | 3 +- logging/cli-openshift.properties | 1 + logging/cli.properties | 1 + logging/configure-logging.cli | 12 +- logging/pom.xml | 54 ++++---- mail/pom.xml | 23 ++-- microprofile-config/pom.xml | 48 +++---- microprofile-fault-tolerance/pom.xml | 48 +++---- microprofile-health/pom.xml | 50 +++----- microprofile-jwt/pom.xml | 70 +++++------ microprofile-lra/pom.xml | 56 ++++----- microprofile-openapi/pom.xml | 66 +++++----- microprofile-reactive-messaging-kafka/pom.xml | 58 ++++----- microprofile-rest-client/pom.xml | 71 ++++------- numberguess/pom.xml | 39 +++--- remote-helloworld-mdb/pom.xml | 60 +++++---- servlet-async/pom.xml | 37 +++--- servlet-filterlistener/pom.xml | 37 +++--- servlet-security/pom.xml | 56 ++++----- spring-resteasy/pom.xml | 55 +++++--- temperature-converter/pom.xml | 41 +++--- thread-racing/pom.xml | 53 ++++---- todo-backend/pom.xml | 54 ++++---- websocket-endpoint/pom.xml | 37 +++--- websocket-hello/pom.xml | 37 +++--- 62 files changed, 1018 insertions(+), 1315 deletions(-) create mode 100644 logging/cli-openshift.properties create mode 100644 logging/cli.properties diff --git a/.github/workflows/project_ci.yml b/.github/workflows/project_ci.yml index 9541aa22b5..4c258e47f3 100644 --- a/.github/workflows/project_ci.yml +++ b/.github/workflows/project_ci.yml @@ -53,6 +53,7 @@ jobs: name: BUILD WITH DEPS - JDK${{ matrix.jdk }} - ${{ matrix.os }} runs-on: ${{ matrix.os }} needs: WildFly-build + if: strategy: fail-fast: false matrix: @@ -78,7 +79,7 @@ jobs: - name: Build Quickstarts Release with Server and BOMs Versions run: | cd quickstarts - mvn -U -B -fae clean install -Drelease -Dversion.server.bom=${{ needs.wildfly-build.outputs.wildfly-version }} -Dversion.microprofile.bom=${{ needs.wildfly-build.outputs.wildfly-version }} -Dversion.server.bootable-jar=${{ needs.wildfly-build.outputs.wildfly-version }} -Dversion.server=${{ needs.wildfly-build.outputs.wildfly-version }} + mvn -U -B -fae clean install -Drelease -Dversion.server.bom=${{ needs.wildfly-build.outputs.wildfly-version }} -Dversion.microprofile.bom=${{ needs.wildfly-build.outputs.wildfly-version }} -Dversion.server=${{ needs.wildfly-build.outputs.wildfly-version }} shell: bash - uses: actions/upload-artifact@v4 if: failure() diff --git a/.github/workflows/quickstart_ci.yml b/.github/workflows/quickstart_ci.yml index 04ae314996..971354862f 100644 --- a/.github/workflows/quickstart_ci.yml +++ b/.github/workflows/quickstart_ci.yml @@ -58,6 +58,9 @@ concurrency: group: '${{ github.workflow }} @ ${{ github.ref || github.run_id }}' cancel-in-progress: true +env: + WILDFLY_SNAPSHOT_EXTRA_PACKAGE_ARGUMENTS: '-Dwildfly-glow-galleon-feature-packs-url=https://raw.githubusercontent.com/wildfly/wildfly-galleon-feature-packs/main/' + jobs: Matrix-Setup: runs-on: ubuntu-latest @@ -103,6 +106,7 @@ jobs: run: | cd quickstarts cd ${{ inputs.QUICKSTART_PATH }} + # Make sure it builds mvn -fae clean package -Drelease shell: bash - name: Build, run & test ${{ inputs.QUICKSTART_PATH }} Quickstart with provisioned-server profile @@ -112,10 +116,12 @@ jobs: cd ${{ inputs.QUICKSTART_PATH }} echo "Building provisioned server..." mvn -fae clean ${{ inputs.MVN_COMMAND }} -Pprovisioned-server - echo "Add quickstartUser..." - ${{ inputs.DEPLOYMENT_DIR }}/target/server/bin/add-user.sh -a -u 'quickstartUser' -p 'quickstartPwd1!' -g 'guest,user,JBossAdmin,Users' - echo "Add quickstartAdmin..." - ${{ inputs.DEPLOYMENT_DIR }}/target/server/bin/add-user.sh -a -u 'quickstartAdmin' -p 'adminPwd1!' -g 'guest,user,admin' + if [ -f ${{ inputs.DEPLOYMENT_DIR }}/target/server/bin/add-user.sh ]; then + echo "Add quickstartUser..." + ${{ inputs.DEPLOYMENT_DIR }}/target/server/bin/add-user.sh -a -u 'quickstartUser' -p 'quickstartPwd1!' -g 'guest,user,JBossAdmin,Users' + echo "Add quickstartAdmin..." + ${{ inputs.DEPLOYMENT_DIR }}/target/server/bin/add-user.sh -a -u 'quickstartAdmin' -p 'adminPwd1!' -g 'guest,user,admin' + fi echo "Starting provisioned server..." mvn -f ${{ inputs.DEPLOYMENT_DIR }}/pom.xml wildfly:start -DjbossHome=${{ inputs.DEPLOYMENT_DIR }}/target/server -Dstartup-timeout=120 ${{ inputs.EXTRA_RUN_ARGS }} echo "Testing provisioned server..." @@ -131,11 +137,11 @@ jobs: echo "Building bootable jar..." mvn -fae clean ${{ inputs.MVN_COMMAND }} -Pbootable-jar echo "Starting bootable jar..." - mvn -f ${{ inputs.DEPLOYMENT_DIR }}/pom.xml wildfly-jar:start -Djar-file-name=${{ inputs.DEPLOYMENT_DIR }}/target/${{ inputs.QUICKSTART_PATH }}-bootable.jar -Dstartup-timeout=120 ${{ inputs.EXTRA_RUN_ARGS }} + mvn -f ${{ inputs.DEPLOYMENT_DIR }}/pom.xml wildfly:start-jar -Dstartup-timeout=120 ${{ inputs.EXTRA_RUN_ARGS }} echo "Testing bootable jar..." mvn -fae verify -Dserver.host=${{ inputs.SERVER_PROVISIONING_SERVER_HOST }} -Pintegration-testing echo "Shutting down bootable jar..." - mvn -f ${{ inputs.DEPLOYMENT_DIR }}/pom.xml wildfly-jar:shutdown + mvn -f ${{ inputs.DEPLOYMENT_DIR }}/pom.xml wildfly:shutdown shell: bash - name: Build ${{ inputs.QUICKSTART_PATH }} Quickstart with openshift profile if: ${{ inputs.TEST_OPENSHIFT }} @@ -210,7 +216,7 @@ jobs: run: | cd quickstarts cd ${{ inputs.QUICKSTART_PATH }} - mvn -fae clean package -Drelease -Dversion.server=${{ needs.wildfly-build.outputs.wildfly-version }} + mvn -fae clean package -Drelease -Dversion.server=${{ needs.wildfly-build.outputs.wildfly-version }} ${{ env.WILDFLY_SNAPSHOT_EXTRA_PACKAGE_ARGUMENTS }} shell: bash - name: Build, run & test ${{ inputs.QUICKSTART_PATH }} Quickstart with provisioned-server profile, and built Server version if: ${{ inputs.TEST_PROVISIONED_SERVER }} @@ -218,11 +224,13 @@ jobs: cd quickstarts cd ${{ inputs.QUICKSTART_PATH }} echo "Building provisioned server..." - mvn -fae clean ${{ inputs.MVN_COMMAND }} -Pprovisioned-server -Dversion.server=${{ needs.wildfly-build.outputs.wildfly-version }} - echo "Add quickstartUser..." - ${{ inputs.DEPLOYMENT_DIR }}/target/server/bin/add-user.sh -a -u 'quickstartUser' -p 'quickstartPwd1!' -g 'guest,user,JBossAdmin,Users' - echo "Add quickstartAdmin..." - ${{ inputs.DEPLOYMENT_DIR }}/target/server/bin/add-user.sh -a -u 'quickstartAdmin' -p 'adminPwd1!' -g 'guest,user,admin' + mvn -fae clean ${{ inputs.MVN_COMMAND }} -Pprovisioned-server -Dversion.server=${{ needs.wildfly-build.outputs.wildfly-version }} ${{ env.WILDFLY_SNAPSHOT_EXTRA_PACKAGE_ARGUMENTS }} + if [ -f ${{ inputs.DEPLOYMENT_DIR }}/target/server/bin/add-user.sh ]; then + echo "Add quickstartUser..." + ${{ inputs.DEPLOYMENT_DIR }}/target/server/bin/add-user.sh -a -u 'quickstartUser' -p 'quickstartPwd1!' -g 'guest,user,JBossAdmin,Users' + echo "Add quickstartAdmin..." + ${{ inputs.DEPLOYMENT_DIR }}/target/server/bin/add-user.sh -a -u 'quickstartAdmin' -p 'adminPwd1!' -g 'guest,user,admin' + fi echo "Starting provisioned server..." mvn -f ${{ inputs.DEPLOYMENT_DIR }}/pom.xml wildfly:start -DjbossHome=${{ inputs.DEPLOYMENT_DIR }}/target/server -Dstartup-timeout=120 ${{ inputs.EXTRA_RUN_ARGS }} echo "Testing provisioned server..." @@ -236,20 +244,20 @@ jobs: cd quickstarts cd ${{ inputs.QUICKSTART_PATH }} echo "Building bootable jar..." - mvn -fae clean ${{ inputs.MVN_COMMAND }} -Pbootable-jar -Dversion.server=${{ needs.wildfly-build.outputs.wildfly-version }} + mvn -fae clean ${{ inputs.MVN_COMMAND }} -Pbootable-jar -Dversion.server=${{ needs.wildfly-build.outputs.wildfly-version }} ${{ env.WILDFLY_SNAPSHOT_EXTRA_PACKAGE_ARGUMENTS }} echo "Starting bootable jar..." - mvn -f ${{ inputs.DEPLOYMENT_DIR }}/pom.xml wildfly-jar:start -Djar-file-name=${{ inputs.DEPLOYMENT_DIR }}/target/${{ inputs.QUICKSTART_PATH }}-bootable.jar -Dstartup-timeout=120 ${{ inputs.EXTRA_RUN_ARGS }} + mvn -f ${{ inputs.DEPLOYMENT_DIR }}/pom.xml wildfly:start-jar -Dstartup-timeout=120 ${{ inputs.EXTRA_RUN_ARGS }} echo "Testing bootable jar..." mvn -fae verify -Dserver.host=${{ inputs.SERVER_PROVISIONING_SERVER_HOST }} -Pintegration-testing - echo "Shutting down bootable jar..." - mvn -f ${{ inputs.DEPLOYMENT_DIR }}/pom.xml wildfly-jar:shutdown + echo "Shutting down bootable jar..." + mvn -f ${{ inputs.DEPLOYMENT_DIR }}/pom.xml wildfly:shutdown shell: bash - name: Build ${{ inputs.QUICKSTART_PATH }} Quickstart with openshift profile, and built Server version if: ${{ inputs.TEST_OPENSHIFT }} run: | cd quickstarts cd ${{ inputs.QUICKSTART_PATH }} - mvn -fae clean package -Popenshift -Dversion.server=${{ needs.wildfly-build.outputs.wildfly-version }} + mvn -fae clean package -Popenshift -Dversion.server=${{ needs.wildfly-build.outputs.wildfly-version }} ${{ env.WILDFLY_SNAPSHOT_EXTRA_PACKAGE_ARGUMENTS }} shell: bash - name: Run after script env: @@ -265,4 +273,5 @@ jobs: if: failure() with: name: surefire-reports-JDK${{ matrix.jdk }}-${{ matrix.os }} - path: 'quickstarts/**/surefire-reports/*.txt' \ No newline at end of file + path: 'quickstarts/**/surefire-reports/*.txt' + diff --git a/.github/workflows/quickstart_ejb-txn-remote-call_ci.yml b/.github/workflows/quickstart_ejb-txn-remote-call_ci.yml index 81be549e7f..cd84547392 100644 --- a/.github/workflows/quickstart_ejb-txn-remote-call_ci.yml +++ b/.github/workflows/quickstart_ejb-txn-remote-call_ci.yml @@ -20,7 +20,8 @@ env: MATRIX_JDK: '"11", "17"' MATRIX_OS: '"ubuntu-latest"' SERVER_PROVISIONING_SERVER_HOST: 'http://localhost' - + EXTRA_RUN_ARGS: '-Pprovisioned-server -DpostgresqlUsername="test" -DpostgresqlPassword="test"' + WILDFLY_SNAPSHOT_EXTRA_PACKAGE_ARGUMENTS: '-Dwildfly-glow-galleon-feature-packs-url=https://raw.githubusercontent.com/wildfly/wildfly-galleon-feature-packs/main/' jobs: Matrix-Setup: runs-on: ubuntu-latest @@ -74,27 +75,27 @@ jobs: cd quickstarts cd ${{ env.QUICKSTART_PATH }}/client echo "Building 'client' provisioned server..." - mvn -fae clean package -Pprovisioned-server -DremoteServerUsername="quickstartUser" -DremoteServerPassword="quickstartPwd1!" -DpostgresqlUsername="test" -DpostgresqlPassword="test" - mvn wildfly:start -Djboss-as.home=target/server -Dwildfly.javaOpts="-Djboss.tx.node.id=server1 -Djboss.node.name=server1" -Dstartup-timeout=120 + mvn -fae clean package -Pprovisioned-server -DremoteServerUsername="quickstartUser" -DremoteServerPassword="quickstartPwd1!" + mvn wildfly:start -Djboss-as.home=target/server -Dwildfly.javaOpts="-Djboss.tx.node.id=server1 -Djboss.node.name=server1" -Dstartup-timeout=120 ${{env.EXTRA_RUN_ARGS}} cd ../server echo "Building 'server' provisioned server..." - mvn -fae clean package -Pprovisioned-server -Dwildfly.provisioning.dir=server2 -Djboss-as.home=target/server2 -DpostgresqlUsername="test" -DpostgresqlPassword="test" - mvn -fae package -Pprovisioned-server -Dwildfly.provisioning.dir=server3 -Djboss-as.home=target/server3 -DpostgresqlUsername="test" -DpostgresqlPassword="test" + mvn -fae clean package -Pprovisioned-server -Dwildfly.provisioning.dir=server2 -Djboss-as.home=target/server2 + mvn -fae package -Pprovisioned-server -Dwildfly.provisioning.dir=server3 -Djboss-as.home=target/server3 echo "Add quickstartUser to both 'server' builds..." - ./target/server2/bin/add-user.sh -a -u 'quickstartUser' -p 'quickstartPwd1!' -g 'guest,user,JBossAdmin,Users' + ./target/server2/bin/add-user.sh -a -u 'quickstartUser' -p 'quickstartPwd1!' -g 'guest,user,JBossAdmin,Users' ./target/server3/bin/add-user.sh -a -u 'quickstartUser' -p 'quickstartPwd1!' -g 'guest,user,JBossAdmin,Users' echo "Add quickstartAdmin to both 'server' builds..." ./target/server2/bin/add-user.sh -a -u 'quickstartAdmin' -p 'adminPwd1!' -g 'guest,user,admin' - ./target/server2/bin/add-user.sh -a -u 'quickstartAdmin' -p 'adminPwd1!' -g 'guest,user,admin' + ./target/server3/bin/add-user.sh -a -u 'quickstartAdmin' -p 'adminPwd1!' -g 'guest,user,admin' echo "Starting provisioned server..." - mvn wildfly:start -Djboss-as.home=target/server2 -Dwildfly.port=10090 -Dwildfly.serverConfig=standalone-ha.xml -Dwildfly.javaOpts="-Djboss.socket.binding.port-offset=100 -Djboss.tx.node.id=server2 -Djboss.node.name=server2" -Dstartup-timeout=120 - mvn wildfly:start -Djboss-as.home=target/server3 -Dwildfly.port=10190 -Dwildfly.serverConfig=standalone-ha.xml -Dwildfly.javaOpts="-Djboss.socket.binding.port-offset=200 -Djboss.tx.node.id=server3 -Djboss.node.name=server3" -Dstartup-timeout=120 + mvn wildfly:start -Djboss-as.home=target/server2 -Dwildfly.port=10090 -Dwildfly.serverConfig=standalone-ha.xml -Dwildfly.javaOpts="-Djboss.socket.binding.port-offset=100 -Djboss.tx.node.id=server2 -Djboss.node.name=server2" -Dstartup-timeout=120 ${{env.EXTRA_RUN_ARGS}} + mvn wildfly:start -Djboss-as.home=target/server3 -Dwildfly.port=10190 -Dwildfly.serverConfig=standalone-ha.xml -Dwildfly.javaOpts="-Djboss.socket.binding.port-offset=200 -Djboss.tx.node.id=server3 -Djboss.node.name=server3" -Dstartup-timeout=120 ${{env.EXTRA_RUN_ARGS}} echo "Testing provisioned server..." cd ../client - mvn -fae verify -Dserver.host=${{ env.SERVER_PROVISIONING_SERVER_HOST }}:8080 -Pintegration-testing + mvn -fae verify -Dserver.host=${{ env.SERVER_PROVISIONING_SERVER_HOST }}:8080/client -Pintegration-testing cd ../server - mvn -fae verify -Dserver.host=${{ env.SERVER_PROVISIONING_SERVER_HOST }}:8180 -Pintegration-testing - mvn -fae verify -Dserver.host=${{ env.SERVER_PROVISIONING_SERVER_HOST }}:8280 -Pintegration-testing + mvn -fae verify -Dserver.host=${{ env.SERVER_PROVISIONING_SERVER_HOST }}:8180/server -Pintegration-testing + mvn -fae verify -Dserver.host=${{ env.SERVER_PROVISIONING_SERVER_HOST }}:8280/server -Pintegration-testing echo "Shutting down provisioned server..." cd ../client mvn wildfly:shutdown @@ -107,9 +108,9 @@ jobs: run: | cd quickstarts cd ${{ env.QUICKSTART_PATH }}/client - mvn -fae clean package -Popenshift -DremoteServerUsername="quickstartUser" -DremoteServerPassword="quickstartPwd1!" -DpostgresqlUsername="test" -DpostgresqlPassword="test" + mvn -fae clean package -Popenshift -DremoteServerUsername="quickstartUser" -DremoteServerPassword="quickstartPwd1!" cd ../server - mvn -fae clean package -Popenshift -DpostgresqlUsername="test" -DpostgresqlPassword="test" + mvn -fae clean package -Popenshift shell: bash - name: Run after script env: @@ -177,7 +178,7 @@ jobs: run: | cd quickstarts cd ${{ env.QUICKSTART_PATH }} - mvn -fae clean package -Drelease -Dversion.server=${{ needs.wildfly-build.outputs.wildfly-version }} + mvn -fae clean package -Drelease -Dversion.server=${{ needs.wildfly-build.outputs.wildfly-version }} ${{ env.WILDFLY_SNAPSHOT_EXTRA_PACKAGE_ARGUMENTS }} shell: bash - name: Build, run & test ${{ env.QUICKSTART_PATH }} Quickstart with provisioned-server profile, and built Server version if: ${{ env.TEST_PROVISIONED_SERVER }} @@ -185,27 +186,27 @@ jobs: cd quickstarts cd ${{ env.QUICKSTART_PATH }}/client echo "Building 'client' provisioned server..." - mvn -fae clean package -Pprovisioned-server -DremoteServerUsername="quickstartUser" -DremoteServerPassword="quickstartPwd1!" -DpostgresqlUsername="test" -DpostgresqlPassword="test" -Dversion.server=${{ needs.wildfly-build.outputs.wildfly-version }} - mvn wildfly:start -Djboss-as.home=target/server -Dwildfly.javaOpts="-Djboss.tx.node.id=server1 -Djboss.node.name=server1" -Dstartup-timeout=120 + mvn -fae clean package -Pprovisioned-server -DremoteServerUsername="quickstartUser" -DremoteServerPassword="quickstartPwd1!" -Dversion.server=${{ needs.wildfly-build.outputs.wildfly-version }} ${{ env.WILDFLY_SNAPSHOT_EXTRA_PACKAGE_ARGUMENTS }} + mvn wildfly:start -Djboss-as.home=target/server -Dwildfly.javaOpts="-Djboss.tx.node.id=server1 -Djboss.node.name=server1" -Dstartup-timeout=120 ${{env.EXTRA_RUN_ARGS}} cd ../server echo "Building 'server' provisioned server..." - mvn -fae clean package -Pprovisioned-server -Dwildfly.provisioning.dir=server2 -Djboss-as.home=target/server2 -DpostgresqlUsername="test" -DpostgresqlPassword="test" -Dversion.server=${{ needs.wildfly-build.outputs.wildfly-version }} - mvn -fae package -Pprovisioned-server -Dwildfly.provisioning.dir=server3 -Djboss-as.home=target/server3 -DpostgresqlUsername="test" -DpostgresqlPassword="test" -Dversion.server=${{ needs.wildfly-build.outputs.wildfly-version }} + mvn -fae clean package -Pprovisioned-server -Dwildfly.provisioning.dir=server2 -Djboss-as.home=target/server2 -Dversion.server=${{ needs.wildfly-build.outputs.wildfly-version }} ${{ env.WILDFLY_SNAPSHOT_EXTRA_PACKAGE_ARGUMENTS }} + mvn -fae package -Pprovisioned-server -Dwildfly.provisioning.dir=server3 -Djboss-as.home=target/server3 -Dversion.server=${{ needs.wildfly-build.outputs.wildfly-version }} ${{ env.WILDFLY_SNAPSHOT_EXTRA_PACKAGE_ARGUMENTS }} echo "Add quickstartUser to both 'server' builds..." ./target/server2/bin/add-user.sh -a -u 'quickstartUser' -p 'quickstartPwd1!' -g 'guest,user,JBossAdmin,Users' ./target/server3/bin/add-user.sh -a -u 'quickstartUser' -p 'quickstartPwd1!' -g 'guest,user,JBossAdmin,Users' echo "Add quickstartAdmin to both 'server' builds..." ./target/server2/bin/add-user.sh -a -u 'quickstartAdmin' -p 'adminPwd1!' -g 'guest,user,admin' - ./target/server2/bin/add-user.sh -a -u 'quickstartAdmin' -p 'adminPwd1!' -g 'guest,user,admin' + ./target/server3/bin/add-user.sh -a -u 'quickstartAdmin' -p 'adminPwd1!' -g 'guest,user,admin' echo "Starting provisioned server..." - mvn wildfly:start -Djboss-as.home=target/server2 -Dwildfly.port=10090 -Dwildfly.serverConfig=standalone-ha.xml -Dwildfly.javaOpts="-Djboss.socket.binding.port-offset=100 -Djboss.tx.node.id=server2 -Djboss.node.name=server2" -Dstartup-timeout=120 - mvn wildfly:start -Djboss-as.home=target/server3 -Dwildfly.port=10190 -Dwildfly.serverConfig=standalone-ha.xml -Dwildfly.javaOpts="-Djboss.socket.binding.port-offset=200 -Djboss.tx.node.id=server3 -Djboss.node.name=server3" -Dstartup-timeout=120 + mvn wildfly:start -Djboss-as.home=target/server2 -Dwildfly.port=10090 -Dwildfly.serverConfig=standalone-ha.xml -Dwildfly.javaOpts="-Djboss.socket.binding.port-offset=100 -Djboss.tx.node.id=server2 -Djboss.node.name=server2" -Dstartup-timeout=120 ${{env.EXTRA_RUN_ARGS}} + mvn wildfly:start -Djboss-as.home=target/server3 -Dwildfly.port=10190 -Dwildfly.serverConfig=standalone-ha.xml -Dwildfly.javaOpts="-Djboss.socket.binding.port-offset=200 -Djboss.tx.node.id=server3 -Djboss.node.name=server3" -Dstartup-timeout=120 ${{env.EXTRA_RUN_ARGS}} echo "Testing provisioned server..." cd ../client - mvn -fae verify -Dserver.host=${{ env.SERVER_PROVISIONING_SERVER_HOST }}:8080 -Pintegration-testing + mvn -fae verify -Dserver.host=${{ env.SERVER_PROVISIONING_SERVER_HOST }}:8080/client -Pintegration-testing cd ../server - mvn -fae verify -Dserver.host=${{ env.SERVER_PROVISIONING_SERVER_HOST }}:8180 -Pintegration-testing - mvn -fae verify -Dserver.host=${{ env.SERVER_PROVISIONING_SERVER_HOST }}:8280 -Pintegration-testing + mvn -fae verify -Dserver.host=${{ env.SERVER_PROVISIONING_SERVER_HOST }}:8180/server -Pintegration-testing + mvn -fae verify -Dserver.host=${{ env.SERVER_PROVISIONING_SERVER_HOST }}:8280/server -Pintegration-testing echo "Shutting down provisioned server..." cd ../client mvn wildfly:shutdown @@ -218,9 +219,9 @@ jobs: run: | cd quickstarts cd ${{ env.QUICKSTART_PATH }}/client - mvn -fae clean package -Popenshift -DremoteServerUsername="quickstartUser" -DremoteServerPassword="quickstartPwd1!" -DpostgresqlUsername="test" -DpostgresqlPassword="test" -Dversion.server=${{ needs.wildfly-build.outputs.wildfly-version }} + mvn -fae clean package -Popenshift -DremoteServerUsername="quickstartUser" -DremoteServerPassword="quickstartPwd1!" -Dversion.server=${{ needs.wildfly-build.outputs.wildfly-version }} ${{ env.WILDFLY_SNAPSHOT_EXTRA_PACKAGE_ARGUMENTS }} cd ../server - mvn -fae clean package -Popenshift -DpostgresqlUsername="test" -DpostgresqlPassword="test" -Dversion.server=${{ needs.wildfly-build.outputs.wildfly-version }} + mvn -fae clean package -Popenshift -Dversion.server=${{ needs.wildfly-build.outputs.wildfly-version }} ${{ env.WILDFLY_SNAPSHOT_EXTRA_PACKAGE_ARGUMENTS }} shell: bash - name: Run after script env: diff --git a/batch-processing/pom.xml b/batch-processing/pom.xml index 98af323ac9..acd9e4e1e3 100644 --- a/batch-processing/pom.xml +++ b/batch-processing/pom.xml @@ -48,8 +48,7 @@ 31.0.0.Beta1 ${version.server} - 5.0.0.Final - 4.2.1.Final + 5.0.0.Beta2 @@ -255,19 +254,16 @@ org.wildfly.plugins wildfly-maven-plugin - - - org.wildfly:wildfly-galleon-pack:${version.server} - - - - - batch-jberet - cloud-server - h2-default-datasource - jsf - - + + ${version.server} + + h2-database:default + + + ROOT.war @@ -289,20 +285,17 @@ org.wildfly.plugins wildfly-maven-plugin - - - org.wildfly:wildfly-galleon-pack:${version.server} - - - org.wildfly.cloud:wildfly-cloud-galleon-pack:${version.pack.cloud} - - - - batch-jberet - cloud-server - h2-default-datasource - jsf - + + ${version.server} + cloud + + h2-database:default + + + ROOT.war diff --git a/bmt/pom.xml b/bmt/pom.xml index 2711d78961..122472b7e1 100644 --- a/bmt/pom.xml +++ b/bmt/pom.xml @@ -48,8 +48,7 @@ 31.0.0.Beta1 ${version.server} - 5.0.0.Final - 4.2.1.Final + 5.0.0.Beta2 @@ -195,18 +194,17 @@ org.wildfly.plugins wildfly-maven-plugin - - - org.wildfly:wildfly-galleon-pack:${version.server} - - - - cloud-server - ejb - jsf - embedded-activemq - h2-default-datasource - + + ${version.server} + + embedded-activemq + h2-database:default + + + ROOT.war @@ -228,21 +226,18 @@ org.wildfly.plugins wildfly-maven-plugin - - - org.wildfly:wildfly-galleon-pack:${version.server} - - - org.wildfly.cloud:wildfly-cloud-galleon-pack:${version.pack.cloud} - - - - cloud-server - ejb - jsf - embedded-activemq - h2-default-datasource - + + ${version.server} + cloud + + embedded-activemq + h2-database:default + + + ROOT.war diff --git a/cmt/pom.xml b/cmt/pom.xml index c8365a27c4..5beaf47c04 100644 --- a/cmt/pom.xml +++ b/cmt/pom.xml @@ -47,8 +47,7 @@ 31.0.0.Beta1 ${version.server} - 5.0.0.Final - 4.2.1.Final + 5.0.0.Beta2 @@ -199,18 +198,17 @@ org.wildfly.plugins wildfly-maven-plugin - - - org.wildfly:wildfly-galleon-pack:${version.server} - - - - cloud-server - ejb - jsf - embedded-activemq - h2-default-datasource - + + ${version.server} + + embedded-activemq + h2-database:default + + + ROOT.war @@ -232,21 +230,18 @@ org.wildfly.plugins wildfly-maven-plugin - - - org.wildfly:wildfly-galleon-pack:${version.server} - - - org.wildfly.cloud:wildfly-cloud-galleon-pack:${version.pack.cloud} - - - - cloud-server - ejb - jsf - embedded-activemq - h2-default-datasource - + + ${version.server} + cloud + + embedded-activemq + h2-database:default + + + ROOT.war diff --git a/ee-security/pom.xml b/ee-security/pom.xml index 238097a9b3..d49b1346d5 100644 --- a/ee-security/pom.xml +++ b/ee-security/pom.xml @@ -48,8 +48,7 @@ 31.0.0.Beta1 ${version.server} - 5.0.0.Final - 4.2.1.Final + 5.0.0.Beta2 @@ -179,16 +178,13 @@ org.wildfly.plugins wildfly-maven-plugin - - - org.wildfly:wildfly-galleon-pack:${version.server} - - - - - cloud-server - - + + ${version.server} + + ROOT.war @@ -219,17 +215,14 @@ org.wildfly.plugins wildfly-maven-plugin - - - org.wildfly:wildfly-galleon-pack:${version.server} - - - org.wildfly.cloud:wildfly-cloud-galleon-pack:${version.pack.cloud} - - - - cloud-server - + + ${version.server} + cloud + + ROOT.war diff --git a/ejb-remote/pom.xml b/ejb-remote/pom.xml index f4f60ada12..6d58f83e37 100644 --- a/ejb-remote/pom.xml +++ b/ejb-remote/pom.xml @@ -47,8 +47,7 @@ 31.0.0.Beta1 ${version.server} - 5.0.0.Final - 4.2.1.Final + 5.0.0.Beta2 @@ -168,17 +167,16 @@ org.wildfly.plugins wildfly-maven-plugin - - - org.wildfly:wildfly-galleon-pack:${version.server} - - - - - cloud-server - ejb - - + + ${version.server} + + wildfly-cli + + + ROOT.war @@ -200,18 +198,17 @@ org.wildfly.plugins wildfly-maven-plugin - - - org.wildfly:wildfly-galleon-pack:${version.server} - - - org.wildfly.cloud:wildfly-cloud-galleon-pack:${version.pack.cloud} - - - - cloud-server - ejb - + + ${version.server} + + wildfly-cli + + cloud + + ROOT.war diff --git a/ejb-security-context-propagation/pom.xml b/ejb-security-context-propagation/pom.xml index 1a50d38757..b439f27d1b 100644 --- a/ejb-security-context-propagation/pom.xml +++ b/ejb-security-context-propagation/pom.xml @@ -47,8 +47,7 @@ 31.0.0.Beta1 ${version.server} - 5.0.0.Final - 4.2.1.Final + 5.0.0.Beta2 @@ -191,16 +190,16 @@ org.wildfly.plugins wildfly-maven-plugin - - - org.wildfly:wildfly-galleon-pack:${version.server} - - - - - cloud-server - ejb - + + ${version.server} + + wildfly-cli + + + + * + + @@ -211,7 +210,10 @@ false - + ROOT.war diff --git a/ejb-security-programmatic-auth/pom.xml b/ejb-security-programmatic-auth/pom.xml index fb1f8acce4..c659805430 100644 --- a/ejb-security-programmatic-auth/pom.xml +++ b/ejb-security-programmatic-auth/pom.xml @@ -47,8 +47,7 @@ 31.0.0.Beta1 ${version.server} - 5.0.0.Final - 4.2.1.Final + 5.0.0.Beta2 @@ -215,16 +214,21 @@ org.wildfly.plugins wildfly-maven-plugin - - - org.wildfly:wildfly-galleon-pack:${version.server} - - - - - cloud-server - ejb - + + ${version.server} + + false + + + * + + + wildfly-cli + + @@ -234,7 +238,10 @@ false - + ROOT.war diff --git a/ejb-throws-exception/ear/pom.xml b/ejb-throws-exception/ear/pom.xml index dafa574a01..f77e82e180 100644 --- a/ejb-throws-exception/ear/pom.xml +++ b/ejb-throws-exception/ear/pom.xml @@ -94,17 +94,9 @@ org.wildfly.plugins wildfly-maven-plugin - - - org.wildfly:wildfly-galleon-pack:${version.server} - - - - - cloud-server - ejb - jsf - + + ${version.server} + ROOT.ear diff --git a/ejb-throws-exception/pom.xml b/ejb-throws-exception/pom.xml index 50ae73bf5c..9ae2165c03 100644 --- a/ejb-throws-exception/pom.xml +++ b/ejb-throws-exception/pom.xml @@ -54,8 +54,7 @@ 31.0.0.Beta1 ${version.server} - 5.0.0.Final - 4.2.1.Final + 5.0.0.Beta2 @@ -163,6 +162,7 @@ org.wildfly.plugins wildfly-maven-plugin + ${version.plugin.wildfly} true diff --git a/ejb-timer/pom.xml b/ejb-timer/pom.xml index f23c5120d0..d241f4d508 100644 --- a/ejb-timer/pom.xml +++ b/ejb-timer/pom.xml @@ -46,8 +46,7 @@ 31.0.0.Beta1 ${version.server} - 5.0.0.Final - 4.2.1.Final + 5.0.0.Beta2 @@ -180,17 +179,13 @@ org.wildfly.plugins wildfly-maven-plugin - - - org.wildfly:wildfly-galleon-pack:${version.server} - - - - - cloud-server - ejb - - + + ${version.server} + + ROOT.war @@ -212,18 +207,14 @@ org.wildfly.plugins wildfly-maven-plugin - - - org.wildfly:wildfly-galleon-pack:${version.server} - - - org.wildfly.cloud:wildfly-cloud-galleon-pack:${version.pack.cloud} - - - - cloud-server - ejb - + + ${version.server} + cloud + + ROOT.war diff --git a/ejb-txn-remote-call/README.adoc b/ejb-txn-remote-call/README.adoc index 289c17ac0b..ac25d0958a 100644 --- a/ejb-txn-remote-call/README.adoc +++ b/ejb-txn-remote-call/README.adoc @@ -553,18 +553,15 @@ Instead of using a standard {productName} server distribution, the three {produc ---- cd ${PATH_TO_QUICKSTART_DIR}/ejb-txn-remote-call/client; mvn clean package -Pprovisioned-server \ - -DremoteServerUsername="quickstartUser" -DremoteServerPassword="quickstartPwd1!" \ - -DpostgresqlUsername="test" -DpostgresqlPassword="test" + -DremoteServerUsername="quickstartUser" -DremoteServerPassword="quickstartPwd1!" ---- [source,sh,subs="+quotes,attributes+",options="nowrap"] ---- cd ${PATH_TO_QUICKSTART_DIR}/ejb-txn-remote-call/server; mvn clean package -Pprovisioned-server \ - -Dwildfly.provisioning.dir=server2 -Djboss-as.home=target/server2 \ - -DpostgresqlUsername="test" -DpostgresqlPassword="test"; + -Dwildfly.provisioning.dir=server2 -Djboss-as.home=target/server2 ; mvn package -Pprovisioned-server \ - -Dwildfly.provisioning.dir=server3 -Djboss-as.home=target/server3 \ - -DpostgresqlUsername="test" -DpostgresqlPassword="test" + -Dwildfly.provisioning.dir=server3 -Djboss-as.home=target/server3 ---- The provisioned {productName} servers, with the quickstart deployed, can then be found in the `target/server` directory, and their usage is similar to a standard server distribution, with the simplification that there is never the need to specify the server configuration to be started. @@ -606,7 +603,8 @@ podman run -p 5432:5432 --rm -ePOSTGRES_DB=test -ePOSTGRES_USER=test -ePOSTGRES ---- cd ${PATH_TO_QUICKSTART_DIR}/ejb-txn-remote-call/client; mvn wildfly:start -Djboss-as.home=target/server \ - -Dwildfly.javaOpts="-Djboss.tx.node.id=server1 -Djboss.node.name=server1" + -Dwildfly.javaOpts="-Djboss.tx.node.id=server1 -Djboss.node.name=server1" \ + -Pprovisioned-server -DpostgresqlUsername="test" -DpostgresqlPassword="test" ---- + [source,subs="attributes+",options="nowrap"] @@ -615,7 +613,8 @@ cd ${PATH_TO_QUICKSTART_DIR}/ejb-txn-remote-call/server; mvn wildfly:start -Djboss-as.home=target/server2 \ -Dwildfly.port=10090 \ -Dwildfly.serverConfig=standalone-ha.xml \ - -Dwildfly.javaOpts="-Djboss.socket.binding.port-offset=100 -Djboss.tx.node.id=server2 -Djboss.node.name=server2" + -Dwildfly.javaOpts="-Djboss.socket.binding.port-offset=100 -Djboss.tx.node.id=server2 -Djboss.node.name=server2" \ + -Pprovisioned-server -DpostgresqlUsername="test" -DpostgresqlPassword="test" ---- + [source,subs="attributes+",options="nowrap"] @@ -624,7 +623,8 @@ cd ${PATH_TO_QUICKSTART_DIR}/ejb-txn-remote-call/server; mvn wildfly:start -Djboss-as.home=target/server3 \ -Dwildfly.port=10190 \ -Dwildfly.serverConfig=standalone-ha.xml \ - -Dwildfly.javaOpts="-Djboss.socket.binding.port-offset=200 -Djboss.tx.node.id=server3 -Djboss.node.name=server3" + -Dwildfly.javaOpts="-Djboss.socket.binding.port-offset=200 -Djboss.tx.node.id=server3 -Djboss.node.name=server3" \ + -Pprovisioned-server -DpostgresqlUsername="test" -DpostgresqlPassword="test" ---- . Type the following command to run the `verify` goal with the `integration-testing` profile activated, and specifying the quickstart's URL using the `server.host` system property. @@ -638,13 +638,13 @@ mvn verify -Pintegration-testing [source,subs="attributes+",options="nowrap"] ---- cd ${PATH_TO_QUICKSTART_DIR}/ejb-txn-remote-call/server; -mvn verify -Pintegration-testing -Dserver.host="http://localhost:8180/server" +mvn verify -Pintegration-testing -Dserver.host="http://localhost:8180/" ---- + [source,subs="attributes+",options="nowrap"] ---- cd ${PATH_TO_QUICKSTART_DIR}/ejb-txn-remote-call/server; -mvn verify -Pintegration-testing -Dserver.host="http://localhost:8280/server" +mvn verify -Pintegration-testing -Dserver.host="http://localhost:8280/" ---- . To shut down the {productName} provisioned servers using the {productName} Maven Plugin: diff --git a/ejb-txn-remote-call/charts/client.yaml b/ejb-txn-remote-call/charts/client.yaml index b505fc64db..7d2a2ddeae 100644 --- a/ejb-txn-remote-call/charts/client.yaml +++ b/ejb-txn-remote-call/charts/client.yaml @@ -4,7 +4,7 @@ build: contextDir: ejb-txn-remote-call/client env: - name: MAVEN_ARGS_APPEND - value: "-DremoteServerUsername=quickstartUser -DremoteServerPassword=quickstartPwd1! -DpostgresqlUsername=test -DpostgresqlPassword=test" + value: "-DremoteServerUsername=quickstartUser -DremoteServerPassword=quickstartPwd1!" deploy: enabled: false diff --git a/ejb-txn-remote-call/charts/server.yaml b/ejb-txn-remote-call/charts/server.yaml index 63ae0715be..3873e45900 100644 --- a/ejb-txn-remote-call/charts/server.yaml +++ b/ejb-txn-remote-call/charts/server.yaml @@ -2,9 +2,6 @@ build: uri: https://github.com/wildfly/quickstart.git ref: main contextDir: ejb-txn-remote-call/server - env: - - name: MAVEN_ARGS_APPEND - value: "-DpostgresqlUsername=test -DpostgresqlPassword=test" deploy: enabled: false diff --git a/ejb-txn-remote-call/client/client-cr.yaml b/ejb-txn-remote-call/client/client-cr.yaml index b5f2882323..f3cf259f26 100644 --- a/ejb-txn-remote-call/client/client-cr.yaml +++ b/ejb-txn-remote-call/client/client-cr.yaml @@ -3,5 +3,14 @@ kind: WildFlyServer metadata: name: client spec: + env: + - name: POSTGRESQL_DATABASE + value: test + - name: POSTGRESQL_JNDI + value: "java:jboss/datasources/ejbJtaDs" + - name: POSTGRESQL_PASSWORD + value: test + - name: POSTGRESQL_USER + value: test applicationImage: "client:latest" replicas: 1 \ No newline at end of file diff --git a/ejb-txn-remote-call/client/pom.xml b/ejb-txn-remote-call/client/pom.xml index 5767f4a60a..7a09a7bf22 100644 --- a/ejb-txn-remote-call/client/pom.xml +++ b/ejb-txn-remote-call/client/pom.xml @@ -28,6 +28,7 @@ 7 + ejb-txn-remote-call-client 31.0.0.Final-SNAPSHOT @@ -40,10 +41,8 @@ 30.0.0.Final ${version.server} - 4.2.0.Final + 5.0.0.Beta2 42.7.0 - 5.0.2.Final - 6.0.0.Final @@ -165,12 +164,14 @@ jakarta.jms jakarta.jms-api + provided org.postgresql postgresql ${version.postgresql} + provided @@ -214,6 +215,13 @@ client.war standalone.xml + + + test + java:jboss/datasources/ejbJtaDs + ${postgresqlUsername} + ${postgresqlPassword} + @@ -223,23 +231,14 @@ package - - - org.wildfly:wildfly-galleon-pack:${version.server} - - - org.wildfly:wildfly-datasources-galleon-pack:${version.wildfly-datasources-galleon-pack} - - - - ee-core-profile-server - jaxrs - ejb - jpa - core-tools - - postgresql-driver - + + ${version.server} + + false + + postgresql + + @@ -253,7 +252,6 @@ target/server - scripts/cli.local.properties @@ -261,8 +259,6 @@ ${remoteServerUsername} ${remoteServerPassword} - ${postgresqlUsername} - ${postgresqlPassword} @@ -290,26 +286,15 @@ package - - - org.wildfly:wildfly-galleon-pack:${version.server} - - - org.wildfly:wildfly-datasources-galleon-pack:${version.wildfly-datasources-galleon-pack} - - - org.wildfly.cloud:wildfly-cloud-galleon-pack:${version.wildfly-cloud-galleon-pack} - - - - cloud-server - jaxrs - ejb - jpa - core-tools - - postgresql-driver - + + ${version.server} + + false + cloud + + postgresql + + @@ -323,7 +308,6 @@ target/server - scripts/cli.openshift.properties @@ -331,8 +315,6 @@ ${remoteServerUsername} ${remoteServerPassword} - ${postgresqlUsername} - ${postgresqlPassword} diff --git a/ejb-txn-remote-call/client/src/test/java/org/jboss/as/quickstarts/ejb/BasicRuntimeIT.java b/ejb-txn-remote-call/client/src/test/java/org/jboss/as/quickstarts/ejb/BasicRuntimeIT.java index ab3810eba5..c812c147a6 100644 --- a/ejb-txn-remote-call/client/src/test/java/org/jboss/as/quickstarts/ejb/BasicRuntimeIT.java +++ b/ejb-txn-remote-call/client/src/test/java/org/jboss/as/quickstarts/ejb/BasicRuntimeIT.java @@ -34,8 +34,7 @@ */ public class BasicRuntimeIT { - private static final String DEFAULT_SERVER_HOST = "http://localhost:8080/"; - private static final String DEFAULT_APPLICATION = "/client"; + private static final String DEFAULT_SERVER_HOST = "http://localhost:8080/client"; @Test public void testHTTPEndpointIsAvailable() throws IOException, InterruptedException, URISyntaxException { @@ -46,17 +45,17 @@ public void testHTTPEndpointIsAvailable() throws IOException, InterruptedExcepti if (serverHost == null) { serverHost = DEFAULT_SERVER_HOST; } - testEndpoint(serverHost, DEFAULT_APPLICATION,"/remote-outbound-stateless",200); - testEndpoint(serverHost, DEFAULT_APPLICATION,"/remote-outbound-notx-stateless",200); - testEndpoint(serverHost, DEFAULT_APPLICATION,"/direct-stateless",200); - testEndpoint(serverHost, DEFAULT_APPLICATION,"/direct-stateless-http",200); - testEndpoint(serverHost, DEFAULT_APPLICATION,"/remote-outbound-notx-stateful",200); - testEndpoint(serverHost, DEFAULT_APPLICATION,"/remote-outbound-fail-stateless",200); + testEndpoint(serverHost, "/remote-outbound-stateless",200); + testEndpoint(serverHost, "/remote-outbound-notx-stateless",200); + testEndpoint(serverHost, "/direct-stateless",200); + testEndpoint(serverHost, "/direct-stateless-http",200); + testEndpoint(serverHost, "/remote-outbound-notx-stateful",200); + testEndpoint(serverHost, "/remote-outbound-fail-stateless",200); } - private void testEndpoint(String serverHost, String application, String endpoint, int expectedCode) throws URISyntaxException, IOException, InterruptedException { + private void testEndpoint(String serverHost, String endpoint, int expectedCode) throws URISyntaxException, IOException, InterruptedException { final HttpRequest request = HttpRequest.newBuilder() - .uri(new URI(serverHost + application + endpoint)) + .uri(new URI(serverHost + endpoint)) .GET() .build(); final HttpClient client = HttpClient.newBuilder() diff --git a/ejb-txn-remote-call/pom.xml b/ejb-txn-remote-call/pom.xml index 7ba2fe5eae..99a320be84 100644 --- a/ejb-txn-remote-call/pom.xml +++ b/ejb-txn-remote-call/pom.xml @@ -28,7 +28,7 @@ 7 - + ejb-txn-remote-call 31.0.0.Final-SNAPSHOT pom diff --git a/ejb-txn-remote-call/server/pom.xml b/ejb-txn-remote-call/server/pom.xml index c13a51b396..a753a7503e 100644 --- a/ejb-txn-remote-call/server/pom.xml +++ b/ejb-txn-remote-call/server/pom.xml @@ -28,6 +28,7 @@ 7 + ejb-txn-remote-call-server 31.0.0.Final-SNAPSHOT @@ -41,9 +42,7 @@ ${version.server} 7.0.0.Final - 4.2.0.Final - 5.0.2.Final - 6.0.0.Final + 5.0.0.Beta2 @@ -202,6 +201,13 @@ server.war standalone-ha.xml + + + test + java:jboss/datasources/ejbJtaDs + ${postgresqlUsername} + ${postgresqlPassword} + @@ -211,50 +217,20 @@ package - - - org.wildfly:wildfly-galleon-pack:${version.server} - - - org.wildfly:wildfly-datasources-galleon-pack:${version.wildfly-datasources-galleon-pack} - - - - ee-core-profile-server - jaxrs - ejb - ejb-dist-cache - jpa-distributed - core-tools - - postgresql-driver - - - ejb-local-cache - + true + + ${version.server} + + postgresql + wildfly-cli + + + false + ha + standalone-ha.xml - - run-script - package - - execute-commands - - - true - - - - - scripts/cli.local.properties - - - ${postgresqlUsername} - ${postgresqlPassword} - - - @@ -278,51 +254,16 @@ package - - - org.wildfly:wildfly-galleon-pack:${version.server} - - - org.wildfly:wildfly-datasources-galleon-pack:${version.wildfly-datasources-galleon-pack} - - - org.wildfly.cloud:wildfly-cloud-galleon-pack:${version.wildfly-cloud-galleon-pack} - - - - ee-core-profile-server - jaxrs - ejb - ejb-dist-cache - jpa-distributed - core-tools - - postgresql-driver - - - ejb-local-cache - - - - - run-script - package - - execute-commands - - - true - target/server - - - - - scripts/cli.openshift.properties - - - ${postgresqlUsername} - ${postgresqlPassword} - + + ${version.server} + + postgresql + + cloud + + false + ha + diff --git a/ejb-txn-remote-call/server/server-cr.yaml b/ejb-txn-remote-call/server/server-cr.yaml index 119c26e0a0..d7b82b20a0 100644 --- a/ejb-txn-remote-call/server/server-cr.yaml +++ b/ejb-txn-remote-call/server/server-cr.yaml @@ -3,5 +3,14 @@ kind: WildFlyServer metadata: name: server spec: + env: + - name: POSTGRESQL_DATABASE + value: test + - name: POSTGRESQL_JNDI + value: "java:jboss/datasources/ejbJtaDs" + - name: POSTGRESQL_PASSWORD + value: test + - name: POSTGRESQL_USER + value: test applicationImage: "server:latest" replicas: 2 \ No newline at end of file diff --git a/ejb-txn-remote-call/server/src/test/java/org/jboss/as/quickstarts/ejb/BasicRuntimeIT.java b/ejb-txn-remote-call/server/src/test/java/org/jboss/as/quickstarts/ejb/BasicRuntimeIT.java index 3d5d731fb5..a89b0f713f 100644 --- a/ejb-txn-remote-call/server/src/test/java/org/jboss/as/quickstarts/ejb/BasicRuntimeIT.java +++ b/ejb-txn-remote-call/server/src/test/java/org/jboss/as/quickstarts/ejb/BasicRuntimeIT.java @@ -35,7 +35,6 @@ public class BasicRuntimeIT { private static final String DEFAULT_SERVER_HOST = "http://localhost:8180/server"; - private static final String DEFAULT_APPLICATION = "/server"; @Test public void testHTTPEndpointIsAvailable() throws IOException, InterruptedException, URISyntaxException { @@ -46,12 +45,12 @@ public void testHTTPEndpointIsAvailable() throws IOException, InterruptedExcepti if (serverHost == null) { serverHost = DEFAULT_SERVER_HOST; } - testEndpoint(serverHost, DEFAULT_APPLICATION,"/commits",200); + testEndpoint(serverHost, "/commits",200); } - private void testEndpoint(String serverHost, String application, String endpoint, int expectedCode) throws URISyntaxException, IOException, InterruptedException { + private void testEndpoint(String serverHost, String endpoint, int expectedCode) throws URISyntaxException, IOException, InterruptedException { final HttpRequest request = HttpRequest.newBuilder() - .uri(new URI(serverHost + application + endpoint)) + .uri(new URI(serverHost + endpoint)) .GET() .build(); final HttpClient client = HttpClient.newBuilder() diff --git a/helloworld-jms/pom.xml b/helloworld-jms/pom.xml index 67c139eb84..8d2c01cd0b 100644 --- a/helloworld-jms/pom.xml +++ b/helloworld-jms/pom.xml @@ -47,8 +47,7 @@ 31.0.0.Beta1 ${version.server} - 5.0.0.Final - 4.2.1.Final + 5.0.0.Beta2 5.10.0 @@ -166,16 +165,17 @@ org.wildfly.plugins wildfly-maven-plugin - - - org.wildfly:wildfly-galleon-pack:${version.server} - - - - cloud-server - ejb - embedded-activemq - + + ${version.server} + + embedded-activemq + wildfly-cli + + + ROOT.war @@ -206,19 +206,17 @@ org.wildfly.plugins wildfly-maven-plugin - - - org.wildfly:wildfly-galleon-pack:${version.server} - - - org.wildfly.cloud:wildfly-cloud-galleon-pack:${version.pack.cloud} - - - - cloud-server - ejb - embedded-activemq - + + ${version.server} + cloud + + embedded-activemq + + + ROOT.war diff --git a/helloworld-mdb/pom.xml b/helloworld-mdb/pom.xml index 8688c01e0e..7774ef9636 100644 --- a/helloworld-mdb/pom.xml +++ b/helloworld-mdb/pom.xml @@ -48,8 +48,7 @@ 31.0.0.Beta1 ${version.server} - 5.0.0.Final - 4.2.1.Final + 5.0.0.Beta2 5.10.0 @@ -183,16 +182,16 @@ org.wildfly.plugins wildfly-maven-plugin - - - org.wildfly:wildfly-galleon-pack:${version.server} - - - - cloud-server - ejb - embedded-activemq - + + ${version.server} + + embedded-activemq + + + ROOT.war @@ -214,19 +213,17 @@ org.wildfly.plugins wildfly-maven-plugin - - - org.wildfly:wildfly-galleon-pack:${version.server} - - - org.wildfly.cloud:wildfly-cloud-galleon-pack:${version.pack.cloud} - - - - cloud-server - ejb - embedded-activemq - + + ${version.server} + cloud + + embedded-activemq + + + ROOT.war diff --git a/helloworld-singleton/pom.xml b/helloworld-singleton/pom.xml index 0070c0f538..a90be92804 100644 --- a/helloworld-singleton/pom.xml +++ b/helloworld-singleton/pom.xml @@ -48,8 +48,7 @@ 31.0.0.Beta1 ${version.server} - 5.0.0.Final - 4.2.1.Final + 5.0.0.Beta2 5.9.1 @@ -167,16 +166,9 @@ org.wildfly.plugins wildfly-maven-plugin - - - org.wildfly:wildfly-galleon-pack:${version.server} - - - - cloud-server - ejb - jsf - + + ${version.server} + ROOT.war @@ -198,19 +190,10 @@ org.wildfly.plugins wildfly-maven-plugin - - - org.wildfly:wildfly-galleon-pack:${version.server} - - - org.wildfly.cloud:wildfly-cloud-galleon-pack:${version.pack.cloud} - - - - cloud-server - ejb - jsf - + + ${version.server} + cloud + ROOT.war diff --git a/helloworld-ws/pom.xml b/helloworld-ws/pom.xml index 24d7286941..1c4c168271 100644 --- a/helloworld-ws/pom.xml +++ b/helloworld-ws/pom.xml @@ -47,8 +47,7 @@ 31.0.0.Beta1 ${version.server} - 5.0.0.Final - 4.2.1.Final + 5.0.0.Beta2 @@ -186,15 +185,13 @@ org.wildfly.plugins wildfly-maven-plugin - - - org.wildfly:wildfly-galleon-pack:${version.server} - - - - cloud-server - webservices - + + ${version.server} + + ROOT.war @@ -217,18 +214,14 @@ wildfly-maven-plugin ${version.plugin.wildfly} - - - org.wildfly:wildfly-galleon-pack:${version.server} - - - org.wildfly.cloud:wildfly-cloud-galleon-pack:${version.pack.cloud} - - - - cloud-server - webservices - + + ${version.server} + cloud + + ROOT.war diff --git a/helloworld/pom.xml b/helloworld/pom.xml index 8ed2c02e3c..8ede3df4de 100644 --- a/helloworld/pom.xml +++ b/helloworld/pom.xml @@ -47,8 +47,7 @@ 31.0.0.Beta1 ${version.server} - 5.0.0.Final - 4.2.1.Final + 5.0.0.Beta2 @@ -156,16 +155,13 @@ org.wildfly.plugins wildfly-maven-plugin - - - org.wildfly:wildfly-galleon-pack:${version.server} - - - - - cloud-server - - + + ${version.server} + + ROOT.war @@ -187,17 +183,14 @@ org.wildfly.plugins wildfly-maven-plugin - - - org.wildfly:wildfly-galleon-pack:${version.server} - - - org.wildfly.cloud:wildfly-cloud-galleon-pack:${version.pack.cloud} - - - - cloud-server - + + ${version.server} + cloud + + ROOT.war diff --git a/hibernate/pom.xml b/hibernate/pom.xml index 1e17adb13c..159e5cf8ef 100644 --- a/hibernate/pom.xml +++ b/hibernate/pom.xml @@ -48,9 +48,7 @@ 31.0.0.Beta1 ${version.server} - 5.0.0.Final - 6.0.0.Final - 4.2.1.Final + 5.0.0.Beta2 5.9.1 @@ -221,19 +219,18 @@ org.wildfly.plugins wildfly-maven-plugin - - - org.wildfly:wildfly-galleon-pack:${version.server} - - - org.wildfly:wildfly-datasources-galleon-pack:${version.pack.datasources} - - - - cloud-server - h2-datasource - jsf - + + ${version.server} + + false + + h2-database + + + ROOT.war @@ -264,22 +261,19 @@ org.wildfly.plugins wildfly-maven-plugin - - - org.wildfly:wildfly-galleon-pack:${version.server} - - - org.wildfly.cloud:wildfly-cloud-galleon-pack:${version.pack.cloud} - - - org.wildfly:wildfly-datasources-galleon-pack:${version.pack.datasources} - - - - cloud-server - h2-datasource - jsf - + + ${version.server} + cloud + + false + + h2-database + + + ROOT.war diff --git a/http-custom-mechanism/pom.xml b/http-custom-mechanism/pom.xml index e352955df8..0c2853766f 100644 --- a/http-custom-mechanism/pom.xml +++ b/http-custom-mechanism/pom.xml @@ -53,8 +53,7 @@ 31.0.0.Beta1 ${version.server} - 5.0.0.Final - 4.2.1.Final + 5.0.0.Beta2 diff --git a/http-custom-mechanism/webapp/pom.xml b/http-custom-mechanism/webapp/pom.xml index 26aa230fc1..b6025587a4 100644 --- a/http-custom-mechanism/webapp/pom.xml +++ b/http-custom-mechanism/webapp/pom.xml @@ -71,16 +71,16 @@ org.wildfly.plugins wildfly-maven-plugin - - - org.wildfly:wildfly-galleon-pack:${version.server} - - - - - cloud-server - - + + ${version.server} + + wildfly-cli + + + ROOT.war diff --git a/jaxrs-client/pom.xml b/jaxrs-client/pom.xml index 5963772a1a..5e514cf5c3 100644 --- a/jaxrs-client/pom.xml +++ b/jaxrs-client/pom.xml @@ -48,8 +48,7 @@ 31.0.0.Beta1 ${version.server} - 5.0.0.Final - 4.2.1.Final + 5.0.0.Beta2 9.37.1 5.10.1 @@ -141,14 +140,6 @@ ${version.plugin.wildfly} ${jboss.home} - - - org.wildfly:wildfly-galleon-pack:${version.server} - - - - jaxrs-server - @@ -170,12 +161,14 @@ org.wildfly.plugins wildfly-maven-plugin - + ROOT.war - - jaxrs-server - cloud-server - + + ${version.server} + @@ -196,12 +189,15 @@ org.wildfly.plugins wildfly-maven-plugin - + ROOT.war - - jaxrs-server - cloud-server - + + ${version.server} + cloud + diff --git a/jaxrs-jwt/pom.xml b/jaxrs-jwt/pom.xml index e378610f94..5ad46d28b4 100644 --- a/jaxrs-jwt/pom.xml +++ b/jaxrs-jwt/pom.xml @@ -47,8 +47,7 @@ 31.0.0.Beta1 ${version.server} - 5.0.0.Final - 4.2.1.Final + 5.0.0.Beta2 9.37.1 5.10.1 @@ -134,6 +133,7 @@ + @@ -142,14 +142,6 @@ ${version.plugin.wildfly} ${jboss.home} - - - org.wildfly:wildfly-galleon-pack:${version.server} - - - - ee-core-profile-server - @@ -158,12 +150,6 @@ - - - org.wildfly.plugins - wildfly-maven-plugin - - @@ -175,12 +161,14 @@ org.wildfly.plugins wildfly-maven-plugin - + ROOT.war - - ee-core-profile-server - cloud-server - + + ${version.server} + @@ -211,12 +199,15 @@ org.wildfly.plugins wildfly-maven-plugin - - ROOT.war - - ee-core-profile-server - cloud-server - + + ROOT.war + + ${version.server} + cloud + diff --git a/jaxws-ejb/pom.xml b/jaxws-ejb/pom.xml index 6c4b33ade7..3e849d5501 100644 --- a/jaxws-ejb/pom.xml +++ b/jaxws-ejb/pom.xml @@ -47,8 +47,7 @@ 31.0.0.Beta1 ${version.server} - 5.0.0.Final - 4.2.1.Final + 5.0.0.Beta2 @@ -196,16 +195,13 @@ org.wildfly.plugins wildfly-maven-plugin - - - org.wildfly:wildfly-galleon-pack:${version.server} - - - - cloud-server - ejb - webservices - + + ${version.server} + + ROOT.war @@ -228,19 +224,14 @@ wildfly-maven-plugin ${version.plugin.wildfly} - - - org.wildfly:wildfly-galleon-pack:${version.server} - - - org.wildfly.cloud:wildfly-cloud-galleon-pack:${version.pack.cloud} - - - - cloud-server - webservices - ejb - + + ${version.server} + cloud + + ROOT.war diff --git a/jaxws-retail/pom.xml b/jaxws-retail/pom.xml index 250b8c8def..7906e79d8b 100644 --- a/jaxws-retail/pom.xml +++ b/jaxws-retail/pom.xml @@ -46,8 +46,7 @@ 31.0.0.Beta1 ${version.server} - 5.0.0.Final - 4.2.1.Final + 5.0.0.Beta2 1.3.0.Final @@ -223,16 +222,13 @@ org.wildfly.plugins wildfly-maven-plugin - - - org.wildfly:wildfly-galleon-pack:${version.server} - - - - cloud-server - ejb - webservices - + + ${version.server} + + ROOT.war @@ -255,19 +251,14 @@ wildfly-maven-plugin ${version.plugin.wildfly} - - - org.wildfly:wildfly-galleon-pack:${version.server} - - - org.wildfly.cloud:wildfly-cloud-galleon-pack:${version.pack.cloud} - - - - cloud-server - webservices - ejb - + + ${version.server} + cloud + + ROOT.war diff --git a/jsonp/pom.xml b/jsonp/pom.xml index 6168e8710d..e298608512 100644 --- a/jsonp/pom.xml +++ b/jsonp/pom.xml @@ -47,8 +47,7 @@ 31.0.0.Beta1 ${version.server} - 5.0.0.Final - 4.2.1.Final + 5.0.0.Beta2 @@ -208,17 +207,13 @@ org.wildfly.plugins wildfly-maven-plugin - - - org.wildfly:wildfly-galleon-pack:${version.server} - - - - - jsf - cloud-server - - + + ${version.server} + + ROOT.war @@ -240,18 +235,14 @@ org.wildfly.plugins wildfly-maven-plugin - - - org.wildfly:wildfly-galleon-pack:${version.server} - - - org.wildfly.cloud:wildfly-cloud-galleon-pack:${version.pack.cloud} - - - - jsf - cloud-server - + + ${version.server} + cloud + + ROOT.war diff --git a/kitchensink/pom.xml b/kitchensink/pom.xml index 9e464a58f6..620cd1e667 100644 --- a/kitchensink/pom.xml +++ b/kitchensink/pom.xml @@ -47,8 +47,7 @@ 31.0.0.Beta1 ${version.server} - 5.0.0.Final - 4.2.1.Final + 5.0.0.Beta2 @@ -289,17 +288,13 @@ org.wildfly.plugins wildfly-maven-plugin - - - org.wildfly:wildfly-galleon-pack:${version.server} - - - - cloud-server - h2-driver - ejb - jsf - + + ${version.server} + + ROOT.war @@ -321,20 +316,14 @@ org.wildfly.plugins wildfly-maven-plugin - - - org.wildfly:wildfly-galleon-pack:${version.server} - - - org.wildfly.cloud:wildfly-cloud-galleon-pack:${version.pack.cloud} - - - - cloud-server - h2-driver - ejb - jsf - + + ${version.server} + cloud + + ROOT.war diff --git a/logging/README.adoc b/logging/README.adoc index 8e066f1331..4b934a5323 100644 --- a/logging/README.adoc +++ b/logging/README.adoc @@ -70,11 +70,12 @@ Now you have deployed the quickstart with the default configuration, you run a m . Review the `configure-logging.cli` file in the root of this quickstart directory. This script configures the logging subsystem in the server configuration file. It configures the file handlers, creates the logger for our quickstart and sets the level to TRACE. It also assigns the handlers for our quickstart to our logger. +. The CLI script references the logging formatter with the property `${formatter}`. On bare-metal this formatter is named `PATTERN`, on OpenShift it is named `OPENSHIFT`. A properties file is to be provided when executing the CLI to resolve the `formatter` property according to the execution context. The file `cli.properties` is to be used when executing the script on bare-metal. `cli-openshift.properties` is to be used when executing the script on OpenShift. . Open a new terminal, navigate to the root directory of this quickstart, and run the following command, replacing `__{jbossHomeName}__` with the path to your server: + [source,subs="+quotes,attributes+",options="nowrap"] ---- -$ __{jbossHomeName}__/bin/jboss-cli.sh --connect --file=configure-logging.cli +$ __{jbossHomeName}__/bin/jboss-cli.sh --connect --file=configure-logging.cli --resolve-parameter-values=true --properties=cli.properties ---- + NOTE: For Windows, use the `__{jbossHomeName}__\bin\jboss-cli.bat` script. diff --git a/logging/cli-openshift.properties b/logging/cli-openshift.properties new file mode 100644 index 0000000000..23c5ac90c4 --- /dev/null +++ b/logging/cli-openshift.properties @@ -0,0 +1 @@ +formatter=OPENSHIFT \ No newline at end of file diff --git a/logging/cli.properties b/logging/cli.properties new file mode 100644 index 0000000000..d3c0192cd6 --- /dev/null +++ b/logging/cli.properties @@ -0,0 +1 @@ +formatter=PATTERN \ No newline at end of file diff --git a/logging/configure-logging.cli b/logging/configure-logging.cli index 816c0ef6ff..6fabba41c6 100644 --- a/logging/configure-logging.cli +++ b/logging/configure-logging.cli @@ -1,10 +1,10 @@ # Add the periodic rotating file handlers corresponding to those added to the logging properties file -/subsystem=logging/file-handler=FILE_QS_TRACE:add(append=false, level=TRACE, named-formatter=PATTERN, file={"path"=>"quickstart-trace.log", "relative-to"=>"jboss.server.log.dir"}) -/subsystem=logging/file-handler=FILE_QS_DEBUG:add(append=false, level=DEBUG, named-formatter=PATTERN, file={"path"=>"quickstart-debug.log", "relative-to"=>"jboss.server.log.dir"}) -/subsystem=logging/file-handler=FILE_QS_INFO:add(append=false, level=INFO, named-formatter=PATTERN, file={"path"=>"quickstart-info.log", "relative-to"=>"jboss.server.log.dir"}) -/subsystem=logging/file-handler=FILE_QS_WARN:add(append=false, level=WARN, named-formatter=PATTERN, file={"path"=>"quickstart-warn.log", "relative-to"=>"jboss.server.log.dir"}) -/subsystem=logging/file-handler=FILE_QS_ERROR:add(append=false, level=ERROR, named-formatter=PATTERN, file={"path"=>"quickstart-error.log", "relative-to"=>"jboss.server.log.dir"}) -/subsystem=logging/file-handler=FILE_QS_FATAL:add(append=false, level=FATAL, named-formatter=PATTERN, file={"path"=>"quickstart-fatal.log", "relative-to"=>"jboss.server.log.dir"}) +/subsystem=logging/file-handler=FILE_QS_TRACE:add(append=false, level=TRACE, named-formatter=${formatter}, file={"path"=>"quickstart-trace.log", "relative-to"=>"jboss.server.log.dir"}) +/subsystem=logging/file-handler=FILE_QS_DEBUG:add(append=false, level=DEBUG, named-formatter=${formatter}, file={"path"=>"quickstart-debug.log", "relative-to"=>"jboss.server.log.dir"}) +/subsystem=logging/file-handler=FILE_QS_INFO:add(append=false, level=INFO, named-formatter=${formatter}, file={"path"=>"quickstart-info.log", "relative-to"=>"jboss.server.log.dir"}) +/subsystem=logging/file-handler=FILE_QS_WARN:add(append=false, level=WARN, named-formatter=${formatter}, file={"path"=>"quickstart-warn.log", "relative-to"=>"jboss.server.log.dir"}) +/subsystem=logging/file-handler=FILE_QS_ERROR:add(append=false, level=ERROR, named-formatter=${formatter}, file={"path"=>"quickstart-error.log", "relative-to"=>"jboss.server.log.dir"}) +/subsystem=logging/file-handler=FILE_QS_FATAL:add(append=false, level=FATAL, named-formatter=${formatter}, file={"path"=>"quickstart-fatal.log", "relative-to"=>"jboss.server.log.dir"}) # Create the logger for our quickstart class and assign the handlers /subsystem=logging/logger=org.jboss.as.quickstarts.logging:add(handlers=[FILE_QS_TRACE,FILE_QS_DEBUG,FILE_QS_INFO,FILE_QS_WARN,FILE_QS_ERROR,FILE_QS_FATAL]) diff --git a/logging/pom.xml b/logging/pom.xml index 469a86554c..a759a95437 100644 --- a/logging/pom.xml +++ b/logging/pom.xml @@ -47,8 +47,7 @@ 31.0.0.Beta1 ${version.server} - 5.0.0.Final - 4.2.1.Final + 5.0.0.Beta2 5.10.1 @@ -142,17 +141,9 @@ org.wildfly.plugins wildfly-maven-plugin + ${version.plugin.wildfly} ${jboss.home} - - - org.wildfly:wildfly-galleon-pack:${version.server} - - - - ee-core-profile-server - core-tools - false @@ -170,21 +161,26 @@ org.wildfly.plugins wildfly-maven-plugin + ${version.plugin.wildfly} - + ROOT.war - - ee-core-profile-server - cloud-server - + + ${version.server} + - - false + + ${project.basedir}${file.separator}cli.properties + + true @@ -206,21 +202,27 @@ org.wildfly.plugins wildfly-maven-plugin + ${version.plugin.wildfly} - - ROOT.war - - ee-core-profile-server - cloud-server - + + ROOT.war + + ${version.server} + cloud + - - false + + ${project.basedir}${file.separator}cli-openshift.properties + + true diff --git a/mail/pom.xml b/mail/pom.xml index ea7545c2f2..4a8744f8e7 100644 --- a/mail/pom.xml +++ b/mail/pom.xml @@ -48,8 +48,7 @@ 31.0.0.Beta1 ${version.server} - 5.0.0.Final - 4.2.1.Final + 5.0.0.Beta2 4.15.0 5.6.2 @@ -200,19 +199,13 @@ org.wildfly.plugins wildfly-maven-plugin - - - org.wildfly:wildfly-galleon-pack:${version.server} - - - - - core-tools - core-server - mail - jsf - - + + ${version.server} + + ROOT.war diff --git a/microprofile-config/pom.xml b/microprofile-config/pom.xml index e57a84d6d4..f20f2cd58d 100644 --- a/microprofile-config/pom.xml +++ b/microprofile-config/pom.xml @@ -24,9 +24,7 @@ ${version.server} ${version.server} - 5.0.0.Final - 4.2.1.Final - 10.0.0.Final + 5.0.0.Beta2 @@ -171,11 +169,6 @@ wildfly-maven-plugin ${version.plugin.wildfly} - - org.wildfly.plugins - wildfly-jar-maven-plugin - ${version.plugin.wildfly-jar} - @@ -199,16 +192,17 @@ org.wildfly.plugins - wildfly-jar-maven-plugin + wildfly-maven-plugin - wildfly@maven(org.jboss.universe:community-universe)#${version.server} - - jaxrs-server - microprofile-config - - - true - + + ${version.server} + + true + + ROOT.war @@ -229,18 +223,14 @@ org.wildfly.plugins wildfly-maven-plugin - - - org.wildfly:wildfly-galleon-pack:${version.server} - - - org.wildfly.cloud:wildfly-cloud-galleon-pack:${version.pack.cloud} - - - - cloud-server - microprofile-config - + + ${version.server} + cloud + + ROOT.war diff --git a/microprofile-fault-tolerance/pom.xml b/microprofile-fault-tolerance/pom.xml index c94d42cfdd..b6a412f7f4 100644 --- a/microprofile-fault-tolerance/pom.xml +++ b/microprofile-fault-tolerance/pom.xml @@ -57,9 +57,7 @@ ${version.server} ${version.server} - 5.0.0.Final - 4.2.1.Final - 10.0.0.Final + 5.0.0.Beta2 4.3.1 @@ -211,11 +209,6 @@ wildfly-maven-plugin ${version.plugin.wildfly} - - org.wildfly.plugins - wildfly-jar-maven-plugin - ${version.plugin.wildfly-jar} - org.asciidoctor asciidoctor-maven-plugin @@ -238,16 +231,17 @@ org.wildfly.plugins - wildfly-jar-maven-plugin + wildfly-maven-plugin - wildfly@maven(org.jboss.universe:community-universe)#${version.server} - - jaxrs-server - microprofile-fault-tolerance - - - true - + + ${version.server} + + true + + ROOT.war @@ -268,18 +262,14 @@ org.wildfly.plugins wildfly-maven-plugin - - - org.wildfly:wildfly-galleon-pack:${version.server} - - - org.wildfly.cloud:wildfly-cloud-galleon-pack:${version.pack.cloud} - - - - cloud-server - microprofile-fault-tolerance - + + ${version.server} + cloud + + ROOT.war diff --git a/microprofile-health/pom.xml b/microprofile-health/pom.xml index fc3e1ebe4a..a902324903 100644 --- a/microprofile-health/pom.xml +++ b/microprofile-health/pom.xml @@ -23,9 +23,7 @@ ${version.server} ${version.server} - 5.0.0.Final - 4.2.1.Final - 10.0.0.Final + 5.0.0.Beta2 @@ -157,11 +155,6 @@ wildfly-maven-plugin ${version.plugin.wildfly} - - org.wildfly.plugins - wildfly-jar-maven-plugin - ${version.plugin.wildfly-jar} - @@ -172,7 +165,7 @@ - ${version.microprofile.bom} + ${version.bom.microprofile} @@ -186,16 +179,17 @@ org.wildfly.plugins - wildfly-jar-maven-plugin + wildfly-maven-plugin - wildfly@maven(org.jboss.universe:community-universe)#${version.server} - - jaxrs-server - microprofile-health - - - true - + + ${version.server} + + true + + ROOT.war @@ -216,18 +210,14 @@ org.wildfly.plugins wildfly-maven-plugin - - - org.wildfly:wildfly-galleon-pack:${version.server} - - - org.wildfly.cloud:wildfly-cloud-galleon-pack:${version.pack.cloud} - - - - cloud-server - microprofile-health - + + ${version.server} + cloud + + ROOT.war diff --git a/microprofile-jwt/pom.xml b/microprofile-jwt/pom.xml index b50154616c..756ff448c5 100644 --- a/microprofile-jwt/pom.xml +++ b/microprofile-jwt/pom.xml @@ -48,9 +48,7 @@ ${version.server} ${version.server} - 5.0.0.Final - 4.2.1.Final - 10.0.0.Final + 5.0.0.Beta2 8.5.1.redhat-00001 1.1.6 @@ -217,11 +215,6 @@ wildfly-maven-plugin ${version.plugin.wildfly} - - org.wildfly.plugins - wildfly-jar-maven-plugin - ${version.plugin.wildfly-jar} - @@ -247,26 +240,27 @@ - org.wildfly.plugins - wildfly-jar-maven-plugin - - wildfly@maven(org.jboss.universe:community-universe)#${version.server} - - jaxrs-server - microprofile-jwt - - - true - - - - - - package - - - - + org.wildfly.plugins + wildfly-maven-plugin + + + ${version.server} + + true + + ROOT.war + + + + + package + + + + @@ -279,18 +273,14 @@ org.wildfly.plugins wildfly-maven-plugin - - - org.wildfly:wildfly-galleon-pack:${version.server} - - - org.wildfly.cloud:wildfly-cloud-galleon-pack:${version.pack.cloud} - - - - cloud-server - microprofile-jwt - + + ${version.server} + cloud + + ROOT.war diff --git a/microprofile-lra/pom.xml b/microprofile-lra/pom.xml index c8f6078e02..f1acf25671 100644 --- a/microprofile-lra/pom.xml +++ b/microprofile-lra/pom.xml @@ -23,9 +23,7 @@ ${version.server} ${version.server} - 5.0.0.Final - 4.2.1.Final - 10.0.0.Final + 5.0.0.Beta2 @@ -152,11 +150,6 @@ wildfly-maven-plugin ${version.plugin.wildfly} - - org.wildfly.plugins - wildfly-jar-maven-plugin - ${version.plugin.wildfly-jar} - @@ -168,17 +161,20 @@ org.wildfly.plugins - wildfly-jar-maven-plugin + wildfly-maven-plugin - wildfly@maven(org.jboss.universe:community-universe)#${version.server} - - jaxrs-server - microprofile-lra-coordinator - microprofile-lra-participant - - - true - + + ${version.server} + + lra-coordinator + + + true + + ROOT.war @@ -199,19 +195,17 @@ org.wildfly.plugins wildfly-maven-plugin - - - org.wildfly:wildfly-galleon-pack:${version.server} - - - org.wildfly.cloud:wildfly-cloud-galleon-pack:${version.pack.cloud} - - - - jaxrs-server - microprofile-lra-coordinator - microprofile-lra-participant - + + ${version.server} + cloud + + lra-coordinator + + + ROOT.war diff --git a/microprofile-openapi/pom.xml b/microprofile-openapi/pom.xml index b2c595ef2f..115cb68419 100644 --- a/microprofile-openapi/pom.xml +++ b/microprofile-openapi/pom.xml @@ -25,9 +25,7 @@ ${version.server} ${version.server} - 5.0.0.Final - 4.2.1.Final - 10.0.0.Final + 5.0.0.Beta2 @@ -134,11 +132,6 @@ wildfly-maven-plugin ${version.plugin.wildfly} - - org.wildfly.plugins - wildfly-jar-maven-plugin - ${version.plugin.wildfly-jar} - @@ -150,25 +143,29 @@ org.wildfly.plugins - wildfly-jar-maven-plugin + wildfly-maven-plugin - wildfly@maven(org.jboss.universe:community-universe)#${version.server} - - jaxrs-server - microprofile-openapi - - - true - + + ${version.server} + + openapi + + + true + + ROOT.war - - - package - - + + + package + + - + @@ -180,18 +177,17 @@ org.wildfly.plugins wildfly-maven-plugin - - - org.wildfly:wildfly-galleon-pack:${version.server} - - - org.wildfly.cloud:wildfly-cloud-galleon-pack:${version.pack.cloud} - - - - cloud-server - microprofile-openapi - + + ${version.server} + cloud + + openapi + + + ROOT.war diff --git a/microprofile-reactive-messaging-kafka/pom.xml b/microprofile-reactive-messaging-kafka/pom.xml index 43ae03fc7f..8302614bc9 100644 --- a/microprofile-reactive-messaging-kafka/pom.xml +++ b/microprofile-reactive-messaging-kafka/pom.xml @@ -40,9 +40,7 @@ ${version.server} ${version.server} - 5.0.0.Final - 4.2.1.Final - 10.0.0.Final + 5.0.0.Beta2 3.0.0 2.0.0.Final @@ -254,11 +252,6 @@ wildfly-maven-plugin ${version.plugin.wildfly} - - org.wildfly.plugins - wildfly-jar-maven-plugin - ${version.plugin.wildfly-jar} - @@ -283,26 +276,26 @@ org.wildfly.plugins - wildfly-jar-maven-plugin + wildfly-maven-plugin - wildfly@maven(org.jboss.universe:community-universe)#${version.server} - - cloud-server - h2-default-datasource - microprofile-reactive-messaging-kafka - - - true - + + ${version.server} + + true + + ROOT.war - - package - + + package + - + @@ -315,19 +308,14 @@ org.wildfly.plugins wildfly-maven-plugin - - - org.wildfly:wildfly-galleon-pack:${version.server} - - - org.wildfly.cloud:wildfly-cloud-galleon-pack:${version.pack.cloud} - - - - cloud-server - h2-default-datasource - microprofile-reactive-messaging-kafka - + + ${version.server} + cloud + + ROOT.war diff --git a/microprofile-rest-client/pom.xml b/microprofile-rest-client/pom.xml index 4dedeef398..b9b17fc6b3 100644 --- a/microprofile-rest-client/pom.xml +++ b/microprofile-rest-client/pom.xml @@ -46,9 +46,7 @@ ${version.server} ${version.server} - 5.0.0.Final - 4.2.1.Final - 10.0.0.Final + 5.0.0.Beta2 6.2.6.Final 5.10.1 @@ -194,34 +192,6 @@ ${version.plugin.wildfly} ${jboss.home} - - - org.wildfly:wildfly-galleon-pack:${version.server} - - - - jaxrs-server - microprofile-platform - - - - - org.wildfly.plugins - wildfly-jar-maven-plugin - ${version.wildfly-jar.maven.plugin} - - - - org.wildfly:wildfly-galleon-pack:${version.server} - - - - jaxrs-server - microprofile-platform - - - true - @@ -235,7 +205,18 @@ org.wildfly.plugins - wildfly-jar-maven-plugin + wildfly-maven-plugin + + + ${version.server} + + true + + ROOT.war + @@ -256,22 +237,16 @@ org.wildfly.plugins wildfly-maven-plugin - - ROOT.war - - - org.wildfly:wildfly-galleon-pack:${version.server} - - - org.wildfly.cloud:wildfly-cloud-galleon-pack:${version.pack.cloud} - - - - jaxrs-server - microprofile-platform - cloud-server - - + + ${version.server} + cloud + + + ROOT.war + diff --git a/numberguess/pom.xml b/numberguess/pom.xml index dc113701a8..fa5f9c9650 100644 --- a/numberguess/pom.xml +++ b/numberguess/pom.xml @@ -47,8 +47,7 @@ 31.0.0.Beta1 ${version.server} - 5.0.0.Final - 4.2.1.Final + 5.0.0.Beta2 @@ -172,15 +171,13 @@ org.wildfly.plugins wildfly-maven-plugin - - - org.wildfly:wildfly-galleon-pack:${version.server} - - - - cloud-server - jsf - + + ${version.server} + + ROOT.war @@ -202,18 +199,14 @@ org.wildfly.plugins wildfly-maven-plugin - - - org.wildfly:wildfly-galleon-pack:${version.server} - - - org.wildfly.cloud:wildfly-cloud-galleon-pack:${version.pack.cloud} - - - - cloud-server - jsf - + + ${version.server} + cloud + + ROOT.war diff --git a/remote-helloworld-mdb/pom.xml b/remote-helloworld-mdb/pom.xml index cf6fe96a42..eb901c6119 100644 --- a/remote-helloworld-mdb/pom.xml +++ b/remote-helloworld-mdb/pom.xml @@ -48,8 +48,7 @@ 31.0.0.Beta1 ${version.server} - 5.0.0.Final - 4.2.1.Final + 5.0.0.Beta2 5.10.0 @@ -163,6 +162,18 @@ + + + + + org.wildfly.plugins + wildfly-maven-plugin + ${version.plugin.wildfly} + + + + + provisioned-server @@ -172,17 +183,16 @@ org.wildfly.plugins wildfly-maven-plugin - - - org.wildfly:wildfly-galleon-pack:${version.server} - - - - - cloud-server - ejb - remote-activemq - + + ${version.server} + + remote-activemq + + + ROOT.war @@ -204,19 +214,17 @@ org.wildfly.plugins wildfly-maven-plugin - - - org.wildfly:wildfly-galleon-pack:${version.server} - - - org.wildfly.cloud:wildfly-cloud-galleon-pack:${version.pack.cloud} - - - - cloud-server - ejb - remote-activemq - + + ${version.server} + cloud + + remote-activemq + + + ROOT.war diff --git a/servlet-async/pom.xml b/servlet-async/pom.xml index e804a1e681..c0eaa5275a 100644 --- a/servlet-async/pom.xml +++ b/servlet-async/pom.xml @@ -48,8 +48,7 @@ 31.0.0.Beta1 ${version.server} - 5.0.0.Final - 4.2.1.Final + 5.0.0.Beta2 5.9.1 @@ -183,14 +182,13 @@ org.wildfly.plugins wildfly-maven-plugin - - - org.wildfly:wildfly-galleon-pack:${version.server} - - - - cloud-server - + + ${version.server} + + ROOT.war @@ -212,17 +210,14 @@ org.wildfly.plugins wildfly-maven-plugin - - - org.wildfly:wildfly-galleon-pack:${version.server} - - - org.wildfly.cloud:wildfly-cloud-galleon-pack:${version.pack.cloud} - - - - cloud-server - + + ${version.server} + cloud + + ROOT.war diff --git a/servlet-filterlistener/pom.xml b/servlet-filterlistener/pom.xml index c0dbc39a98..f5fef339dc 100644 --- a/servlet-filterlistener/pom.xml +++ b/servlet-filterlistener/pom.xml @@ -48,8 +48,7 @@ 31.0.0.Beta1 ${version.server} - 5.0.0.Final - 4.2.1.Final + 5.0.0.Beta2 5.9.1 @@ -183,14 +182,13 @@ org.wildfly.plugins wildfly-maven-plugin - - - org.wildfly:wildfly-galleon-pack:${version.server} - - - - cloud-server - + + ${version.server} + + ROOT.war @@ -212,17 +210,14 @@ org.wildfly.plugins wildfly-maven-plugin - - - org.wildfly:wildfly-galleon-pack:${version.server} - - - org.wildfly.cloud:wildfly-cloud-galleon-pack:${version.pack.cloud} - - - - cloud-server - + + ${version.server} + cloud + + ROOT.war diff --git a/servlet-security/pom.xml b/servlet-security/pom.xml index bdba0c0063..3c021d48c3 100644 --- a/servlet-security/pom.xml +++ b/servlet-security/pom.xml @@ -48,9 +48,7 @@ 31.0.0.Beta1 ${version.server} - 5.0.0.Final - 6.0.0.Final - 4.2.1.Final + 5.0.0.Beta2 5.9.1 @@ -183,18 +181,18 @@ org.wildfly.plugins wildfly-maven-plugin - - - org.wildfly:wildfly-galleon-pack:${version.server} - - - org.wildfly:wildfly-datasources-galleon-pack:${version.pack.datasources} - - - - cloud-server - h2-datasource - + + ${version.server} + + false + + h2-database + + + ROOT.war @@ -225,21 +223,19 @@ org.wildfly.plugins wildfly-maven-plugin - - - org.wildfly:wildfly-galleon-pack:${version.server} - - - org.wildfly.cloud:wildfly-cloud-galleon-pack:${version.pack.cloud} - - - org.wildfly:wildfly-datasources-galleon-pack:${version.pack.datasources} - - - - cloud-server - h2-datasource - + + ${version.server} + + false + + h2-database + + cloud + + ROOT.war diff --git a/spring-resteasy/pom.xml b/spring-resteasy/pom.xml index c52defb980..6aeda2d566 100644 --- a/spring-resteasy/pom.xml +++ b/spring-resteasy/pom.xml @@ -52,8 +52,7 @@ 31.0.0.Beta1 ${version.server} - 5.0.0.Final - 4.2.1.Final + 5.0.0.Beta2 6.0.4 @@ -88,6 +87,20 @@ default + + spring-repo + Spring Repository + https://repo.spring.io/milestone + + true + never + + + true + never + + default + @@ -212,12 +225,17 @@ org.wildfly.plugins wildfly-maven-plugin - - - org.wildfly:wildfly-galleon-pack:${version.server} - - - + + ${version.server} + + + * + + + ROOT.war @@ -239,15 +257,18 @@ org.wildfly.plugins wildfly-maven-plugin - - - org.wildfly:wildfly-galleon-pack:${version.server} - - - org.wildfly.cloud:wildfly-cloud-galleon-pack:${version.pack.cloud} - - - + + ${version.server} + cloud + + + * + + + ROOT.war diff --git a/temperature-converter/pom.xml b/temperature-converter/pom.xml index c66bb2d93d..d1123a6e5e 100644 --- a/temperature-converter/pom.xml +++ b/temperature-converter/pom.xml @@ -48,8 +48,7 @@ 31.0.0.Beta1 ${version.server} - 5.0.0.Final - 4.2.1.Final + 5.0.0.Beta2 @@ -189,16 +188,13 @@ org.wildfly.plugins wildfly-maven-plugin - - - org.wildfly:wildfly-galleon-pack:${version.server} - - - - cloud-server - ejb - jsf - + + ${version.server} + + ROOT.war @@ -220,19 +216,14 @@ org.wildfly.plugins wildfly-maven-plugin - - - org.wildfly:wildfly-galleon-pack:${version.server} - - - org.wildfly.cloud:wildfly-cloud-galleon-pack:${version.pack.cloud} - - - - cloud-server - ejb - jsf - + + ${version.server} + cloud + + ROOT.war diff --git a/thread-racing/pom.xml b/thread-racing/pom.xml index c79a81192f..130a839575 100644 --- a/thread-racing/pom.xml +++ b/thread-racing/pom.xml @@ -48,8 +48,7 @@ 31.0.0.Beta1 ${version.server} - 5.0.0.Final - 4.2.1.Final + 5.0.0.Beta2 @@ -238,18 +237,17 @@ org.wildfly.plugins wildfly-maven-plugin - - - org.wildfly:wildfly-galleon-pack:${version.server} - - - - cloud-server - ejb - batch-jberet - embedded-activemq - h2-default-datasource - + + ${version.server} + + embedded-activemq + h2-database:default + + + ROOT.war @@ -271,21 +269,18 @@ org.wildfly.plugins wildfly-maven-plugin - - - org.wildfly:wildfly-galleon-pack:${version.server} - - - org.wildfly.cloud:wildfly-cloud-galleon-pack:${version.pack.cloud} - - - - cloud-server - ejb - batch-jberet - embedded-activemq - h2-default-datasource - + + ${version.server} + cloud + + embedded-activemq + h2-database:default + + + ROOT.war diff --git a/todo-backend/pom.xml b/todo-backend/pom.xml index b9916d5190..0f7f2a4396 100644 --- a/todo-backend/pom.xml +++ b/todo-backend/pom.xml @@ -48,9 +48,7 @@ 31.0.0.Beta1 ${version.server} - 5.0.0.Final - 6.0.0.Final - 4.2.1.Final + 5.0.0.Beta2 @@ -196,19 +194,16 @@ org.wildfly.plugins wildfly-maven-plugin - - - org.wildfly:wildfly-galleon-pack:${version.server} - - - org.wildfly:wildfly-datasources-galleon-pack:${version.pack.datasources} - - - - cloud-server - postgresql-datasource - - + + ${version.server} + + postgresql + + + ROOT.war @@ -239,21 +234,17 @@ org.wildfly.plugins wildfly-maven-plugin - - - org.wildfly:wildfly-galleon-pack:${version.server} - - - org.wildfly:wildfly-datasources-galleon-pack:${version.pack.datasources} - - - org.wildfly.cloud:wildfly-cloud-galleon-pack:${version.pack.cloud} - - - - cloud-server - postgresql-datasource - + + ${version.server} + cloud + + postgresql + + + ROOT.war @@ -283,7 +274,6 @@ org.apache.maven.plugins maven-failsafe-plugin - ${version.failsafe.plugin} diff --git a/websocket-endpoint/pom.xml b/websocket-endpoint/pom.xml index 9ec5088bc0..dd354eff26 100644 --- a/websocket-endpoint/pom.xml +++ b/websocket-endpoint/pom.xml @@ -48,8 +48,7 @@ 31.0.0.Beta1 ${version.server} - 5.0.0.Final - 4.2.1.Final + 5.0.0.Beta2 5.9.1 1.1.5 @@ -209,14 +208,13 @@ org.wildfly.plugins wildfly-maven-plugin - - - org.wildfly:wildfly-galleon-pack:${version.server} - - - - cloud-server - + + ${version.server} + + ROOT.war @@ -238,17 +236,14 @@ org.wildfly.plugins wildfly-maven-plugin - - - org.wildfly:wildfly-galleon-pack:${version.server} - - - org.wildfly.cloud:wildfly-cloud-galleon-pack:${version.pack.cloud} - - - - cloud-server - + + ${version.server} + cloud + + ROOT.war diff --git a/websocket-hello/pom.xml b/websocket-hello/pom.xml index 6b1efb3874..b11f61e5fd 100644 --- a/websocket-hello/pom.xml +++ b/websocket-hello/pom.xml @@ -48,8 +48,7 @@ 31.0.0.Beta1 ${version.server} - 5.0.0.Final - 4.2.1.Final + 5.0.0.Beta2 @@ -160,14 +159,13 @@ org.wildfly.plugins wildfly-maven-plugin - - - org.wildfly:wildfly-galleon-pack:${version.server} - - - - cloud-server - + + ${version.server} + + ROOT.war @@ -189,17 +187,14 @@ org.wildfly.plugins wildfly-maven-plugin - - - org.wildfly:wildfly-galleon-pack:${version.server} - - - org.wildfly.cloud:wildfly-cloud-galleon-pack:${version.pack.cloud} - - - - cloud-server - + + ${version.server} + cloud + + ROOT.war From c836648425cd9acce9b56571ebcb34e5cab0a683 Mon Sep 17 00:00:00 2001 From: Kabir Khan Date: Wed, 17 Jan 2024 22:23:31 +0000 Subject: [PATCH 03/26] Add Glow plugin examples --- batch-processing/README.adoc | 1 + bmt/README.adoc | 1 + cmt/README.adoc | 1 + ee-security/README.adoc | 1 + ejb-remote/README.adoc | 1 + ejb-security-context-propagation/README.adoc | 1 + ejb-security-programmatic-auth/README.adoc | 1 + ejb-throws-exception/README.adoc | 1 + ejb-timer/README.adoc | 1 + ejb-txn-remote-call/README.adoc | 1 + helloworld-jms/README.adoc | 1 + helloworld-mdb/README.adoc | 1 + helloworld-singleton/README.adoc | 1 + helloworld-ws/README.adoc | 1 + helloworld/README.adoc | 1 + hibernate/README.adoc | 1 + http-custom-mechanism/README.adoc | 1 + jaxrs-client/README.adoc | 1 + jaxrs-jwt/README.adoc | 1 + jaxws-ejb/README.adoc | 1 + jaxws-retail/README.adoc | 1 + jsonp/README.adoc | 1 + kitchensink/README.adoc | 1 + logging/README.adoc | 1 + mail/README.adoc | 1 + microprofile-config/README.adoc | 1 + microprofile-fault-tolerance/README.adoc | 1 + microprofile-health/README.adoc | 1 + microprofile-jwt/README.adoc | 1 + microprofile-lra/README.adoc | 1 + microprofile-openapi/README.adoc | 1 + .../README.adoc | 1 + microprofile-rest-client/README.adoc | 1 + numberguess/README.adoc | 1 + remote-helloworld-mdb/README.adoc | 1 + servlet-async/README.adoc | 1 + servlet-filterlistener/README.adoc | 1 + servlet-security/README.adoc | 1 + ...-run-the-quickstart-with-bootable-jar.adoc | 51 +++++++++++++++ ...he-quickstart-with-provisioned-server.adoc | 51 ++++++++++++++- .../build-the-quickstart-for-openshift.adoc | 62 ++++++++++++++++--- spring-resteasy/README.adoc | 1 + temperature-converter/README.adoc | 1 + thread-racing/README.adoc | 1 + todo-backend/README.adoc | 1 + websocket-endpoint/README.adoc | 1 + websocket-hello/README.adoc | 1 + 47 files changed, 200 insertions(+), 8 deletions(-) diff --git a/batch-processing/README.adoc b/batch-processing/README.adoc index 9370abe18d..4e85ba3bed 100644 --- a/batch-processing/README.adoc +++ b/batch-processing/README.adoc @@ -5,6 +5,7 @@ include::../shared-doc/attributes.adoc[] :level: Intermediate :technologies: CDI, Batch 1.0, JSF :openshift: true +:portedToGlow: true [abstract] The `batch-processing` quickstart shows how to use chunk oriented batch jobs to import a file to a database. diff --git a/bmt/README.adoc b/bmt/README.adoc index 71312609a5..35bbe7198f 100644 --- a/bmt/README.adoc +++ b/bmt/README.adoc @@ -5,6 +5,7 @@ include::../shared-doc/attributes.adoc[] :level: Intermediate :technologies: EJB, BMT :openshift: true +:portedToGlow: true [abstract] The `bmt` quickstart demonstrates Bean-Managed Transactions (BMT), showing how to manually manage transaction demarcation while accessing JPA entities. diff --git a/cmt/README.adoc b/cmt/README.adoc index 508f2c51d2..06c954fe75 100644 --- a/cmt/README.adoc +++ b/cmt/README.adoc @@ -5,6 +5,7 @@ include::../shared-doc/attributes.adoc[] :level: Intermediate :technologies: EJB, CMT, JMS :openshift: true +:portedToGlow: true [abstract] The `cmt` quickstart demonstrates Container-Managed Transactions (CMT), showing how to use transactions managed by the container. diff --git a/ee-security/README.adoc b/ee-security/README.adoc index ecd5544742..a81eb62ab3 100644 --- a/ee-security/README.adoc +++ b/ee-security/README.adoc @@ -5,6 +5,7 @@ include::../shared-doc/attributes.adoc[] :level: Intermediate :technologies: EE Security, Servlet, CDI :openshift: true +:portedToGlow: true [abstract] The `ee-security` quickstart demonstrates Jakarta EE security. diff --git a/ejb-remote/README.adoc b/ejb-remote/README.adoc index 88050aa579..40c45d529b 100644 --- a/ejb-remote/README.adoc +++ b/ejb-remote/README.adoc @@ -5,6 +5,7 @@ include::../shared-doc/attributes.adoc[] :level: Intermediate :technologies: EJB, JNDI :openshift: true +:portedToGlow: true [abstract] The `ejb-remote` quickstart uses EJB and JNDI to demonstrate how to access an EJB, deployed to {productName}, from a remote Java client application. diff --git a/ejb-security-context-propagation/README.adoc b/ejb-security-context-propagation/README.adoc index edc9e6430a..5c3f2376b0 100644 --- a/ejb-security-context-propagation/README.adoc +++ b/ejb-security-context-propagation/README.adoc @@ -4,6 +4,7 @@ include::../shared-doc/attributes.adoc[] :author: Stefan Guilhen :level: Advanced :technologies: EJB, Security +:portedToGlow: true [abstract] The `ejb-security-context-propagation` quickstart demonstrates how the security context can be propagated to a remote EJB using a remote outbound connection configuration diff --git a/ejb-security-programmatic-auth/README.adoc b/ejb-security-programmatic-auth/README.adoc index 2a7adda5b5..f85ce9729a 100644 --- a/ejb-security-programmatic-auth/README.adoc +++ b/ejb-security-programmatic-auth/README.adoc @@ -4,6 +4,7 @@ include::../shared-doc/attributes.adoc[] :author: Stefan Guilhen :level: Intermediate :technologies: EJB, Security +:portedToGlow: true [abstract] The `ejb-security-programmatic-auth` quickstart demonstrates how to programmatically setup different identities when invoking a remote secured EJB. diff --git a/ejb-throws-exception/README.adoc b/ejb-throws-exception/README.adoc index 8843eae81c..bd6a60b36c 100644 --- a/ejb-throws-exception/README.adoc +++ b/ejb-throws-exception/README.adoc @@ -5,6 +5,7 @@ include::../shared-doc/attributes.adoc[] :level: Intermediate :technologies: EJB, EAR :deploymentDir: ear +:portedToGlow: true [abstract] The `ejb-throws-exception` quickstart demonstrates how to throw and handle exceptions across JARs in an EAR. diff --git a/ejb-timer/README.adoc b/ejb-timer/README.adoc index 58783bdbc7..14946c6e32 100644 --- a/ejb-timer/README.adoc +++ b/ejb-timer/README.adoc @@ -5,6 +5,7 @@ include::../shared-doc/attributes.adoc[] :level: Beginner :technologies: EJB Timer :openshift: true +:portedToGlow: true [abstract] The `ejb-timer` quickstart demonstrates how to use the Jakarta Enterprise Bean timer service `@Schedule` and `@Timeout` annotations with {productName}. diff --git a/ejb-txn-remote-call/README.adoc b/ejb-txn-remote-call/README.adoc index ac25d0958a..697e21288b 100644 --- a/ejb-txn-remote-call/README.adoc +++ b/ejb-txn-remote-call/README.adoc @@ -5,6 +5,7 @@ include::../shared-doc/attributes.adoc[] :level: Intermediate :technologies: EJB, JTA, Clustering :openshift: true +:portedToGlow: true [abstract] The `ejb-txn-remote-call` quickstart demonstrates remote transactional EJB calls over two application servers of {productName}. diff --git a/helloworld-jms/README.adoc b/helloworld-jms/README.adoc index ba96f23360..79dbfb37d9 100644 --- a/helloworld-jms/README.adoc +++ b/helloworld-jms/README.adoc @@ -4,6 +4,7 @@ include::../shared-doc/attributes.adoc[] :author: Weston Price :level: Intermediate :technologies: JMS +:portedToGlow: true [abstract] The `helloworld-jms` quickstart demonstrates the use of external JMS clients with {productName}. diff --git a/helloworld-mdb/README.adoc b/helloworld-mdb/README.adoc index 32d9690b9c..64ea3624de 100644 --- a/helloworld-mdb/README.adoc +++ b/helloworld-mdb/README.adoc @@ -5,6 +5,7 @@ include::../shared-doc/attributes.adoc[] :level: Intermediate :technologies: JMS, EJB, MDB :openshift: true +:portedToGlow: true [abstract] The `helloworld-mdb` quickstart uses JMS and EJB Message-Driven Bean (MDB) to create and deploy JMS topic and queue resources in {productName}. diff --git a/helloworld-singleton/README.adoc b/helloworld-singleton/README.adoc index 2e1bbfaeb0..0cf299d32f 100644 --- a/helloworld-singleton/README.adoc +++ b/helloworld-singleton/README.adoc @@ -5,6 +5,7 @@ include::../shared-doc/attributes.adoc[] :level: Beginner :technologies: EJB, Singleton :openshift: true +:portedToGlow: true [abstract] The `helloworld-singleton` quickstart demonstrates an EJB Singleton Bean that is instantiated once and maintains state for the life of the session. diff --git a/helloworld-ws/README.adoc b/helloworld-ws/README.adoc index 541e80271c..bb3037832c 100644 --- a/helloworld-ws/README.adoc +++ b/helloworld-ws/README.adoc @@ -5,6 +5,7 @@ include::../shared-doc/attributes.adoc[] :level: Beginner :technologies: JAX-WS :openshift: true +:portedToGlow: true [abstract] The `helloworld-ws` quickstart demonstrates a simple Hello World application, bundled and deployed as a WAR, that uses JAX-WS to say Hello. diff --git a/helloworld/README.adoc b/helloworld/README.adoc index 3ee136f9bd..8e8e2efe2b 100644 --- a/helloworld/README.adoc +++ b/helloworld/README.adoc @@ -5,6 +5,7 @@ include::../shared-doc/attributes.adoc[] :level: Beginner :technologies: Servlet :openshift: true +:portedToGlow: true [abstract] The `helloworld` quickstart demonstrates the use of Servlet 6 and is a good starting point to verify {productName} is configured correctly. diff --git a/hibernate/README.adoc b/hibernate/README.adoc index e6c9fe1fc2..6cd4095312 100644 --- a/hibernate/README.adoc +++ b/hibernate/README.adoc @@ -5,6 +5,7 @@ include::../shared-doc/attributes.adoc[] :level: Intermediate :technologies: Hibernate :openshift: true +:portedToGlow: true [abstract] The `hibernate` quickstart demonstrates how to use Hibernate ORM 6 over Persistence, using Bean Validation, and Enterprise Beans. diff --git a/http-custom-mechanism/README.adoc b/http-custom-mechanism/README.adoc index 0544977175..7e5fd2b0cd 100644 --- a/http-custom-mechanism/README.adoc +++ b/http-custom-mechanism/README.adoc @@ -4,6 +4,7 @@ include::../shared-doc/attributes.adoc[] :author: Darran Lofthouse :level: Intermediate :technologies: EJB, Security +:portedToGlow: true [abstract] The `http-custom-mechanism` quickstart demonstrates how to implement a custom HTTP authentication mechanism that can be registered with Elytron. diff --git a/jaxrs-client/README.adoc b/jaxrs-client/README.adoc index cc5bf16906..1bbdbbe7cb 100644 --- a/jaxrs-client/README.adoc +++ b/jaxrs-client/README.adoc @@ -5,6 +5,7 @@ include::../shared-doc/attributes.adoc[] :level: Beginner :technologies: JAX-RS :openshift: true +:portedToGlow: true [abstract] The `jaxrs-client` quickstart demonstrates Jakarta REST Client API, which interacts with a Jakarta REST Web service that runs on {productName}. diff --git a/jaxrs-jwt/README.adoc b/jaxrs-jwt/README.adoc index d543ddfc46..21b74b2f39 100644 --- a/jaxrs-jwt/README.adoc +++ b/jaxrs-jwt/README.adoc @@ -4,6 +4,7 @@ include::../shared-doc/attributes.adoc[] :author: Martin Mazanek :level: Intermediate :technologies: JAX-RS, Security +:portedToGlow: true [abstract] The `jaxrs-jwt` quickstart demonstrates a Jakarta REST secured application using JSON Web Tokens (JWT) with Elytron. diff --git a/jaxws-ejb/README.adoc b/jaxws-ejb/README.adoc index efd4e03e4e..9b87618fa1 100644 --- a/jaxws-ejb/README.adoc +++ b/jaxws-ejb/README.adoc @@ -4,6 +4,7 @@ include::../shared-doc/attributes.adoc[] :author: R Searls :level: Beginner :technologies: JAX-WS +:portedToGlow: true [abstract] The `jaxws-ejb` quickstart is a working example of the web service endpoint created from an EJB. diff --git a/jaxws-retail/README.adoc b/jaxws-retail/README.adoc index 03e2dc9d55..24a5279bbe 100644 --- a/jaxws-retail/README.adoc +++ b/jaxws-retail/README.adoc @@ -4,6 +4,7 @@ include::../shared-doc/attributes.adoc[] :author: R Searls :level: Beginner :technologies: JAX-WS +:portedToGlow: true [abstract] The `jaxws-retail` quickstart is a working example of a simple web service endpoint. diff --git a/jsonp/README.adoc b/jsonp/README.adoc index f74ae52a82..c7ea1b6218 100644 --- a/jsonp/README.adoc +++ b/jsonp/README.adoc @@ -5,6 +5,7 @@ include::../shared-doc/attributes.adoc[] :level: Beginner :technologies: CDI, JSF, JSON-P :openshift: true +:portedToGlow: true [abstract] The `jsonp` quickstart demonstrates how to use the JSON-P API to produce object-based structures and then parse and consume them as stream-based JSON strings. diff --git a/kitchensink/README.adoc b/kitchensink/README.adoc index 5643a37f82..17edd0d02a 100644 --- a/kitchensink/README.adoc +++ b/kitchensink/README.adoc @@ -5,6 +5,7 @@ include::../shared-doc/attributes.adoc[] :level: Intermediate :technologies: CDI, JSF, JPA, EJB, JAX-RS, BV :openshift: true +:portedToGlow: true [abstract] The `kitchensink` quickstart demonstrates a localized {javaVersion} web-enabled database application using JSF, CDI, EJB, JPA, and Bean Validation. diff --git a/logging/README.adoc b/logging/README.adoc index 4b934a5323..8d5107cfea 100644 --- a/logging/README.adoc +++ b/logging/README.adoc @@ -4,6 +4,7 @@ include::../shared-doc/attributes.adoc[] :author: Joel Tosi :level: Intermediate :technologies: Logging +:portedToGlow: true [abstract] The `logging` quickstart demonstrates how to configure different logging levels in {productName}. diff --git a/mail/README.adoc b/mail/README.adoc index 4e3fdd8375..15d2a3a308 100644 --- a/mail/README.adoc +++ b/mail/README.adoc @@ -4,6 +4,7 @@ include::../shared-doc/attributes.adoc[] :author: Joel Tosi :level: Beginner :technologies: JavaMail, CDI, JSF +:portedToGlow: true [abstract] The `mail` quickstart demonstrates how to send and receive emails using CDI and JSF and with custom Mail provider configured in {productName}. diff --git a/microprofile-config/README.adoc b/microprofile-config/README.adoc index 45d8a6454f..59130ade08 100644 --- a/microprofile-config/README.adoc +++ b/microprofile-config/README.adoc @@ -4,6 +4,7 @@ include::../shared-doc/attributes.adoc[] :author: Martin Stefanko :level: Beginner :technologies: MicroProfile Config +:portedToGlow: true [abstract] The `microprofile-config` quickstart demonstrates the use of the MicroProfile Config specification in {productName}. diff --git a/microprofile-fault-tolerance/README.adoc b/microprofile-fault-tolerance/README.adoc index 19cdf30bd6..89ece6e475 100644 --- a/microprofile-fault-tolerance/README.adoc +++ b/microprofile-fault-tolerance/README.adoc @@ -6,6 +6,7 @@ https://github.com/quarkusio/quarkus/tree/master/docs/src/main/asciidoc // Needed to correctly render on GitHub :productName: WildFly :standalone-server-type: microprofile +:portedToGlow: true include::../shared-doc/attributes.adoc[] diff --git a/microprofile-health/README.adoc b/microprofile-health/README.adoc index be7fdd02ab..23d22b8365 100644 --- a/microprofile-health/README.adoc +++ b/microprofile-health/README.adoc @@ -8,6 +8,7 @@ include::../shared-doc/attributes.adoc[] :post-helm-install-actions: ../microprofile-health/expose-management-port.adoc :extra-openshift-testing-actions: ../microprofile-health/expose-management-port.adoc :extra-openshift-test-arguments: -Dserver.management.host=https://$(oc get route {artifactId}-management --template='{{ .spec.host }}') +:portedToGlow: true [abstract] The `microprofile-health` quickstart demonstrates the use of the MicroProfile Health specification in {productName}. diff --git a/microprofile-jwt/README.adoc b/microprofile-jwt/README.adoc index fba604aa2a..e6ce271857 100644 --- a/microprofile-jwt/README.adoc +++ b/microprofile-jwt/README.adoc @@ -4,6 +4,7 @@ include::../shared-doc/attributes.adoc[] :author: Darran Lofthouse :level: Intermediate :technologies: JWT, Security, MicroProfile +:portedToGlow: true [abstract] The `microprofile-jwt` quickstart demonstrates the use of the MicroProfile JWT specification in {productName}. diff --git a/microprofile-lra/README.adoc b/microprofile-lra/README.adoc index 418ec0c551..6968628d77 100644 --- a/microprofile-lra/README.adoc +++ b/microprofile-lra/README.adoc @@ -4,6 +4,7 @@ include::../shared-doc/attributes.adoc[] :author: Martin Stefanko :level: Beginner :technologies: MicroProfile LRA +:portedToGlow: true [abstract] The `microprofile-lra` quickstart demonstrates the use of the MicroProfile LRA specification in {productName}. diff --git a/microprofile-openapi/README.adoc b/microprofile-openapi/README.adoc index 03432cc0d4..721cd30d0a 100644 --- a/microprofile-openapi/README.adoc +++ b/microprofile-openapi/README.adoc @@ -4,6 +4,7 @@ include::../shared-doc/attributes.adoc[] :author: Paul Ferraro :level: Beginner :technologies: MicroProfile OpenAPI +:portedToGlow: true [abstract] This guide demonstrate how to use the MicroProfile OpenAPI functionality in {productName} to expose an OpenAPI document for a simple REST application. diff --git a/microprofile-reactive-messaging-kafka/README.adoc b/microprofile-reactive-messaging-kafka/README.adoc index 9a65fc779a..03b7d12651 100644 --- a/microprofile-reactive-messaging-kafka/README.adoc +++ b/microprofile-reactive-messaging-kafka/README.adoc @@ -4,6 +4,7 @@ include::../shared-doc/attributes.adoc[] :author: Kabir Khan :level: Beginner :technologies: MicroProfile Reactive Messaging +:portedToGlow: true [abstract] The `microprofile-reactive-messaging-kafka` quickstart demonstrates the use of the MicroProfile Reactive Messaging specification backed by Apache Kafka in {productName}. diff --git a/microprofile-rest-client/README.adoc b/microprofile-rest-client/README.adoc index cf18b222af..0e6b555ae9 100644 --- a/microprofile-rest-client/README.adoc +++ b/microprofile-rest-client/README.adoc @@ -4,6 +4,7 @@ include::../shared-doc/attributes.adoc[] :author: Martin Stefanko :level: Beginner :technologies: MicroProfile REST Client +:portedToGlow: true [abstract] The `microprofile-rest-client` quickstart demonstrates the use of the MicroProfile REST Client specification in {productName}. diff --git a/numberguess/README.adoc b/numberguess/README.adoc index 5ff1c57a3e..52e94537c2 100644 --- a/numberguess/README.adoc +++ b/numberguess/README.adoc @@ -5,6 +5,7 @@ include::../shared-doc/attributes.adoc[] :level: Beginner :technologies: CDI, JSF :openshift: true +:portedToGlow: true [abstract] The `numberguess` quickstart demonstrates the use of CDI (Contexts and Dependency Injection) and JSF (JavaServer Faces) in {productName}. diff --git a/remote-helloworld-mdb/README.adoc b/remote-helloworld-mdb/README.adoc index 97bcd4aa06..419c1f884d 100644 --- a/remote-helloworld-mdb/README.adoc +++ b/remote-helloworld-mdb/README.adoc @@ -5,6 +5,7 @@ include::../shared-doc/attributes.adoc[] :level: Intermediate :technologies: JMS, EJB, MDB :openshift: true +:portedToGlow: true :standalone-server-type: full :archiveType: war diff --git a/servlet-async/README.adoc b/servlet-async/README.adoc index bfbe219b74..b25d1f48f7 100644 --- a/servlet-async/README.adoc +++ b/servlet-async/README.adoc @@ -5,6 +5,7 @@ include::../shared-doc/attributes.adoc[] :level: Intermediate :technologies: Asynchronous Servlet, CDI, EJB :openshift: true +:portedToGlow: true [abstract] The `servlet-async` quickstart demonstrates how to use asynchronous servlets to detach long-running tasks and free up the request processing thread. diff --git a/servlet-filterlistener/README.adoc b/servlet-filterlistener/README.adoc index 2322bd1ff7..53acc4f786 100644 --- a/servlet-filterlistener/README.adoc +++ b/servlet-filterlistener/README.adoc @@ -5,6 +5,7 @@ include::../shared-doc/attributes.adoc[] :level: Intermediate :technologies: Servlet Filter, Servlet Listener :openshift: true +:portedToGlow: true [abstract] The `servlet-filterlistener` quickstart demonstrates how to use Servlet filters and listeners in an application. diff --git a/servlet-security/README.adoc b/servlet-security/README.adoc index 234aae9d87..fad6e780c2 100644 --- a/servlet-security/README.adoc +++ b/servlet-security/README.adoc @@ -5,6 +5,7 @@ include::../shared-doc/attributes.adoc[] :level: Intermediate :technologies: Servlet, Security :openshift: true +:portedToGlow: true [abstract] The `servlet-security` quickstart demonstrates the use of Jakarta EE declarative security to control access to Servlets and Security in {productName}. diff --git a/shared-doc/build-and-run-the-quickstart-with-bootable-jar.adoc b/shared-doc/build-and-run-the-quickstart-with-bootable-jar.adoc index c26e106a56..f7d0f742ac 100644 --- a/shared-doc/build-and-run-the-quickstart-with-bootable-jar.adoc +++ b/shared-doc/build-and-run-the-quickstart-with-bootable-jar.adoc @@ -5,6 +5,7 @@ You can use the WildFly JAR Maven plug-in to build a {productName} bootable JAR The quickstart `pom.xml` file contains a Maven profile named *bootable-jar* which configures the bootable JAR building: +ifndef::portedToGlow[] [source,xml,subs="attributes+"] ---- @@ -34,6 +35,56 @@ The quickstart `pom.xml` file contains a Maven profile named *bootable-jar* whic ---- +endif::portedToGlow[] +ifdef::portedToGlow[] +[source,xml,subs="attributes+"] +---- + + bootable-jar + + + + org.wildfly.plugins + wildfly-maven-plugin + + + ${version.server} + + true + + ROOT.war + ... + + + + + package + + + + + ... + + + +---- +The plugin uses https://github.com/wildfly/wildfly-glow[WildFly Glow] to discover the feature packs and layers required to run the application, and provisions a server containing those layers. + +[NOTE] +==== +This uses a pre-release of version 5.0.0 of the wildfly-maven-plugin providing the Glow functionality. The version is set in the pom's `pluginManagement` section. +==== + +If you get an error or the server is missing some functionality which cannot be auto-discovered, you can download the https://github.com/wildfly/wildfly-glow/releases/tag[WildFly Glow CLI] and run the following command to see more information about what add-ons are available: + +[source,shell] +---- +wildfly-glow show-add-ons +---- +endif::portedToGlow[] .Procedure diff --git a/shared-doc/build-and-run-the-quickstart-with-provisioned-server.adoc b/shared-doc/build-and-run-the-quickstart-with-provisioned-server.adoc index 895039f529..36e3c0a4ba 100644 --- a/shared-doc/build-and-run-the-quickstart-with-provisioned-server.adoc +++ b/shared-doc/build-and-run-the-quickstart-with-provisioned-server.adoc @@ -52,7 +52,7 @@ For Windows, use the `__{jbossHomeName}__\bin\add-user.bat` script. endif::[] The server provisioning functionality is provided by the WildFly Maven Plugin, and you may find its configuration in the quickstart `pom.xml`: - +ifndef::portedToGlow[] [source,xml,subs="attributes+"] ---- @@ -85,6 +85,55 @@ The server provisioning functionality is provided by the WildFly Maven Plugin, a ---- +endif::portedToGlow[] +ifdef::portedToGlow[] +[source,xml,subs="attributes+"] +---- + + provisioned-server + + + + org.wildfly.plugins + wildfly-maven-plugin + + + ${version.server} + + + ROOT.war + ... + + + + + package + + + + + ... + + + +---- +The plugin uses https://github.com/wildfly/wildfly-glow[WildFly Glow] to discover the feature packs and layers required to run the application, and provisions a server containing those layers. + +[NOTE] +==== +This uses a pre-release of version 5.0.0 of the wildfly-maven-plugin providing the Glow functionality. The version is set in the pom's `pluginManagement` section. +==== + +If you get an error or the server is missing some functionality which cannot be auto-discovered, you can download the https://github.com/wildfly/wildfly-glow/releases/tag[WildFly Glow CLI] and run the following command to see more information about what add-ons are available: + +[source,shell] +---- +wildfly-glow show-add-ons +---- +endif::portedToGlow[] [NOTE] ==== diff --git a/shared-doc/build-the-quickstart-for-openshift.adoc b/shared-doc/build-the-quickstart-for-openshift.adoc index d0efc0447b..6eb9737d4b 100644 --- a/shared-doc/build-the-quickstart-for-openshift.adoc +++ b/shared-doc/build-the-quickstart-for-openshift.adoc @@ -11,6 +11,7 @@ The server provisioning functionality is provided by the EAP Maven Plugin, and y endif::[] ifndef::ProductRelease,EAPXPRelease[] +ifndef::portedToGlow[] [source,xml,subs="attributes+"] ---- @@ -45,7 +46,59 @@ ifndef::ProductRelease,EAPXPRelease[] ---- -endif::[] +You may note that unlike the `provisioned-server` profile it uses the cloud feature pack which enables a configuration tuned for OpenShift environment. +endif::portedToGlow[] +ifdef::portedToGlow[] +[source,xml,subs="attributes+"] +---- + + openshift + + + + org.wildfly.plugins + wildfly-maven-plugin + + + ${version.server} + cloud + + + ROOT.war + ... + + + + + package + + + + + ... + + + +---- +You may note that unlike the `provisioned-server` profile it uses the cloud context which enables a configuration tuned for OpenShift environment. + +The plugin uses https://github.com/wildfly/wildfly-glow[WildFly Glow] to discover the feature packs and layers required to run the application, and provisions a server containing those layers. + +[NOTE] +==== +This uses a pre-release of version 5.0.0 of the wildfly-maven-plugin providing the Glow functionality. The version is set in the pom's `pluginManagement` section. +==== + +If you get an error or the server is missing some functionality which cannot be auto-discovered, you can download the https://github.com/wildfly/wildfly-glow/releases[WildFly Glow CLI] and run the following command to see more information about what add-ons are available: +[source,shell] +---- +wildfly-glow show-add-ons +---- +endif::portedToGlow[] +endif::ProductRelease,EAPXPRelease[] ifdef::ProductRelease,EAPXPRelease[] [source,xml,subs="attributes+"] @@ -83,11 +136,6 @@ ifdef::ProductRelease,EAPXPRelease[] ---- +You may note that it uses the cloud feature pack which enables a configuration tuned for OpenShift environment. endif::[] -ifndef::ProductRelease,EAPXPRelease[] -You may note that unlike the `provisioned-server` profile it uses the cloud feature pack which enables a configuration tuned for OpenShift environment. -endif::[] -ifdef::ProductRelease,EAPXPRelease[] -You may note that it uses the cloud feature pack which enables a configuration tuned for OpenShift environment. -endif::[] \ No newline at end of file diff --git a/spring-resteasy/README.adoc b/spring-resteasy/README.adoc index f2ddc0be25..ce8656365f 100644 --- a/spring-resteasy/README.adoc +++ b/spring-resteasy/README.adoc @@ -6,6 +6,7 @@ include::../shared-doc/attributes.adoc[] :technologies: Resteasy, Spring :openshift: true :buildRequirements: Java 17 (Java SDK 17) or later and Maven 3.3.1 or later +:portedToGlow: true [abstract] The `spring-resteasy` quickstart demonstrates how to package and deploy a web application that includes resteasy-spring integration. diff --git a/temperature-converter/README.adoc b/temperature-converter/README.adoc index b4f2750221..8b9b2d8e4f 100644 --- a/temperature-converter/README.adoc +++ b/temperature-converter/README.adoc @@ -5,6 +5,7 @@ include::../shared-doc/attributes.adoc[] :level: Beginner :technologies: CDI, JSF, SLSB EJB :openshift: true +:portedToGlow: true [abstract] The `temperature-converter` quickstart does temperature conversion using an EJB Stateless Session Bean (SLSB), CDI, and a JSF front-end client. diff --git a/thread-racing/README.adoc b/thread-racing/README.adoc index 0c489d72f0..63c6f5c0e6 100644 --- a/thread-racing/README.adoc +++ b/thread-racing/README.adoc @@ -5,6 +5,7 @@ include::../shared-doc/attributes.adoc[] :level: Beginner :technologies: Batch, CDI, EE Concurrency, JAX-RS, JMS, JPA, JSON, Web Sockets :openshift: true +:portedToGlow: true [abstract] A thread racing web application that demonstrates technologies introduced or updated in the latest Jakarta EE specification. diff --git a/todo-backend/README.adoc b/todo-backend/README.adoc index 0684565431..ad5456cb9b 100644 --- a/todo-backend/README.adoc +++ b/todo-backend/README.adoc @@ -12,6 +12,7 @@ include::../shared-doc/attributes.adoc[] :archiveType: war :useHelmChartDir: true :helm-install-prerequisites: ../todo-backend/helm-install-prerequisites.adoc +:portedToGlow: true [abstract] The `todo-backend` quickstart demonstrates how to implement a backend that exposes a HTTP API with JAX-RS diff --git a/websocket-endpoint/README.adoc b/websocket-endpoint/README.adoc index d71e5d1f34..1b9622ef1f 100644 --- a/websocket-endpoint/README.adoc +++ b/websocket-endpoint/README.adoc @@ -5,6 +5,7 @@ include::../shared-doc/attributes.adoc[] :level: Beginner :technologies: CDI, WebSocket, JSON-P :openshift: true +:portedToGlow: true [abstract] Shows how to use WebSockets with JSON to broadcast information to all open WebSocket sessions in {productName}. diff --git a/websocket-hello/README.adoc b/websocket-hello/README.adoc index 185033e45e..f64a5ea94c 100644 --- a/websocket-hello/README.adoc +++ b/websocket-hello/README.adoc @@ -5,6 +5,7 @@ include::../shared-doc/attributes.adoc[] :level: Beginner :technologies: WebSocket, CDI, JSF :openshift: true +:portedToGlow: true [abstract] The `websocket-hello` quickstart demonstrates how to create a simple WebSocket application. From 4dd7e52c37c870279f857ecd2959c2dc6e1f116f Mon Sep 17 00:00:00 2001 From: Jason Lee Date: Thu, 20 Apr 2023 08:56:42 -0500 Subject: [PATCH 04/26] [WFLY-17678] Add Micrometer quickstart Add module Develop demo app Document QS --- .../micrometer/overridable-functions.sh | 31 ++ .../workflows/quickstart_micrometer_ci.yml | 15 + README.adoc | 1 + micrometer/README.adoc | 259 ++++++++++++++ micrometer/charts/helm.yaml | 9 + .../charts/opentelemetry-collector.yaml | 110 ++++++ micrometer/configure-micrometer.cli | 9 + micrometer/docker-compose.yaml | 17 + micrometer/otel-collector-config.yaml | 29 ++ micrometer/pom.xml | 327 ++++++++++++++++++ micrometer/restore-configuration.cli | 8 + .../micrometer/JaxRsApplication.java | 8 + .../quickstarts/micrometer/RootResource.java | 124 +++++++ .../micrometer/BasicRuntimeIT.java | 63 ++++ .../quickstarts/micrometer/MicrometerIT.java | 52 +++ pom.xml | 1 + 16 files changed, 1063 insertions(+) create mode 100644 .ci/openshift-ci/build-root/scripts/qs-overrides/micrometer/overridable-functions.sh create mode 100644 .github/workflows/quickstart_micrometer_ci.yml create mode 100644 micrometer/README.adoc create mode 100644 micrometer/charts/helm.yaml create mode 100644 micrometer/charts/opentelemetry-collector.yaml create mode 100644 micrometer/configure-micrometer.cli create mode 100644 micrometer/docker-compose.yaml create mode 100644 micrometer/otel-collector-config.yaml create mode 100644 micrometer/pom.xml create mode 100644 micrometer/restore-configuration.cli create mode 100644 micrometer/src/main/java/org/wildfly/quickstarts/micrometer/JaxRsApplication.java create mode 100644 micrometer/src/main/java/org/wildfly/quickstarts/micrometer/RootResource.java create mode 100644 micrometer/src/test/java/org/wildfly/quickstarts/micrometer/BasicRuntimeIT.java create mode 100644 micrometer/src/test/java/org/wildfly/quickstarts/micrometer/MicrometerIT.java diff --git a/.ci/openshift-ci/build-root/scripts/qs-overrides/micrometer/overridable-functions.sh b/.ci/openshift-ci/build-root/scripts/qs-overrides/micrometer/overridable-functions.sh new file mode 100644 index 0000000000..3f2f356e3f --- /dev/null +++ b/.ci/openshift-ci/build-root/scripts/qs-overrides/micrometer/overridable-functions.sh @@ -0,0 +1,31 @@ +function runPostHelmInstallCommands() { + oc apply -f charts/opentelemetry-collector.yaml +} + + +function getMvnVerifyExtraArguments() +{ + mgmtHostRoute=$(oc get route otelcol-grpc --template='{{ .spec.host }}') + echo "-Dopentelemetry.collector.host=https://opentelemetry" +} + + +function cleanPrerequisites() +{ + echo "Removing all opentelemetry-tracing resources" + oc delete route otelcol-grpc + oc delete route otelcol-prometheus + oc delete service opentelemetrycollector + oc delete deployment opentelemetrycollector + oc delete configmap collector-config +} + + +function testsFailed() { + echo "----> Getting status of all pods" + oc get pods + echo "----> Checking logs for postgres pod" + echo oc logs todo-backend-postgresql-0 + echo "----> Checking events" + oc get events +} diff --git a/.github/workflows/quickstart_micrometer_ci.yml b/.github/workflows/quickstart_micrometer_ci.yml new file mode 100644 index 0000000000..50fd337419 --- /dev/null +++ b/.github/workflows/quickstart_micrometer_ci.yml @@ -0,0 +1,15 @@ +name: WildFly Micrometer Quickstart CI + +on: + pull_request: + types: [opened, synchronize, reopened, ready_for_review] + paths: + - 'micrometer/**' + - '.github/workflows/quickstart_ci.yml' +jobs: + call-quickstart_ci: + uses: ./.github/workflows/quickstart_ci.yml + with: + QUICKSTART_PATH: micrometer + TEST_PROVISIONED_SERVER: true + TEST_BOOTABLE_JAR: true diff --git a/README.adoc b/README.adoc index 8ac1cf238d..d8b305f01f 100644 --- a/README.adoc +++ b/README.adoc @@ -176,6 +176,7 @@ NOTE: Some of these quickstarts use the H2 database included with {productNameFu | link:logging/README{outfilesuffix}[logging]|Logging | The `logging` quickstart demonstrates how to configure different logging levels in {productName}. | Intermediate | _none_ | link:mail/README{outfilesuffix}[mail]|JavaMail, CDI, JSF | The `mail` quickstart demonstrates how to send and receive emails using CDI and JSF and with custom Mail provider configured in {productName}. | Beginner | _none_ | link:messaging-clustering-singleton/README{outfilesuffix}[messaging-clustering-singleton]|JMS, MDB, Clustering | The `messaging-clustering-singleton` quickstart uses a JMS topic and a queue to demonstrate clustering using {productName} messaging with MDB singleton configuration where only one node in the cluster will be active. | Advanced | _none_ +| link:micrometer/README{outfilesuffix}[micrometer]|Micrometer | The `micrometer` quickstart demonstrates the use of the Micrometer library in {productName}. | Beginner | _none_ | link:microprofile-config/README{outfilesuffix}[microprofile-config]|MicroProfile Config | The `microprofile-config` quickstart demonstrates the use of the MicroProfile Config specification in {productName}. | Beginner | _none_ | link:microprofile-fault-tolerance/README{outfilesuffix}[microprofile-fault-tolerance]|MicroProfile, Fault Tolerance | The `microprofile-fault-tolerance` quickstart demonstrates how to use Eclipse MicroProfile Fault Tolerance in {productName}. | Intermediate | _none_ | link:microprofile-health/README{outfilesuffix}[microprofile-health]|MicroProfile Health | The `microprofile-health` quickstart demonstrates the use of the MicroProfile Health specification in {productName}. | Beginner | _none_ diff --git a/micrometer/README.adoc b/micrometer/README.adoc new file mode 100644 index 0000000000..08ae90c938 --- /dev/null +++ b/micrometer/README.adoc @@ -0,0 +1,259 @@ +include::../shared-doc/attributes.adoc[] + += micrometer: Micrometer QuickStart +:author: Jason Lee +:level: Beginner +:technologies: Micrometer +:openshift: true + +[abstract] +The `micrometer` quickstart demonstrates the use of the Micrometer library in {productName}. + +:standalone-server-type: default +:archiveType: war +:archiveName: {artifactId} +:restoreScriptName: restore-configuration.cli + +== What is it? + +https://micrometer.io[Micrometer] is a vendor-neutral facade that allows application developers to collect and report application and system metrics to the backend of their choice in an entirely portable manner. By simply replacing the `MeterRegistry` used, or combining them in Micrometer's `CompositeRegistry` data can be exported a variety of monitoring systems with no application code changes. + +== Architecture + +In this quickstart, we will build a small, simple application that shows the usage of a number of Micrometer's `Meter` implementations. We will also demonstrate the means by which {productName} exports the metrics data, which is via the https://opentelemetry.io/docs/reference/specification/protocol/otlp/[OpenTelemetry Protocol (OTLP)] to the https://opentelemetry.io/docs/collector/[OpenTelemetry Collector]. To provide simpler access to the published metrics, the Collector will be configured with a Prometheus endpoint, from which we can scrape data. + +== Prerequisites + +To complete this guide, you will need: + +* less than 15 minutes +* JDK 11+ installed with `JAVA_HOME` configured appropriately +* Apache Maven 3.5.3+ + +include::../shared-doc/use-of-jboss-home-name.adoc[leveloffset=+1] + +== Steps + +[[configure_the_server]] +=== Configure the Server + +You enable Micrometer by running JBoss CLI commands. For your convenience, this quickstart batches the commands into a `configure-micrometer.cli` script provided in the root directory of this quickstart. + +. Before you begin, make sure you do the following: + +* xref:back_up_standalone_server_configuration[Back up the {productName} standalone server configuration] as described above. +* xref:start_the_eap_standalone_server[Start the {productName} server with the standalone default profile] as described above. + +. Review the `configure-micrometer.cli` file in the root of this quickstart directory. This script adds the configuration that enables Micrometer for the quickstart components. Comments in the script describe the purpose of each block of commands. +. Open a new terminal, navigate to the root directory of this quickstart, and run the following command, replacing `__{jbossHomeName}__` with the path to your server: ++ +[source,subs="+quotes,attributes+",options="nowrap"] +---- +$ __{jbossHomeName}__/bin/jboss-cli.sh --connect --file=configure-micrometer.cli +---- ++ +NOTE: For Windows, use the `__{jbossHomeName}__\bin\jboss-cli.bat` script. ++ + +You should see the following result when you run the script: ++ +[source,options="nowrap"] +---- +The batch executed successfully +process-state: reload-required +---- + +. You'll need to reload the configuration after that: ++ +[source,subs="+quotes,attributes+",options="nowrap"] +---- +$ __{jbossHomeName}__/bin/jboss-cli.sh --connect --commands=reload +---- + +[[start_opentelemetry_collector]] +=== Starting the OpenTelemetry Collector + +By default, {productName} will publish metrics every 10 seconds, so you will soon start seeing errors about a refused connection. This is because we told {productName} to publish to a server that is not there, so we need to fix that. To make that as simple as possible, you can use Docker Compose to start an instance of the OpenTelemetry Collector: + +[source,yaml] +---- +include::docker-compose.yaml[] +---- + +We also need to provide a configuration file for the collector: + +[source,yaml] +---- +include::otel-collector-config.yaml[] +---- + +We can now bring up the collector instance: + +[source,bash] +---- +$ docker-compose up +---- + +The service should be available almost immediately, which you can verify by looking at the Prometheus endpoint we've configured by pointing your browser at http://localhost:1234/metrics[]. You should see quite a few metrics listed, none of which are what our application has registered. What you're seeing are the system and JVM metrics automatically registered and published by {productName} to give systems/applications administrators a comprehensive view of system health and performance. + + +=== Registering metrics + +Micrometer uses a programmatic approach to metrics definition, as opposed the more declarative, annotation-based approach of other libraries. Because of that, we need to explicitly register our `Meter` s before they can be used: + +[source,java] +---- +@Path("/") +@ApplicationScoped +public class RootResource { + // ... + @Inject + private MeterRegistry registry; + + private Counter performCheckCounter; + private Counter originalCounter; + private Counter duplicatedCounter; + + @PostConstruct + private void createMeters() { + Gauge.builder("prime.highestSoFar", () -> highestPrimeNumberSoFar) + .description("Highest prime number so far.") + .register(registry); + performCheckCounter = Counter + .builder("prime.performedChecks") + .description("How many prime checks have been performed.") + .register(registry); + originalCounter = Counter + .builder("prime.duplicatedCounter") + .tags(List.of(Tag.of("type", "original"))) + .register(registry); + duplicatedCounter = Counter + .builder("prime.duplicatedCounter") + .tags(List.of(Tag.of("type", "copy"))) + .register(registry); + } + // ... +} +---- + +Notice that we start by `@Inject` ing the `MeterRegistry`. This is a {productName}-managed instance, so all applications need to do it inject it and start using. Once we have that, we can use to build and register our meters, which we do in `@PostConstuct private void createMeters()` + +[NOTE] +==== +This must be done _post_-construction, as the `MeterRegistry` must be injected before it can be used to register the meters. +==== + +In this example, we register several different types to demonstrate their use. With those registered, we can start writing application logic: + +[source,java] +---- +@GET +@Path("/prime/{number}") +public String checkIfPrime(@PathParam("number") long number) throws Exception { + performCheckCounter.increment(); + + Timer timer = registry.timer("prime.timer"); + + return timer.recordCallable(() -> { + + if (number < 1) { + return "Only natural numbers can be prime numbers."; + } + + if (number == 1) { + return "1 is not prime."; + } + + if (number == 2) { + return "2 is prime."; + } + + if (number % 2 == 0) { + return number + " is not prime, it is divisible by 2."; + } + + for (int i = 3; i < Math.floor(Math.sqrt(number)) + 1; i = i + 2) { + try { + Thread.sleep(10); + } catch (InterruptedException e) { + // + } + if (number % i == 0) { + return number + " is not prime, is divisible by " + i + "."; + } + } + + if (number > highestPrimeNumberSoFar) { + highestPrimeNumberSoFar = number; + } + + return number + " is prime."; + }); +} +---- + +This method represents a simple REST endpoint that is able to determine whether the number passed as a path parameter is a prime number. + +include::../shared-doc/build-and-deploy-the-quickstart.adoc[leveloffset=+1] + +=== Access the quickstart application + +You can either access the application via your browser at http://localhost:8080/micrometer/prime/13[], or from the command line: + +[source,bash] +---- +$ curl http://localhost:8080/micrometer/prime/13 +---- + +It should return a simple document: + +[source] +----- +13 is prime. +----- + +Once given enough time to allow {productName} to publish metrics updates, you now see your application's meters reported in the http://localhost:1234/metrics[Prometheus export]. You can also view them via the command-line: + +[source,bash] +---- +$ curl -s http://localhost:1234/metrics | grep "prime_" +# HELP prime_duplicatedCounter +# TYPE prime_duplicatedCounter counter +prime_duplicatedCounter{job="wildfly",type="copy"} 0 +prime_duplicatedCounter{job="wildfly",type="original"} 0 +# HELP prime_highestSoFar Highest prime number so far. +# TYPE prime_highestSoFar gauge +prime_highestSoFar{job="wildfly"} 13 +# HELP prime_performedChecks How many prime checks have been performed. +# TYPE prime_performedChecks counter +prime_performedChecks{job="wildfly"} 1 +# HELP prime_timer +# TYPE prime_timer histogram +prime_timer_bucket{job="wildfly",le="+Inf"} 1 +prime_timer_sum{job="wildfly"} 10.941035 +prime_timer_count{job="wildfly"} 1 + +---- + +Notice that all four meters registered in the `@PostConstruct` method as well as the `Timer` in our endpoint method have all been published. + +// Server Distribution Testing +include::../shared-doc/run-integration-tests-with-server-distribution.adoc[leveloffset=+2] +// Undeploy the Quickstart +include::../shared-doc/undeploy-the-quickstart.adoc[leveloffset=+2] +// Restore the {productName} Standalone Server Configuration +include::../shared-doc/restore-standalone-server-configuration.adoc[leveloffset=+2] +// Restore the {productName} Standalone Server Configuration Manually +include::../shared-doc/restore-standalone-server-configuration-manual.adoc[leveloffset=+3] +// Build and run sections for other environments/builds +ifndef::ProductRelease,EAPXPRelease[] +include::../shared-doc/build-and-run-the-quickstart-with-provisioned-server.adoc[leveloffset=+1] +endif::[] +// Bootable JAR +include::../shared-doc/build-and-run-the-quickstart-with-bootable-jar.adoc[leveloffset=+1] +// OpenShift +include::../shared-doc/build-and-run-the-quickstart-with-openshift.adoc[leveloffset=+1] + +== Conclusion + +Micrometer provides a de facto standard way of capturing and publishing metrics to the monitoring solution of your choice. {productName} provides a convenient, out-of-the-box integration of Micrometer to make it easier to capture those metrics and monitor your application's health and performance. For more information on Micrometer, please refer to the project's https://micrometer.io[website]. diff --git a/micrometer/charts/helm.yaml b/micrometer/charts/helm.yaml new file mode 100644 index 0000000000..c0bbbce795 --- /dev/null +++ b/micrometer/charts/helm.yaml @@ -0,0 +1,9 @@ +build: + uri: https://github.com/wildfly/quickstart.git + ref: main + contextDir: micrometer +deploy: + replicas: 1 + env: + - name: OTEL_COLLECTOR_HOST + value: "opentelemetrycollector" diff --git a/micrometer/charts/opentelemetry-collector.yaml b/micrometer/charts/opentelemetry-collector.yaml new file mode 100644 index 0000000000..c163a8b874 --- /dev/null +++ b/micrometer/charts/opentelemetry-collector.yaml @@ -0,0 +1,110 @@ +--- +apiVersion: v1 +kind: ConfigMap +metadata: + name: collector-config +data: + collector.yml: | + receivers: + otlp: + protocols: + grpc: + http: + processors: + exporters: + logging: + verbosity: detailed + prometheus: + endpoint: "0.0.0.0:1234" + service: + pipelines: + metrics: + receivers: [otlp] + processors: [] + exporters: [logging,prometheus] +--- +apiVersion: apps/v1 +kind: Deployment +metadata: + name: opentelemetrycollector +spec: + replicas: 1 + selector: + matchLabels: + app.kubernetes.io/name: opentelemetrycollector + template: + metadata: + labels: + app.kubernetes.io/name: opentelemetrycollector + spec: + containers: + - name: otelcol + args: + - --config=/conf/collector.yml + image: otel/opentelemetry-collector:0.89.0 + volumeMounts: + - mountPath: /conf + name: collector-config + volumes: + - configMap: + items: + - key: collector.yml + path: collector.yml + name: collector-config + name: collector-config +--- +apiVersion: v1 +kind: Service +metadata: + name: opentelemetrycollector +spec: + ports: + - name: grpc-otlp + port: 4317 + protocol: TCP + targetPort: 4317 + - name: grpc-http + port: 4318 + protocol: TCP + targetPort: 4318 + - name: prometheus + port: 1234 + protocol: TCP + targetPort: 1234 + selector: + app.kubernetes.io/name: opentelemetrycollector + type: ClusterIP +--- +apiVersion: route.openshift.io/v1 +kind: Route +metadata: + name: otelcol-grpc + labels: + app.kubernetes.io/name: microprofile +spec: + port: + targetPort: grpc-http + to: + kind: Service + name: opentelemetrycollector + tls: + termination: edge + insecureEdgeTerminationPolicy: Redirect + wildcardPolicy: None +--- +apiVersion: route.openshift.io/v1 +kind: Route +metadata: + name: otelcol-prometheus + labels: + app.kubernetes.io/name: microprofile +spec: + port: + targetPort: prometheus + to: + kind: Service + name: opentelemetrycollector + tls: + termination: edge + insecureEdgeTerminationPolicy: Redirect + wildcardPolicy: None diff --git a/micrometer/configure-micrometer.cli b/micrometer/configure-micrometer.cli new file mode 100644 index 0000000000..58ff2e4966 --- /dev/null +++ b/micrometer/configure-micrometer.cli @@ -0,0 +1,9 @@ +# CLI script to enable micrometer for the quickstart application in the application server +if (outcome != success) of /extension=org.wildfly.extension.micrometer:read-resource + /extension=org.wildfly.extension.micrometer:add + /subsystem=micrometer:add() +end-if + +# Configure the endpoint for metrics publication +/subsystem=micrometer:write-attribute(name=endpoint, value="http://${opentelemetry.collector.host:localhost}:4318/v1/metrics") +/subsystem=micrometer:write-attribute(name="step",value="1") diff --git a/micrometer/docker-compose.yaml b/micrometer/docker-compose.yaml new file mode 100644 index 0000000000..7b419c1953 --- /dev/null +++ b/micrometer/docker-compose.yaml @@ -0,0 +1,17 @@ +version: "3" + +services: + otel-collector: + image: otel/opentelemetry-collector + command: [--config=/etc/otel-collector-config.yaml] + volumes: + - ./otel-collector-config.yaml:/etc/otel-collector-config.yaml + ports: + - 1888:1888 # pprof extension + - 8888:8888 # Prometheus metrics exposed by the collector + - 8889:8889 # Prometheus exporter metrics + - 13133:13133 # health_check extension + - 4317:4317 # OTLP gRPC receiver + - 4318:4318 # OTLP http receiver + - 55679:55679 # zpages extension + - 1234:1234 # /metrics endpoint diff --git a/micrometer/otel-collector-config.yaml b/micrometer/otel-collector-config.yaml new file mode 100644 index 0000000000..aa603ad2e6 --- /dev/null +++ b/micrometer/otel-collector-config.yaml @@ -0,0 +1,29 @@ +extensions: + health_check: + pprof: + endpoint: 0.0.0.0:1777 + zpages: + endpoint: 0.0.0.0:55679 + +receivers: + otlp: + protocols: + grpc: + http: + +processors: + batch: + +exporters: + prometheus: + endpoint: "0.0.0.0:1234" + +service: + pipelines: + metrics: + receivers: [otlp] + processors: [batch] + exporters: [prometheus] + + extensions: [health_check, pprof, zpages] + diff --git a/micrometer/pom.xml b/micrometer/pom.xml new file mode 100644 index 0000000000..a1c647da02 --- /dev/null +++ b/micrometer/pom.xml @@ -0,0 +1,327 @@ + + + 4.0.0 + + org.wildfly.quickstarts + wildfly-quickstart-parent + + 6 + + + + micrometer + 31.0.0.Final-SNAPSHOT + war + + Quickstart: micrometer + + + + 31.0.0.Beta1 + + ${version.server} + 4.2.1.Final + 10.0.0.Final + 5.0.0.Final + + + + + jboss-public-maven-repository + JBoss Public Maven Repository + https://repository.jboss.org/nexus/content/groups/public/ + + true + never + + + true + never + + default + + + redhat-ga-maven-repository + Red Hat GA Maven Repository + https://maven.repository.redhat.com/ga/ + + true + never + + + true + never + + default + + + + + + jboss-public-maven-repository + JBoss Public Maven Repository + https://repository.jboss.org/nexus/content/groups/public/ + + true + + + true + + + + redhat-ga-maven-repository + Red Hat GA Maven Repository + https://maven.repository.redhat.com/ga/ + + true + + + true + + + + + + + + org.wildfly.bom + wildfly-ee-with-tools + ${version.bom.ee} + pom + import + + + + + org.wildfly + wildfly-common-expansion-dependency-management + ${version.server} + pom + import + + + + + + + + io.micrometer + micrometer-core + provided + + + + + jakarta.enterprise + jakarta.enterprise.cdi-api + provided + + + jakarta.inject + jakarta.inject-api + provided + + + jakarta.annotation + jakarta.annotation-api + provided + + + + jakarta.ws.rs + jakarta.ws.rs-api + provided + + + + + junit + junit + test + + + + + + ${project.artifactId} + + + + org.wildfly.plugins + wildfly-maven-plugin + ${version.plugin.wildfly} + + + org.wildfly.plugins + wildfly-jar-maven-plugin + ${version.plugin.wildfly-jar} + + + + + + org.apache.maven.plugins + maven-compiler-plugin + + 11 + 11 + + + + + + + + provisioned-server + + + + org.wildfly.plugins + wildfly-maven-plugin + + + + org.wildfly:wildfly-galleon-pack:${version.server} + + + + + cdi + jaxrs-server + micrometer + + + + + + + + true + + + + + ROOT.war + + + + + package + + + + + + + + + + bootable-jar + + + + org.wildfly.plugins + wildfly-jar-maven-plugin + + wildfly@maven(org.jboss.universe:community-universe)#${version.server} + + cdi + jaxrs-server + micrometer + + + true + + + + + + + + + + + + + package + + + + + + + + + + openshift + + + + org.wildfly.plugins + wildfly-maven-plugin + + + + org.wildfly:wildfly-galleon-pack:${version.server} + + + org.wildfly.cloud:wildfly-cloud-galleon-pack:${version.pack.cloud} + + + + cdi + jaxrs-server + micrometer + + ROOT.war + + + + + + true + + + + + + + package + + + + + + + + + + integration-testing + + + + org.apache.maven.plugins + maven-failsafe-plugin + + + **/*IT + + + + + + integration-test + + + + + + + + + diff --git a/micrometer/restore-configuration.cli b/micrometer/restore-configuration.cli new file mode 100644 index 0000000000..697b49eed2 --- /dev/null +++ b/micrometer/restore-configuration.cli @@ -0,0 +1,8 @@ +# CLI script to restore the application server configuration that was modified to run the quickstart + +# Remove the WildFly Micrometer extension +/subsystem=micrometer:remove +/extension=org.wildfly.extension.micrometer:remove + +# Reload the server configuration +reload diff --git a/micrometer/src/main/java/org/wildfly/quickstarts/micrometer/JaxRsApplication.java b/micrometer/src/main/java/org/wildfly/quickstarts/micrometer/JaxRsApplication.java new file mode 100644 index 0000000000..a3f6fde6de --- /dev/null +++ b/micrometer/src/main/java/org/wildfly/quickstarts/micrometer/JaxRsApplication.java @@ -0,0 +1,8 @@ +package org.wildfly.quickstarts.micrometer; + +import jakarta.ws.rs.ApplicationPath; +import jakarta.ws.rs.core.Application; + +@ApplicationPath("/") +public class JaxRsApplication extends Application { +} diff --git a/micrometer/src/main/java/org/wildfly/quickstarts/micrometer/RootResource.java b/micrometer/src/main/java/org/wildfly/quickstarts/micrometer/RootResource.java new file mode 100644 index 0000000000..6f342a4ad6 --- /dev/null +++ b/micrometer/src/main/java/org/wildfly/quickstarts/micrometer/RootResource.java @@ -0,0 +1,124 @@ +package org.wildfly.quickstarts.micrometer; + +import jakarta.annotation.PostConstruct; +import jakarta.enterprise.context.ApplicationScoped; +import jakarta.inject.Inject; +import jakarta.ws.rs.GET; +import jakarta.ws.rs.Path; +import jakarta.ws.rs.PathParam; +import jakarta.ws.rs.Produces; +import jakarta.ws.rs.core.MediaType; +import io.micrometer.core.instrument.Counter; +import io.micrometer.core.instrument.Gauge; +import io.micrometer.core.instrument.MeterRegistry; +import io.micrometer.core.instrument.Tag; +import io.micrometer.core.instrument.Timer; + +import java.util.List; + +@Path("/") +@ApplicationScoped +public class RootResource { + static final String METER_HIGHEST_SO_FAR = "prime_highestSoFar"; + static final String METER_PERFORMED_CHECKS = "prime_performedChecks"; + static final String METER_DUPLICATED_COUNTER = "prime_duplicatedCounter"; + private long highestPrimeNumberSoFar = 2; + + @Inject + private MeterRegistry registry; + + private Counter performCheckCounter; + private Counter originalCounter; + private Counter duplicatedCounter; + + @PostConstruct + private void createMeters() { + Gauge.builder(METER_HIGHEST_SO_FAR, () -> highestPrimeNumberSoFar) + .description("Highest prime number so far.") + .register(registry); + performCheckCounter = Counter + .builder(METER_PERFORMED_CHECKS) + .description("How many prime checks have been performed.") + .register(registry); + originalCounter = Counter + .builder(METER_DUPLICATED_COUNTER) + .tags(List.of(Tag.of("type", "original"))) + .register(registry); + duplicatedCounter = Counter + .builder(METER_DUPLICATED_COUNTER) + .tags(List.of(Tag.of("type", "copy"))) + .register(registry); + } + + @GET + @Produces(MediaType.TEXT_PLAIN) + public String getRootResponse() { + return "Micrometer quickstart deployed successfully. You can find the available operations in the included README file."; + } + + @GET + @Path("/prime/{number}") + public String checkIfPrime(@PathParam("number") long number) throws Exception { + performCheckCounter.increment(); + + Timer timer = registry.timer("prime.timer"); + + return timer.recordCallable(() -> { + + if (number < 1) { + return "Only natural numbers can be prime numbers."; + } + + if (number == 1) { + return "1 is not prime."; + } + + if (number == 2) { + return "2 is prime."; + } + + if (number % 2 == 0) { + return number + " is not prime, it is divisible by 2."; + } + + for (int i = 3; i < Math.floor(Math.sqrt(number)) + 1; i = i + 2) { + try { + Thread.sleep(10); + } catch (InterruptedException e) { + // + } + if (number % i == 0) { + return number + " is not prime, is divisible by " + i + "."; + } + } + + if (number > highestPrimeNumberSoFar) { + highestPrimeNumberSoFar = number; + } + + return number + " is prime."; + }); + } + + @GET + @Path("/prime/highest") + public String highestPrimeNumberSoFar() { + return "The highest prime number so far is " + highestPrimeNumberSoFar + "."; + } + + @GET + @Path("/duplicates") + @Produces(MediaType.TEXT_PLAIN) + public String duplicates() { + originalCounter.increment(); + return "duplicated metrics"; + } + + @GET + @Path("/duplicates2") + @Produces(MediaType.TEXT_PLAIN) + public String duplicates2() { + duplicatedCounter.increment(); + return "duplicated metrics"; + } +} diff --git a/micrometer/src/test/java/org/wildfly/quickstarts/micrometer/BasicRuntimeIT.java b/micrometer/src/test/java/org/wildfly/quickstarts/micrometer/BasicRuntimeIT.java new file mode 100644 index 0000000000..7a08a62fb5 --- /dev/null +++ b/micrometer/src/test/java/org/wildfly/quickstarts/micrometer/BasicRuntimeIT.java @@ -0,0 +1,63 @@ +/* + * Copyright 2023 Red Hat, Inc. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package org.wildfly.quickstarts.micrometer; + +import static org.junit.Assert.assertEquals; + +import java.io.IOException; +import java.net.URI; +import java.net.URISyntaxException; +import java.net.http.HttpClient; +import java.net.http.HttpRequest; +import java.net.http.HttpResponse; +import java.time.Duration; + +import org.junit.Test; + +public class BasicRuntimeIT { + private static final String DEFAULT_SERVER_HOST = "http://localhost:8080/micrometer"; + + @Test + public void testHTTPEndpointIsAvailable() throws IOException, InterruptedException, URISyntaxException { + String applicationUrl = getApplicationUrl(); + + final HttpRequest request = HttpRequest.newBuilder() + .uri(new URI(applicationUrl)) + .GET() + .build(); + + final HttpResponse response = getHttpClient().send(request, HttpResponse.BodyHandlers.ofString()); + assertEquals(200, response.statusCode()); + } + + static String getApplicationUrl() { + String serverHost = System.getenv("SERVER_HOST"); + if (serverHost == null) { + serverHost = System.getProperty("server.host"); + } + if (serverHost == null) { + serverHost = DEFAULT_SERVER_HOST; + } + return serverHost; + } + + static HttpClient getHttpClient() { + return HttpClient.newBuilder() + .followRedirects(HttpClient.Redirect.ALWAYS) + .connectTimeout(Duration.ofMinutes(1)) + .build(); + } +} diff --git a/micrometer/src/test/java/org/wildfly/quickstarts/micrometer/MicrometerIT.java b/micrometer/src/test/java/org/wildfly/quickstarts/micrometer/MicrometerIT.java new file mode 100644 index 0000000000..54d5ba845b --- /dev/null +++ b/micrometer/src/test/java/org/wildfly/quickstarts/micrometer/MicrometerIT.java @@ -0,0 +1,52 @@ +/* + * Copyright 2023 Red Hat, Inc. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package org.wildfly.quickstarts.micrometer; + +import static org.junit.Assert.assertEquals; + +import java.io.IOException; +import java.net.URI; +import java.net.URISyntaxException; +import java.net.http.HttpClient; +import java.net.http.HttpRequest; +import java.net.http.HttpResponse; + +import org.junit.Test; + +public class MicrometerIT { + public static final int MAX_NUMBER = 15; + + @Test + public void makeSeveralApplicationRequests() throws IOException, InterruptedException, URISyntaxException { + String applicationUrl = BasicRuntimeIT.getApplicationUrl(); + + final HttpClient client = BasicRuntimeIT.getHttpClient(); + final HttpRequest requestPrime = HttpRequest.newBuilder().uri(new URI(applicationUrl + "/prime/13")).GET().build(); + final HttpRequest requestHighest = HttpRequest.newBuilder().uri(new URI(applicationUrl + "/prime/highest")).GET().build(); + final HttpRequest requestDuplicates = HttpRequest.newBuilder().uri(new URI(applicationUrl + "/duplicates")).GET().build(); + final HttpRequest requestDuplicates2 = HttpRequest.newBuilder().uri(new URI(applicationUrl + "/duplicates2")).GET().build(); + + + + // Make several requests to make the metrics more interesting + for (int i = 0; i < MAX_NUMBER; i++) { + assertEquals(200, client.send(requestPrime, HttpResponse.BodyHandlers.ofString()).statusCode()); + assertEquals(200, client.send(requestHighest, HttpResponse.BodyHandlers.ofString()).statusCode()); + assertEquals(200, client.send(requestDuplicates, HttpResponse.BodyHandlers.ofString()).statusCode()); + assertEquals(200, client.send(requestDuplicates2, HttpResponse.BodyHandlers.ofString()).statusCode()); + } + } +} diff --git a/pom.xml b/pom.xml index 04d2d5d448..b0e1bfdf83 100644 --- a/pom.xml +++ b/pom.xml @@ -330,6 +330,7 @@ logging mail messaging-clustering-singleton + micrometer microprofile-config microprofile-fault-tolerance microprofile-health From 6077a06fab8b3448630aa22199ec7e247fa984a7 Mon Sep 17 00:00:00 2001 From: Eduardo Martins Date: Wed, 17 Jan 2024 10:52:36 +0000 Subject: [PATCH 05/26] [WFLY-17678] Add Micrometer quickstart --- micrometer/README.adoc | 23 ++++++++++++++++++++--- micrometer/docker-compose.yaml | 2 +- 2 files changed, 21 insertions(+), 4 deletions(-) diff --git a/micrometer/README.adoc b/micrometer/README.adoc index 08ae90c938..3596ac0f89 100644 --- a/micrometer/README.adoc +++ b/micrometer/README.adoc @@ -29,11 +29,15 @@ To complete this guide, you will need: * less than 15 minutes * JDK 11+ installed with `JAVA_HOME` configured appropriately * Apache Maven 3.5.3+ +* Docker Compose, or alternatively Podman Compose include::../shared-doc/use-of-jboss-home-name.adoc[leveloffset=+1] == Steps +// Start the {productName} Standalone Server +include::../shared-doc/start-the-standalone-server.adoc[leveloffset=+1] + [[configure_the_server]] === Configure the Server @@ -73,21 +77,25 @@ $ __{jbossHomeName}__/bin/jboss-cli.sh --connect --commands=reload [[start_opentelemetry_collector]] === Starting the OpenTelemetry Collector -By default, {productName} will publish metrics every 10 seconds, so you will soon start seeing errors about a refused connection. This is because we told {productName} to publish to a server that is not there, so we need to fix that. To make that as simple as possible, you can use Docker Compose to start an instance of the OpenTelemetry Collector: +By default, {productName} will publish metrics every 10 seconds, so you will soon start seeing errors about a refused connection. + +This is because we told {productName} to publish to a server that is not there, so we need to fix that. To make that as simple as possible, you can use Docker Compose to start an instance of the OpenTelemetry Collector. + +The Docker Compose configuration file is `docker-compose.yaml`: [source,yaml] ---- include::docker-compose.yaml[] ---- -We also need to provide a configuration file for the collector: +The Collector server configuration file is `otel-collector-config.yaml`: [source,yaml] ---- include::otel-collector-config.yaml[] ---- -We can now bring up the collector instance: +We can now bring up the collector server instance: [source,bash] ---- @@ -96,6 +104,15 @@ $ docker-compose up The service should be available almost immediately, which you can verify by looking at the Prometheus endpoint we've configured by pointing your browser at http://localhost:1234/metrics[]. You should see quite a few metrics listed, none of which are what our application has registered. What you're seeing are the system and JVM metrics automatically registered and published by {productName} to give systems/applications administrators a comprehensive view of system health and performance. +[NOTE] +==== +You may use Podman as alternative to Docker if you prefer, in such case the command should be `podman-compose up`. +==== + +[NOTE] +==== +If your environment does not support Docker or Podman, please refer to https://opentelemetry.io/docs/collector/installation[Otel Collector documentation] for alternatives on how to install and run the OpenTelemetry Collector. +==== === Registering metrics diff --git a/micrometer/docker-compose.yaml b/micrometer/docker-compose.yaml index 7b419c1953..6b8cb664d7 100644 --- a/micrometer/docker-compose.yaml +++ b/micrometer/docker-compose.yaml @@ -5,7 +5,7 @@ services: image: otel/opentelemetry-collector command: [--config=/etc/otel-collector-config.yaml] volumes: - - ./otel-collector-config.yaml:/etc/otel-collector-config.yaml + - ./otel-collector-config.yaml:/etc/otel-collector-config.yaml:Z ports: - 1888:1888 # pprof extension - 8888:8888 # Prometheus metrics exposed by the collector From eb4238c31810a06830a388dd47c2bfc36d48f902 Mon Sep 17 00:00:00 2001 From: Jason Lee Date: Fri, 17 Dec 2021 12:09:31 -0600 Subject: [PATCH 06/26] [WFLY-15849] OpenTelemetry Quickstart --- .../workflows/quickstart_opentelemetry_ci.yml | 16 + opentelemetry-tracing/README.adoc | 240 ++++++++++++++ opentelemetry-tracing/charts/helm.yaml | 6 + .../configure-opentelemetry.cli | 11 + opentelemetry-tracing/docker-compose.yaml | 16 + opentelemetry-tracing/jaeger.sh | 11 + .../otel-collector-config.yaml | 29 ++ opentelemetry-tracing/pom.xml | 312 ++++++++++++++++++ .../restore-configuration.cli | 8 + .../opentelemetry/ExplicitlyTracedBean.java | 31 ++ .../opentelemetry/JakartaRestApplication.java | 10 + .../opentelemetry/TracedResource.java | 54 +++ .../opentelemetry/BasicRuntimeIT.java | 63 ++++ .../opentelemetry/OpenTelemetryIT.java | 47 +++ pom.xml | 1 + 15 files changed, 855 insertions(+) create mode 100644 .github/workflows/quickstart_opentelemetry_ci.yml create mode 100644 opentelemetry-tracing/README.adoc create mode 100644 opentelemetry-tracing/charts/helm.yaml create mode 100644 opentelemetry-tracing/configure-opentelemetry.cli create mode 100644 opentelemetry-tracing/docker-compose.yaml create mode 100755 opentelemetry-tracing/jaeger.sh create mode 100644 opentelemetry-tracing/otel-collector-config.yaml create mode 100644 opentelemetry-tracing/pom.xml create mode 100644 opentelemetry-tracing/restore-configuration.cli create mode 100644 opentelemetry-tracing/src/main/java/org/wildfly/quickstarts/opentelemetry/ExplicitlyTracedBean.java create mode 100644 opentelemetry-tracing/src/main/java/org/wildfly/quickstarts/opentelemetry/JakartaRestApplication.java create mode 100644 opentelemetry-tracing/src/main/java/org/wildfly/quickstarts/opentelemetry/TracedResource.java create mode 100644 opentelemetry-tracing/src/test/java/org/wildfly/quickstarts/opentelemetry/BasicRuntimeIT.java create mode 100644 opentelemetry-tracing/src/test/java/org/wildfly/quickstarts/opentelemetry/OpenTelemetryIT.java diff --git a/.github/workflows/quickstart_opentelemetry_ci.yml b/.github/workflows/quickstart_opentelemetry_ci.yml new file mode 100644 index 0000000000..599f47b0a8 --- /dev/null +++ b/.github/workflows/quickstart_opentelemetry_ci.yml @@ -0,0 +1,16 @@ + +name: WildFly opentelemetry-tracing Quickstart CI + +on: + pull_request: + types: [opened, synchronize, reopened, ready_for_review] + paths: + - 'opentelemetry-tracing/**' + - '.github/workflows/quickstart_ci.yml' +jobs: + call-quickstart_ci: + uses: ./.github/workflows/quickstart_ci.yml + with: + QUICKSTART_PATH: opentelemetry-tracing + TEST_PROVISIONED_SERVER: true + TEST_BOOTABLE_JAR: true diff --git a/opentelemetry-tracing/README.adoc b/opentelemetry-tracing/README.adoc new file mode 100644 index 0000000000..e05c062d83 --- /dev/null +++ b/opentelemetry-tracing/README.adoc @@ -0,0 +1,240 @@ +include::../shared-doc/attributes.adoc[] + += opentelemetry-tracing: OpenTelemetry Tracing QuickStart +:author: Jason Lee +:level: Beginner +:technologies: OpenTelemetry Tracing +:openshift: true + +[abstract] +The `opentelemetry-tracing` quickstart demonstrates the use of the OpenTelemetry tracing specification in {productName}. + +:standalone-server-type: default +:archiveType: war +:archiveName: {artifactId} +:restoreScriptName: restore-configuration.cli + + +== What is it? + +OpenTelemetry is a set of APIs, SDKs, tooling and integrations that are designed for the creation and management of +telemetry data such as traces, metrics, and logs. OpenTelemetry support in {productName} is limited to traces only. +{productName}'s support of OpenTelemetry provides out of the box tracing of Jakarta REST calls, as well as +container-managed Jakarta REST Client invocations. Additionally, applications can have injected a `Tracer` instance +in order to create and manage custom `Span`s as a given application may require. These traces are exported +to an OpenTelemetry Collector instance listening on the same host. + +== Architecture + +In this quickstart, we have a collection of CDI beans and REST endpoints that expose functionalities of the OpenTelemetry support in {productName}. + +// Use of {jbossHomeName} +include::../shared-doc/use-of-jboss-home-name.adoc[leveloffset=+1] + +== Prerequisites + +To complete this guide, you will need: + +* less than 15 minutes +* JDK 11+ installed with `JAVA_HOME` configured appropriately +* Apache Maven 3.5.3+ +* Docker Compose, or alternatively Podman Compose + +include::../shared-doc/use-of-jboss-home-name.adoc[leveloffset=+1] + +== Steps + +// Start the {productName} Standalone Server +include::../shared-doc/start-the-standalone-server.adoc[leveloffset=+1] + +[[configure_the_server]] +=== Configure the Server + +You enable OpenTelemetry by running JBoss CLI commands. For your convenience, this quickstart batches the commands into a `configure-opentelemtry.cli` script provided in the root directory of this quickstart. + +. Before you begin, make sure you do the following: + +* xref:back_up_standalone_server_configuration[Back up the {productName} standalone server configuration] as described above. +* xref:start_the_eap_standalone_server[Start the {productName} server with the standalone default profile] as described above. + +. Review the `configure-opentelemtry.cli` file in the root of this quickstart directory. This script adds the configuration that enables OpenTelemetry for the quickstart components. Comments in the script describe the purpose of each block of commands. +. Open a new terminal, navigate to the root directory of this quickstart, and run the following command, replacing `__{jbossHomeName}__` with the path to your server: ++ +[source,subs="+quotes,attributes+",options="nowrap"] +---- +$ __{jbossHomeName}__/bin/jboss-cli.sh --connect --file=configure-opentelemetry.cli +---- ++ +NOTE: For Windows, use the `__{jbossHomeName}__\bin\jboss-cli.bat` script. ++ + +You should see the following result when you run the script: ++ +[source,options="nowrap"] +---- +The batch executed successfully +process-state: reload-required +---- + +. You'll need to reload the configuration after that: ++ +[source,subs="+quotes,attributes+",options="nowrap"] +---- +$ __{jbossHomeName}__/bin/jboss-cli.sh --connect --commands=reload +---- + +[[start_opentelemetry_collector]] +=== Starting the OpenTelemetry Collector + +By default, {productName} will publish traces every 10 seconds, so you will soon start seeing errors about a refused connection. + +This is because we told {productName} to publish to a server that is not there, so we need to fix that. To make that as simple as possible, you can use Docker Compose to start an instance of the OpenTelemetry Collector. + +The Docker Compose configuration file is `docker-compose.yaml`: + +[source,yaml] +---- +include::docker-compose.yaml[] +---- + +The Collector server configuration file is `otel-collector-config.yaml`: + +[source,yaml] +---- +include::otel-collector-config.yaml[] +---- + +We can now bring up the collector instance: + +[source,bash] +---- +$ docker-compose up +---- + +The service should be available almost immediately, which you can verify by looking for the log entry `Everything is ready. Begin running and processing data.`. + +[NOTE] +==== +You may use Podman as alternative to Docker if you prefer, in such case the command should be `podman-compose up`. +==== + +[NOTE] +==== +If your environment does not support Docker or Podman, please refer to +https://opentelemetry.io/docs/collector/installation[Otel Collector documentation] for alternatives on how to install +and run the OpenTelemetry Collector. +==== + +[NOTE] +===== +Part of the value of OpenTelemetry is its vendor-agnostic approach to exporting its various supported signals. As such, +this demo will only log the incoming traces, leaving the relaying of those signals to a downstream aggregation platform +as an exercise for the reader. +===== + +Now we can start adding our custom spans from our application. + +=== Creating traces + +==== Implicit tracing of REST resources + +The OpenTelemetry support in {productName} provides an implicit tracing of all Jakarta REST resources. That means that +for all applications, {productName} will automatically: + +* extract the Span context from the incoming Jakarta REST request +* start a new Span on incoming Jakarta REST request and close it when the request is completed +* inject Span context to any outgoing Jakarta REST request +* start a Span for any outgoing Jakarta REST request and finish the Span when the request is completed + +==== Explicit tracing + +The OpenTelemetry API also supports explicit tracing should your application required it: + +[source,java] +----- +include::src/main/java/org/wildfly/quickstarts/opentelemetry/ExplicitlyTracedBean.java[] +----- + +include::../shared-doc/build-and-deploy-the-quickstart.adoc[leveloffset=+1] + +== Access the quickstart application + +You can either access the application via your browser at http://localhost:8080/opentelemetry-tracing/implicit-trace[], or http://localhost:8080/opentelemetry-tracing/explicit-trace[]. You can also access it from the command line: + +[source,bash] +---- +$ curl http://localhost:8080/opentelemetry-tracing/implicit-trace +$ curl http://localhost:8080/opentelemetry-tracing/explicit-trace +---- + +Either endpoint should return a simple document: + +[source] +----- +hello +----- + +=== View the traces + +You can view the traces by looking at the Collector's log. You should see something like this: + +[source] +----- +otel-collector_1 | 2023-12-13T21:05:28.002Z info TracesExporter {"kind": "exporter", "data_type": "traces", "name": "logging", "resource spans": 1, "spans": 1} +otel-collector_1 | 2023-12-13T21:05:28.002Z info ResourceSpans #0 +otel-collector_1 | Resource SchemaURL: https://opentelemetry.io/schemas/1.20.0 +otel-collector_1 | Resource attributes: +otel-collector_1 | -> service.name: Str(opentelemetry-tracing.war) +otel-collector_1 | -> telemetry.sdk.language: Str(java) +otel-collector_1 | -> telemetry.sdk.name: Str(opentelemetry) +otel-collector_1 | -> telemetry.sdk.version: Str(1.29.0) +otel-collector_1 | ScopeSpans #0 +otel-collector_1 | ScopeSpans SchemaURL: +otel-collector_1 | InstrumentationScope io.smallrye.opentelemetry 2.6.0 +otel-collector_1 | Span #0 +otel-collector_1 | Trace ID : c761e8fadec36d222adac36dcff1f4b1 +otel-collector_1 | Parent ID : +otel-collector_1 | ID : 08f93dd25f75b5cd +otel-collector_1 | Name : GET /opentelemetry-tracing/implicit-trace +otel-collector_1 | Kind : Server +otel-collector_1 | Start time : 2023-12-13 21:05:20.560054393 +0000 UTC +otel-collector_1 | End time : 2023-12-13 21:05:20.621635685 +0000 UTC +otel-collector_1 | Status code : Unset +otel-collector_1 | Status message : +otel-collector_1 | Attributes: +otel-collector_1 | -> net.host.port: Int(8080) +otel-collector_1 | -> http.scheme: Str(http) +otel-collector_1 | -> http.method: Str(GET) +otel-collector_1 | -> http.status_code: Int(200) +otel-collector_1 | -> net.transport: Str(ip_tcp) +otel-collector_1 | -> user_agent.original: Str(curl/8.2.1) +otel-collector_1 | -> net.host.name: Str(localhost) +otel-collector_1 | -> http.route: Str(/opentelemetry-tracing/implicit-trace) +otel-collector_1 | -> http.target: Str(/opentelemetry-tracing/implicit-trace) +otel-collector_1 | -> net.sock.host.addr: Str(127.0.0.1) +otel-collector_1 | {"kind": "exporter", "data_type": "traces", "name": "logging"} +----- + +// Server Distribution Testing +include::../shared-doc/run-integration-tests-with-server-distribution.adoc[leveloffset=+2] +// Undeploy the Quickstart +include::../shared-doc/undeploy-the-quickstart.adoc[leveloffset=+2] +// Restore the {productName} Standalone Server Configuration +include::../shared-doc/restore-standalone-server-configuration.adoc[leveloffset=+2] +// Restore the {productName} Standalone Server Configuration Manually +include::../shared-doc/restore-standalone-server-configuration-manual.adoc[leveloffset=+3] +// Build and run sections for other environments/builds +ifndef::ProductRelease,EAPXPRelease[] +include::../shared-doc/build-and-run-the-quickstart-with-provisioned-server.adoc[leveloffset=+1] +endif::[] +// Bootable JAR +include::../shared-doc/build-and-run-the-quickstart-with-bootable-jar.adoc[leveloffset=+1] +// OpenShift +include::../shared-doc/build-and-run-the-quickstart-with-openshift.adoc[leveloffset=+1] + +== Conclusion + +OpenTelemetry Tracing provides the mechanisms for your application to participate +in the distributed tracing with minimal effort on the application side. The Jakarta REST +resources are always traced by default, but the specification allows you to create +individual spans directly with the CDI injection of the `io.opentelemetry.api.trace.Tracer`. diff --git a/opentelemetry-tracing/charts/helm.yaml b/opentelemetry-tracing/charts/helm.yaml new file mode 100644 index 0000000000..44a27be81b --- /dev/null +++ b/opentelemetry-tracing/charts/helm.yaml @@ -0,0 +1,6 @@ +build: + uri: https://github.com/wildfly/quickstart.git + ref: main + contextDir: opentelemetry-tracing +deploy: + replicas: 1 diff --git a/opentelemetry-tracing/configure-opentelemetry.cli b/opentelemetry-tracing/configure-opentelemetry.cli new file mode 100644 index 0000000000..52c2566afc --- /dev/null +++ b/opentelemetry-tracing/configure-opentelemetry.cli @@ -0,0 +1,11 @@ +# CLI script to enable OpenTelemetry for the quickstart application in the application server +if (outcome != success) of /extension=org.wildfly.extension.opentelemetry:read-resource + /extension=org.wildfly.extension.opentelemetry:add() + /subsystem=opentelemetry:add() +end-if + +/subsystem=opentelemetry:write-attribute(name=endpoint,value=http://localhost:4317) +/subsystem=opentelemetry:write-attribute(name=exporter-type,value=otlp) +/subsystem=opentelemetry:write-attribute(name=sampler-type,value=on) +/subsystem=opentelemetry:write-attribute(name=max-queue-size,value=1) +/subsystem=opentelemetry:write-attribute(name=max-export-batch-size,value=512) diff --git a/opentelemetry-tracing/docker-compose.yaml b/opentelemetry-tracing/docker-compose.yaml new file mode 100644 index 0000000000..b29a3bd18c --- /dev/null +++ b/opentelemetry-tracing/docker-compose.yaml @@ -0,0 +1,16 @@ +version: "3" +volumes: + shared-volume: + # - logs:/var/log +services: + otel-collector: + image: otel/opentelemetry-collector + command: [--config=/etc/otel-collector-config.yaml] + volumes: + - ./otel-collector-config.yaml:/etc/otel-collector-config.yaml:Z + ports: + - 1888:1888 # pprof extension + - 13133:13133 # health_check extension + - 4317:4317 # OTLP gRPC receiver + - 4318:4318 # OTLP http receiver + - 55679:55679 # zpages extension diff --git a/opentelemetry-tracing/jaeger.sh b/opentelemetry-tracing/jaeger.sh new file mode 100755 index 0000000000..c9b26b93c7 --- /dev/null +++ b/opentelemetry-tracing/jaeger.sh @@ -0,0 +1,11 @@ +docker run \ + -e COLLECTOR_ZIPKIN_HOST_PORT=:9411 \ + -p 5775:5775/udp \ + -p 6831:6831/udp \ + -p 6832:6832/udp \ + -p 5778:5778 \ + -p 16686:16686 \ + -p 14268:14268 \ + -p 14250:14250 \ + -p 9411:9411 \ + jaegertracing/all-in-one:latest diff --git a/opentelemetry-tracing/otel-collector-config.yaml b/opentelemetry-tracing/otel-collector-config.yaml new file mode 100644 index 0000000000..cf267458b7 --- /dev/null +++ b/opentelemetry-tracing/otel-collector-config.yaml @@ -0,0 +1,29 @@ +extensions: + health_check: + pprof: + endpoint: 0.0.0.0:1777 + zpages: + endpoint: 0.0.0.0:55679 + +receivers: + otlp: + protocols: + grpc: + http: + +processors: + batch: + +exporters: + logging: + verbosity: detailed + +service: + pipelines: + traces: + receivers: [otlp] + processors: [] + exporters: [logging] + + extensions: [health_check, pprof, zpages] + diff --git a/opentelemetry-tracing/pom.xml b/opentelemetry-tracing/pom.xml new file mode 100644 index 0000000000..1fb282a582 --- /dev/null +++ b/opentelemetry-tracing/pom.xml @@ -0,0 +1,312 @@ + + 4.0.0 + + org.wildfly.quickstarts + wildfly-quickstart-parent + + 6 + + + + opentelemetry-tracing + 31.0.0.Final-SNAPSHOT + war + + Quickstart: opentelemetry-tracing + + + + 31.0.0.Beta1 + + ${version.server} + 4.2.1.Final + 10.0.0.Final + 5.0.0.Final + + + + + jboss-public-maven-repository + JBoss Public Maven Repository + https://repository.jboss.org/nexus/content/groups/public/ + + true + never + + + true + never + + default + + + redhat-ga-maven-repository + Red Hat GA Maven Repository + https://maven.repository.redhat.com/ga/ + + true + never + + + true + never + + default + + + + + + jboss-public-maven-repository + JBoss Public Maven Repository + https://repository.jboss.org/nexus/content/groups/public/ + + true + + + true + + + + redhat-ga-maven-repository + Red Hat GA Maven Repository + https://maven.repository.redhat.com/ga/ + + true + + + true + + + + + + + + org.wildfly.bom + wildfly-ee-with-tools + ${version.bom.ee} + pom + import + + + + + org.wildfly + wildfly-common-expansion-dependency-management + ${version.server} + pom + import + + + + + + + + jakarta.inject + jakarta.inject-api + provided + + + + jakarta.enterprise + jakarta.enterprise.cdi-api + provided + + + + jakarta.ws.rs + jakarta.ws.rs-api + provided + + + + io.opentelemetry + opentelemetry-api + provided + + + + io.opentelemetry + opentelemetry-context + provided + + + + + junit + junit + test + + + + + + ${project.artifactId} + + + + org.wildfly.plugins + wildfly-maven-plugin + ${version.plugin.wildfly} + + + org.wildfly.plugins + wildfly-jar-maven-plugin + ${version.plugin.wildfly-jar} + + + + + + + + provisioned-server + + + + org.wildfly.plugins + wildfly-maven-plugin + + + + org.wildfly:wildfly-galleon-pack:${version.server} + + + + + cdi + jaxrs-server + opentelemetry + + + + + + + + + + ROOT.war + + + + + package + + + + + + + + + + bootable-jar + + + + org.wildfly.plugins + wildfly-jar-maven-plugin + + wildfly@maven(org.jboss.universe:community-universe)#${version.server} + + cdi + jaxrs-server + opentelemetry + + + + + + + + + + true + + + + + + package + + + + + + + + + + openshift + + + + org.wildfly.plugins + wildfly-maven-plugin + + + + org.wildfly:wildfly-galleon-pack:${version.server} + + + org.wildfly.cloud:wildfly-cloud-galleon-pack:${version.pack.cloud} + + + + cdi + jaxrs-server + opentelemetry + + + + + + + + + ROOT.war + + + + + package + + + + + + + + + + integration-testing + + + + org.apache.maven.plugins + maven-failsafe-plugin + + + **/*IT + + + + + + integration-test + + + + + + + + + diff --git a/opentelemetry-tracing/restore-configuration.cli b/opentelemetry-tracing/restore-configuration.cli new file mode 100644 index 0000000000..102a792b25 --- /dev/null +++ b/opentelemetry-tracing/restore-configuration.cli @@ -0,0 +1,8 @@ +# CLI script to restore the application server configuration that was modified to run the quickstart + +# Remove the WildFly OpenTelemetry extension +/subsystem=opentelemetry:remove() +/extension=org.wildfly.extension.opentelemetry:remove() + +# Reload the server configuration +reload diff --git a/opentelemetry-tracing/src/main/java/org/wildfly/quickstarts/opentelemetry/ExplicitlyTracedBean.java b/opentelemetry-tracing/src/main/java/org/wildfly/quickstarts/opentelemetry/ExplicitlyTracedBean.java new file mode 100644 index 0000000000..dfffb74836 --- /dev/null +++ b/opentelemetry-tracing/src/main/java/org/wildfly/quickstarts/opentelemetry/ExplicitlyTracedBean.java @@ -0,0 +1,31 @@ +package org.wildfly.quickstarts.opentelemetry; + +import jakarta.enterprise.context.RequestScoped; +import jakarta.inject.Inject; + +import io.opentelemetry.api.trace.Span; +import io.opentelemetry.api.trace.Tracer; + +@RequestScoped +public class ExplicitlyTracedBean { + + @Inject + private Tracer tracer; + + public String getHello() { + Span prepareHelloSpan = tracer.spanBuilder("prepare-hello").startSpan(); + prepareHelloSpan.makeCurrent(); + + String hello = "hello"; + + Span processHelloSpan = tracer.spanBuilder("process-hello").startSpan(); + processHelloSpan.makeCurrent(); + + hello = hello.toUpperCase(); + + processHelloSpan.end(); + prepareHelloSpan.end(); + + return hello; + } +} diff --git a/opentelemetry-tracing/src/main/java/org/wildfly/quickstarts/opentelemetry/JakartaRestApplication.java b/opentelemetry-tracing/src/main/java/org/wildfly/quickstarts/opentelemetry/JakartaRestApplication.java new file mode 100644 index 0000000000..2647df706a --- /dev/null +++ b/opentelemetry-tracing/src/main/java/org/wildfly/quickstarts/opentelemetry/JakartaRestApplication.java @@ -0,0 +1,10 @@ +package org.wildfly.quickstarts.opentelemetry; + +import jakarta.enterprise.context.ApplicationScoped; +import jakarta.ws.rs.ApplicationPath; +import jakarta.ws.rs.core.Application; + +@ApplicationScoped +@ApplicationPath("/") +public class JakartaRestApplication extends Application { +} diff --git a/opentelemetry-tracing/src/main/java/org/wildfly/quickstarts/opentelemetry/TracedResource.java b/opentelemetry-tracing/src/main/java/org/wildfly/quickstarts/opentelemetry/TracedResource.java new file mode 100644 index 0000000000..09ebe7b169 --- /dev/null +++ b/opentelemetry-tracing/src/main/java/org/wildfly/quickstarts/opentelemetry/TracedResource.java @@ -0,0 +1,54 @@ +/* + * JBoss, Home of Professional Open Source + * Copyright 2020, Red Hat, Inc. and/or its affiliates, and individual + * contributors by the @authors tag. See the copyright.txt in the + * distribution for a full listing of individual contributors. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * http://www.apache.org/licenses/LICENSE-2.0 + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package org.wildfly.quickstarts.opentelemetry; + +import jakarta.enterprise.context.RequestScoped; +import jakarta.inject.Inject; +import jakarta.ws.rs.GET; +import jakarta.ws.rs.Path; +import jakarta.ws.rs.Produces; +import jakarta.ws.rs.core.MediaType; + +@Path("/") +@RequestScoped +public class TracedResource { + public static final String TRACE_IMPLICIT = "/implicit-trace"; + public static final String TRACE_EXPLICIT = "/explicit-trace"; + + @Inject + private ExplicitlyTracedBean tracedBean; + + @GET + @Produces(MediaType.TEXT_PLAIN) + public String getRootResponse() { + return "OpenTelemetry Tracing quickstart deployed successfully. You can find the available operations in the included README file."; + } + + @GET + @Path(TRACE_IMPLICIT) + @Produces(MediaType.TEXT_PLAIN) + public String hello() { + return "hello"; + } + + @GET + @Path(TRACE_EXPLICIT) + @Produces(MediaType.TEXT_PLAIN) + public String cdiHello() { + return tracedBean.getHello(); + } +} diff --git a/opentelemetry-tracing/src/test/java/org/wildfly/quickstarts/opentelemetry/BasicRuntimeIT.java b/opentelemetry-tracing/src/test/java/org/wildfly/quickstarts/opentelemetry/BasicRuntimeIT.java new file mode 100644 index 0000000000..d7e78f4901 --- /dev/null +++ b/opentelemetry-tracing/src/test/java/org/wildfly/quickstarts/opentelemetry/BasicRuntimeIT.java @@ -0,0 +1,63 @@ +/* + * Copyright 2023 Red Hat, Inc. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package org.wildfly.quickstarts.opentelemetry; + +import static org.junit.Assert.assertEquals; + +import java.io.IOException; +import java.net.URI; +import java.net.URISyntaxException; +import java.net.http.HttpClient; +import java.net.http.HttpRequest; +import java.net.http.HttpResponse; +import java.time.Duration; + +import org.junit.Test; + +public class BasicRuntimeIT { + private static final String DEFAULT_SERVER_HOST = "http://localhost:8080/opentelemetry-tracing"; + + @Test + public void testHTTPEndpointIsAvailable() throws IOException, InterruptedException, URISyntaxException { + String applicationUrl = getApplicationUrl(); + + final HttpRequest request = HttpRequest.newBuilder() + .uri(new URI(applicationUrl)) + .GET() + .build(); + + final HttpResponse response = getHttpClient().send(request, HttpResponse.BodyHandlers.ofString()); + assertEquals(200, response.statusCode()); + } + + static String getApplicationUrl() { + String serverHost = System.getenv("SERVER_HOST"); + if (serverHost == null) { + serverHost = System.getProperty("server.host"); + } + if (serverHost == null) { + serverHost = DEFAULT_SERVER_HOST; + } + return serverHost; + } + + static HttpClient getHttpClient() { + return HttpClient.newBuilder() + .followRedirects(HttpClient.Redirect.ALWAYS) + .connectTimeout(Duration.ofMinutes(1)) + .build(); + } +} diff --git a/opentelemetry-tracing/src/test/java/org/wildfly/quickstarts/opentelemetry/OpenTelemetryIT.java b/opentelemetry-tracing/src/test/java/org/wildfly/quickstarts/opentelemetry/OpenTelemetryIT.java new file mode 100644 index 0000000000..c103dd3c19 --- /dev/null +++ b/opentelemetry-tracing/src/test/java/org/wildfly/quickstarts/opentelemetry/OpenTelemetryIT.java @@ -0,0 +1,47 @@ +/* + * Copyright 2023 Red Hat, Inc. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package org.wildfly.quickstarts.opentelemetry; + +import static org.junit.Assert.assertEquals; + +import java.io.IOException; +import java.net.URI; +import java.net.URISyntaxException; +import java.net.http.HttpClient; +import java.net.http.HttpRequest; +import java.net.http.HttpResponse; + +import org.junit.Test; + +public class OpenTelemetryIT { + @Test + public void testImplicit() throws IOException, InterruptedException, URISyntaxException { + String applicationUrl = BasicRuntimeIT.getApplicationUrl(); + + final HttpClient client = BasicRuntimeIT.getHttpClient(); + final HttpRequest implicit = HttpRequest.newBuilder().uri(new URI(applicationUrl + "/implicit-trace")).GET().build(); + assertEquals(200, client.send(implicit, HttpResponse.BodyHandlers.ofString()).statusCode()); + } + + @Test + public void testExplicit() throws IOException, InterruptedException, URISyntaxException { + String applicationUrl = BasicRuntimeIT.getApplicationUrl(); + + final HttpClient client = BasicRuntimeIT.getHttpClient(); + final HttpRequest implicit = HttpRequest.newBuilder().uri(new URI(applicationUrl + "/explicit-trace")).GET().build(); + assertEquals(200, client.send(implicit, HttpResponse.BodyHandlers.ofString()).statusCode()); + } +} diff --git a/pom.xml b/pom.xml index b0e1bfdf83..5201fe1e7e 100644 --- a/pom.xml +++ b/pom.xml @@ -340,6 +340,7 @@ microprofile-reactive-messaging-kafka microprofile-rest-client numberguess + opentelemetry-tracing remote-helloworld-mdb security-domain-to-domain servlet-async From 7968fa4f8e392aea9c140fd62b1e63b93ee85dd1 Mon Sep 17 00:00:00 2001 From: Eduardo Martins Date: Mon, 22 Jan 2024 14:18:55 +0000 Subject: [PATCH 07/26] move micrometer and opentelemetry to parent 7; update root README --- README.adoc | 1 + micrometer/pom.xml | 2 +- opentelemetry-tracing/pom.xml | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/README.adoc b/README.adoc index d8b305f01f..46457445e8 100644 --- a/README.adoc +++ b/README.adoc @@ -186,6 +186,7 @@ NOTE: Some of these quickstarts use the H2 database included with {productNameFu | link:microprofile-reactive-messaging-kafka/README{outfilesuffix}[microprofile-reactive-messaging-kafka]|MicroProfile Reactive Messaging | The `microprofile-reactive-messaging-kafka` quickstart demonstrates the use of the MicroProfile Reactive Messaging specification backed by Apache Kafka in {productName}. | Beginner | _none_ | link:microprofile-rest-client/README{outfilesuffix}[microprofile-rest-client]|MicroProfile REST Client | The `microprofile-rest-client` quickstart demonstrates the use of the MicroProfile REST Client specification in {productName}. | Beginner | _none_ | link:numberguess/README{outfilesuffix}[numberguess]|CDI, JSF | The `numberguess` quickstart demonstrates the use of CDI (Contexts and Dependency Injection) and JSF (JavaServer Faces) in {productName}. | Beginner | _none_ +| link:opentelemetry-tracing/README{outfilesuffix}[opentelemetry-tracing]|OpenTelemetry Tracing | The `opentelemetry-tracing` quickstart demonstrates the use of the OpenTelemetry tracing specification in {productName}. | Beginner | _none_ | link:remote-helloworld-mdb/README{outfilesuffix}[remote-helloworld-mdb]|JMS, EJB, MDB | The `remote-helloworld-mdb` quickstart demonstrates the use of JMS and EJB Message-Driven Bean in {productName} with a remote broker. | Intermediate | _none_ | link:security-domain-to-domain/README{outfilesuffix}[security-domain-to-domain]|Servlet, EJB, Security | The `security-domain-to-domain` quickstart demonstrates the propagation of an identity across two different deployments using different security domains. | Advanced | _none_ | link:servlet-async/README{outfilesuffix}[servlet-async]|Asynchronous Servlet, CDI, EJB | The `servlet-async` quickstart demonstrates how to use asynchronous servlets to detach long-running tasks and free up the request processing thread. | Intermediate | _none_ diff --git a/micrometer/pom.xml b/micrometer/pom.xml index a1c647da02..204b9f75ce 100644 --- a/micrometer/pom.xml +++ b/micrometer/pom.xml @@ -10,7 +10,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. --> - 6 + 7 diff --git a/opentelemetry-tracing/pom.xml b/opentelemetry-tracing/pom.xml index 1fb282a582..6f509d046d 100644 --- a/opentelemetry-tracing/pom.xml +++ b/opentelemetry-tracing/pom.xml @@ -8,7 +8,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. --> - 6 + 7 From 10634715fbdaf6e095d6ccf321ed80635837b7e1 Mon Sep 17 00:00:00 2001 From: Jean-Francois Denise Date: Thu, 25 Jan 2024 15:14:56 +0100 Subject: [PATCH 08/26] Add micrometer and opentelemetry with Glow support --- micrometer/pom.xml | 80 ++++++++++++++++------------------- opentelemetry-tracing/pom.xml | 70 ++++++++++++------------------ 2 files changed, 63 insertions(+), 87 deletions(-) diff --git a/micrometer/pom.xml b/micrometer/pom.xml index 6d81bc16e0..5c0618f64c 100644 --- a/micrometer/pom.xml +++ b/micrometer/pom.xml @@ -25,9 +25,7 @@ 31.0.0.Final ${version.server} - 4.2.1.Final - 10.0.0.Final - 6.0.0.Final + 5.0.0.Beta2 @@ -184,17 +182,13 @@ org.wildfly.plugins wildfly-maven-plugin - - - org.wildfly:wildfly-galleon-pack:${version.server} - - - - - cdi - jaxrs-server - micrometer - + + ${version.server} + + + micrometer + + @@ -226,24 +220,25 @@ org.wildfly.plugins - wildfly-jar-maven-plugin + wildfly-maven-plugin - wildfly@maven(org.jboss.universe:community-universe)#${version.server} - - cdi - jaxrs-server - micrometer - - - true - - - - + + ${version.server} + + + micrometer + + + true + + ROOT.war + + + - - - + + + @@ -265,19 +260,18 @@ org.wildfly.plugins wildfly-maven-plugin - - - org.wildfly:wildfly-galleon-pack:${version.server} - - - org.wildfly.cloud:wildfly-cloud-galleon-pack:${version.pack.cloud} - - - - cdi - jaxrs-server - micrometer - + + ${version.server} + cloud + + + micrometer + + + ROOT.war diff --git a/opentelemetry-tracing/pom.xml b/opentelemetry-tracing/pom.xml index bf27fafbfc..45d82228ca 100644 --- a/opentelemetry-tracing/pom.xml +++ b/opentelemetry-tracing/pom.xml @@ -23,9 +23,7 @@ 31.0.0.Final ${version.server} - 4.2.1.Final - 10.0.0.Final - 6.0.0.Final + 5.0.0.Beta2 @@ -173,17 +171,9 @@ org.wildfly.plugins wildfly-maven-plugin - - - org.wildfly:wildfly-galleon-pack:${version.server} - - - - - cdi - jaxrs-server - opentelemetry - + + ${version.server} + @@ -212,24 +202,21 @@ org.wildfly.plugins - wildfly-jar-maven-plugin + wildfly-maven-plugin - wildfly@maven(org.jboss.universe:community-universe)#${version.server} - - cdi - jaxrs-server - opentelemetry - - - - + + ${version.server} + + true + + ROOT.war + + + - - - - - true - + + + @@ -251,19 +238,10 @@ org.wildfly.plugins wildfly-maven-plugin - - - org.wildfly:wildfly-galleon-pack:${version.server} - - - org.wildfly.cloud:wildfly-cloud-galleon-pack:${version.pack.cloud} - - - - cdi - jaxrs-server - opentelemetry - + + ${version.server} + cloud + @@ -271,7 +249,11 @@ - ROOT.war + + ROOT.war From 83b6e2b11952efa9990b7a0ceeb9815f1e33094a Mon Sep 17 00:00:00 2001 From: Kabir Khan Date: Thu, 25 Jan 2024 16:39:41 +0000 Subject: [PATCH 09/26] Enable job to render the flattened READMEs --- .github/workflows/reduce_readme.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/reduce_readme.yml b/.github/workflows/reduce_readme.yml index 0b2275e51f..ab23f8850e 100644 --- a/.github/workflows/reduce_readme.yml +++ b/.github/workflows/reduce_readme.yml @@ -3,7 +3,7 @@ name: WildFly Quickstarts Update 'README.adoc's on: push: branches: - - main + - glow-preview # Only run the latest job concurrency: From 69613819da471357de2022f6830b91f70007e34f Mon Sep 17 00:00:00 2001 From: Kabir Khan Date: Thu, 25 Jan 2024 17:58:47 +0000 Subject: [PATCH 10/26] Correct scopes for mail quickstart --- mail/pom.xml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/mail/pom.xml b/mail/pom.xml index d1fb54d1f1..143737bf17 100644 --- a/mail/pom.xml +++ b/mail/pom.xml @@ -126,6 +126,7 @@ jakarta.mail jakarta.mail-api + provided jakarta.enterprise @@ -162,6 +163,7 @@ io.github.bonigarcia webdrivermanager ${version.webdrivermanager} + test @@ -255,4 +257,4 @@ - + \ No newline at end of file From 636e7733fb82066f05f2979a1e50c7398bdf7fe8 Mon Sep 17 00:00:00 2001 From: kabir Date: Thu, 25 Jan 2024 18:56:20 +0000 Subject: [PATCH 11/26] Commit from GitHub Actions (WildFly Quickstarts Update 'README.adoc's) --- batch-processing/README.adoc | 114 ++++++++- bmt/README.adoc | 114 ++++++++- cmt/README.adoc | 114 ++++++++- ee-security/README.adoc | 114 ++++++++- ejb-remote/README.adoc | 114 ++++++++- ejb-security-context-propagation/README.adoc | 52 ++++- ejb-security-programmatic-auth/README.adoc | 52 ++++- ejb-throws-exception/README.adoc | 52 ++++- ejb-timer/README.adoc | 114 ++++++++- ejb-txn-remote-call/README.adoc | 23 +- helloworld-jms/README.adoc | 1 - helloworld-mdb/README.adoc | 114 ++++++++- helloworld-singleton/README.adoc | 114 ++++++++- helloworld-ws/README.adoc | 114 ++++++++- helloworld/README.adoc | 114 ++++++++- hibernate/README.adoc | 114 ++++++++- http-custom-mechanism/README.adoc | 52 ++++- jaxrs-client/README.adoc | 114 ++++++++- jaxrs-jwt/README.adoc | 114 ++++++++- jaxws-ejb/README.adoc | 114 ++++++++- jaxws-retail/README.adoc | 114 ++++++++- jsonp/README.adoc | 114 ++++++++- kitchensink/README.adoc | 114 ++++++++- logging/README.adoc | 117 +++++++++- mail/README.adoc | 52 ++++- micrometer/README.adoc | 210 +++++++++++++---- microprofile-config/README.adoc | 114 ++++++++- microprofile-fault-tolerance/README.adoc | 114 ++++++++- microprofile-health/README.adoc | 114 ++++++++- microprofile-jwt/README.adoc | 114 ++++++++- microprofile-lra/README.adoc | 114 ++++++++- microprofile-openapi/README.adoc | 114 ++++++++- .../README.adoc | 114 ++++++++- microprofile-rest-client/README.adoc | 114 ++++++++- numberguess/README.adoc | 114 ++++++++- opentelemetry-tracing/README.adoc | 217 +++++++++++++----- remote-helloworld-mdb/README.adoc | 176 ++++++++++++-- servlet-async/README.adoc | 114 ++++++++- servlet-filterlistener/README.adoc | 114 ++++++++- servlet-security/README.adoc | 114 ++++++++- spring-resteasy/README.adoc | 114 ++++++++- temperature-converter/README.adoc | 114 ++++++++- thread-racing/README.adoc | 114 ++++++++- todo-backend/README.adoc | 63 ++++- websocket-endpoint/README.adoc | 114 ++++++++- websocket-hello/README.adoc | 114 ++++++++- 46 files changed, 4480 insertions(+), 463 deletions(-) diff --git a/batch-processing/README.adoc b/batch-processing/README.adoc index dcfb8b639a..c474c8c998 100644 --- a/batch-processing/README.adoc +++ b/batch-processing/README.adoc @@ -202,7 +202,6 @@ endif::[] :level: Intermediate :technologies: CDI, Batch 1.0, JSF :openshift: true -:portedToGlow: true [abstract] The `batch-processing` quickstart shows how to use chunk oriented batch jobs to import a file to a database. @@ -741,7 +740,7 @@ For Windows, use the `__{jbossHomeName}__\bin\add-user.bat` script. endif::[] The server provisioning functionality is provided by the WildFly Maven Plugin, and you may find its configuration in the quickstart `pom.xml`: - +ifndef::portedToGlow[] [source,xml,subs="attributes+"] ---- @@ -774,6 +773,55 @@ The server provisioning functionality is provided by the WildFly Maven Plugin, a ---- +endif::portedToGlow[] +ifdef::portedToGlow[] +[source,xml,subs="attributes+"] +---- + + provisioned-server + + + + org.wildfly.plugins + wildfly-maven-plugin + + + ${version.server} + + + ROOT.war + ... + + + + + package + + + + + ... + + + +---- +The plugin uses https://github.com/wildfly/wildfly-glow[WildFly Glow] to discover the feature packs and layers required to run the application, and provisions a server containing those layers. + +[NOTE] +==== +This uses a pre-release of version 5.0.0 of the wildfly-maven-plugin providing the Glow functionality. The version is set in the pom's `pluginManagement` section. +==== + +If you get an error or the server is missing some functionality which cannot be auto-discovered, you can download the https://github.com/wildfly/wildfly-glow/releases/tag[WildFly Glow CLI] and run the following command to see more information about what add-ons are available: + +[source,shell] +---- +wildfly-glow show-add-ons +---- +endif::portedToGlow[] [NOTE] ==== @@ -972,6 +1020,7 @@ The server provisioning functionality is provided by the EAP Maven Plugin, and y endif::[] ifndef::ProductRelease,EAPXPRelease[] +ifndef::portedToGlow[] [source,xml,subs="attributes+"] ---- @@ -1006,7 +1055,59 @@ ifndef::ProductRelease,EAPXPRelease[] ---- -endif::[] +You may note that unlike the `provisioned-server` profile it uses the cloud feature pack which enables a configuration tuned for OpenShift environment. +endif::portedToGlow[] +ifdef::portedToGlow[] +[source,xml,subs="attributes+"] +---- + + openshift + + + + org.wildfly.plugins + wildfly-maven-plugin + + + ${version.server} + cloud + + + ROOT.war + ... + + + + + package + + + + + ... + + + +---- +You may note that unlike the `provisioned-server` profile it uses the cloud context which enables a configuration tuned for OpenShift environment. + +The plugin uses https://github.com/wildfly/wildfly-glow[WildFly Glow] to discover the feature packs and layers required to run the application, and provisions a server containing those layers. + +[NOTE] +==== +This uses a pre-release of version 5.0.0 of the wildfly-maven-plugin providing the Glow functionality. The version is set in the pom's `pluginManagement` section. +==== + +If you get an error or the server is missing some functionality which cannot be auto-discovered, you can download the https://github.com/wildfly/wildfly-glow/releases[WildFly Glow CLI] and run the following command to see more information about what add-ons are available: +[source,shell] +---- +wildfly-glow show-add-ons +---- +endif::portedToGlow[] +endif::ProductRelease,EAPXPRelease[] ifdef::ProductRelease,EAPXPRelease[] [source,xml,subs="attributes+"] @@ -1044,15 +1145,10 @@ ifdef::ProductRelease,EAPXPRelease[] ---- -endif::[] - -ifndef::ProductRelease,EAPXPRelease[] -You may note that unlike the `provisioned-server` profile it uses the cloud feature pack which enables a configuration tuned for OpenShift environment. -endif::[] -ifdef::ProductRelease,EAPXPRelease[] You may note that it uses the cloud feature pack which enables a configuration tuned for OpenShift environment. endif::[] + :leveloffset: 1 // Getting Started with Helm :leveloffset: +1 diff --git a/bmt/README.adoc b/bmt/README.adoc index fe6d962643..9749a53613 100644 --- a/bmt/README.adoc +++ b/bmt/README.adoc @@ -202,7 +202,6 @@ endif::[] :level: Intermediate :technologies: EJB, BMT :openshift: true -:portedToGlow: true [abstract] The `bmt` quickstart demonstrates Bean-Managed Transactions (BMT), showing how to manually manage transaction demarcation while accessing JPA entities. @@ -673,7 +672,7 @@ For Windows, use the `__{jbossHomeName}__\bin\add-user.bat` script. endif::[] The server provisioning functionality is provided by the WildFly Maven Plugin, and you may find its configuration in the quickstart `pom.xml`: - +ifndef::portedToGlow[] [source,xml,subs="attributes+"] ---- @@ -706,6 +705,55 @@ The server provisioning functionality is provided by the WildFly Maven Plugin, a ---- +endif::portedToGlow[] +ifdef::portedToGlow[] +[source,xml,subs="attributes+"] +---- + + provisioned-server + + + + org.wildfly.plugins + wildfly-maven-plugin + + + ${version.server} + + + ROOT.war + ... + + + + + package + + + + + ... + + + +---- +The plugin uses https://github.com/wildfly/wildfly-glow[WildFly Glow] to discover the feature packs and layers required to run the application, and provisions a server containing those layers. + +[NOTE] +==== +This uses a pre-release of version 5.0.0 of the wildfly-maven-plugin providing the Glow functionality. The version is set in the pom's `pluginManagement` section. +==== + +If you get an error or the server is missing some functionality which cannot be auto-discovered, you can download the https://github.com/wildfly/wildfly-glow/releases/tag[WildFly Glow CLI] and run the following command to see more information about what add-ons are available: + +[source,shell] +---- +wildfly-glow show-add-ons +---- +endif::portedToGlow[] [NOTE] ==== @@ -904,6 +952,7 @@ The server provisioning functionality is provided by the EAP Maven Plugin, and y endif::[] ifndef::ProductRelease,EAPXPRelease[] +ifndef::portedToGlow[] [source,xml,subs="attributes+"] ---- @@ -938,7 +987,59 @@ ifndef::ProductRelease,EAPXPRelease[] ---- -endif::[] +You may note that unlike the `provisioned-server` profile it uses the cloud feature pack which enables a configuration tuned for OpenShift environment. +endif::portedToGlow[] +ifdef::portedToGlow[] +[source,xml,subs="attributes+"] +---- + + openshift + + + + org.wildfly.plugins + wildfly-maven-plugin + + + ${version.server} + cloud + + + ROOT.war + ... + + + + + package + + + + + ... + + + +---- +You may note that unlike the `provisioned-server` profile it uses the cloud context which enables a configuration tuned for OpenShift environment. + +The plugin uses https://github.com/wildfly/wildfly-glow[WildFly Glow] to discover the feature packs and layers required to run the application, and provisions a server containing those layers. + +[NOTE] +==== +This uses a pre-release of version 5.0.0 of the wildfly-maven-plugin providing the Glow functionality. The version is set in the pom's `pluginManagement` section. +==== + +If you get an error or the server is missing some functionality which cannot be auto-discovered, you can download the https://github.com/wildfly/wildfly-glow/releases[WildFly Glow CLI] and run the following command to see more information about what add-ons are available: +[source,shell] +---- +wildfly-glow show-add-ons +---- +endif::portedToGlow[] +endif::ProductRelease,EAPXPRelease[] ifdef::ProductRelease,EAPXPRelease[] [source,xml,subs="attributes+"] @@ -976,15 +1077,10 @@ ifdef::ProductRelease,EAPXPRelease[] ---- -endif::[] - -ifndef::ProductRelease,EAPXPRelease[] -You may note that unlike the `provisioned-server` profile it uses the cloud feature pack which enables a configuration tuned for OpenShift environment. -endif::[] -ifdef::ProductRelease,EAPXPRelease[] You may note that it uses the cloud feature pack which enables a configuration tuned for OpenShift environment. endif::[] + :leveloffset: 1 // Getting Started with Helm :leveloffset: +1 diff --git a/cmt/README.adoc b/cmt/README.adoc index dcbf295564..1df925dfe1 100644 --- a/cmt/README.adoc +++ b/cmt/README.adoc @@ -202,7 +202,6 @@ endif::[] :level: Intermediate :technologies: EJB, CMT, JMS :openshift: true -:portedToGlow: true [abstract] The `cmt` quickstart demonstrates Container-Managed Transactions (CMT), showing how to use transactions managed by the container. @@ -686,7 +685,7 @@ For Windows, use the `__{jbossHomeName}__\bin\add-user.bat` script. endif::[] The server provisioning functionality is provided by the WildFly Maven Plugin, and you may find its configuration in the quickstart `pom.xml`: - +ifndef::portedToGlow[] [source,xml,subs="attributes+"] ---- @@ -719,6 +718,55 @@ The server provisioning functionality is provided by the WildFly Maven Plugin, a ---- +endif::portedToGlow[] +ifdef::portedToGlow[] +[source,xml,subs="attributes+"] +---- + + provisioned-server + + + + org.wildfly.plugins + wildfly-maven-plugin + + + ${version.server} + + + ROOT.war + ... + + + + + package + + + + + ... + + + +---- +The plugin uses https://github.com/wildfly/wildfly-glow[WildFly Glow] to discover the feature packs and layers required to run the application, and provisions a server containing those layers. + +[NOTE] +==== +This uses a pre-release of version 5.0.0 of the wildfly-maven-plugin providing the Glow functionality. The version is set in the pom's `pluginManagement` section. +==== + +If you get an error or the server is missing some functionality which cannot be auto-discovered, you can download the https://github.com/wildfly/wildfly-glow/releases/tag[WildFly Glow CLI] and run the following command to see more information about what add-ons are available: + +[source,shell] +---- +wildfly-glow show-add-ons +---- +endif::portedToGlow[] [NOTE] ==== @@ -917,6 +965,7 @@ The server provisioning functionality is provided by the EAP Maven Plugin, and y endif::[] ifndef::ProductRelease,EAPXPRelease[] +ifndef::portedToGlow[] [source,xml,subs="attributes+"] ---- @@ -951,7 +1000,59 @@ ifndef::ProductRelease,EAPXPRelease[] ---- -endif::[] +You may note that unlike the `provisioned-server` profile it uses the cloud feature pack which enables a configuration tuned for OpenShift environment. +endif::portedToGlow[] +ifdef::portedToGlow[] +[source,xml,subs="attributes+"] +---- + + openshift + + + + org.wildfly.plugins + wildfly-maven-plugin + + + ${version.server} + cloud + + + ROOT.war + ... + + + + + package + + + + + ... + + + +---- +You may note that unlike the `provisioned-server` profile it uses the cloud context which enables a configuration tuned for OpenShift environment. + +The plugin uses https://github.com/wildfly/wildfly-glow[WildFly Glow] to discover the feature packs and layers required to run the application, and provisions a server containing those layers. + +[NOTE] +==== +This uses a pre-release of version 5.0.0 of the wildfly-maven-plugin providing the Glow functionality. The version is set in the pom's `pluginManagement` section. +==== + +If you get an error or the server is missing some functionality which cannot be auto-discovered, you can download the https://github.com/wildfly/wildfly-glow/releases[WildFly Glow CLI] and run the following command to see more information about what add-ons are available: +[source,shell] +---- +wildfly-glow show-add-ons +---- +endif::portedToGlow[] +endif::ProductRelease,EAPXPRelease[] ifdef::ProductRelease,EAPXPRelease[] [source,xml,subs="attributes+"] @@ -989,15 +1090,10 @@ ifdef::ProductRelease,EAPXPRelease[] ---- -endif::[] - -ifndef::ProductRelease,EAPXPRelease[] -You may note that unlike the `provisioned-server` profile it uses the cloud feature pack which enables a configuration tuned for OpenShift environment. -endif::[] -ifdef::ProductRelease,EAPXPRelease[] You may note that it uses the cloud feature pack which enables a configuration tuned for OpenShift environment. endif::[] + :leveloffset: 1 // Getting Started with Helm :leveloffset: +1 diff --git a/ee-security/README.adoc b/ee-security/README.adoc index ae0592a38b..1a9508d813 100644 --- a/ee-security/README.adoc +++ b/ee-security/README.adoc @@ -202,7 +202,6 @@ endif::[] :level: Intermediate :technologies: EE Security, Servlet, CDI :openshift: true -:portedToGlow: true [abstract] The `ee-security` quickstart demonstrates Jakarta EE security. @@ -890,7 +889,7 @@ For Windows, use the `__{jbossHomeName}__\bin\add-user.bat` script. endif::[] The server provisioning functionality is provided by the WildFly Maven Plugin, and you may find its configuration in the quickstart `pom.xml`: - +ifndef::portedToGlow[] [source,xml,subs="attributes+"] ---- @@ -923,6 +922,55 @@ The server provisioning functionality is provided by the WildFly Maven Plugin, a ---- +endif::portedToGlow[] +ifdef::portedToGlow[] +[source,xml,subs="attributes+"] +---- + + provisioned-server + + + + org.wildfly.plugins + wildfly-maven-plugin + + + ${version.server} + + + ROOT.war + ... + + + + + package + + + + + ... + + + +---- +The plugin uses https://github.com/wildfly/wildfly-glow[WildFly Glow] to discover the feature packs and layers required to run the application, and provisions a server containing those layers. + +[NOTE] +==== +This uses a pre-release of version 5.0.0 of the wildfly-maven-plugin providing the Glow functionality. The version is set in the pom's `pluginManagement` section. +==== + +If you get an error or the server is missing some functionality which cannot be auto-discovered, you can download the https://github.com/wildfly/wildfly-glow/releases/tag[WildFly Glow CLI] and run the following command to see more information about what add-ons are available: + +[source,shell] +---- +wildfly-glow show-add-ons +---- +endif::portedToGlow[] [NOTE] ==== @@ -1121,6 +1169,7 @@ The server provisioning functionality is provided by the EAP Maven Plugin, and y endif::[] ifndef::ProductRelease,EAPXPRelease[] +ifndef::portedToGlow[] [source,xml,subs="attributes+"] ---- @@ -1155,7 +1204,59 @@ ifndef::ProductRelease,EAPXPRelease[] ---- -endif::[] +You may note that unlike the `provisioned-server` profile it uses the cloud feature pack which enables a configuration tuned for OpenShift environment. +endif::portedToGlow[] +ifdef::portedToGlow[] +[source,xml,subs="attributes+"] +---- + + openshift + + + + org.wildfly.plugins + wildfly-maven-plugin + + + ${version.server} + cloud + + + ROOT.war + ... + + + + + package + + + + + ... + + + +---- +You may note that unlike the `provisioned-server` profile it uses the cloud context which enables a configuration tuned for OpenShift environment. + +The plugin uses https://github.com/wildfly/wildfly-glow[WildFly Glow] to discover the feature packs and layers required to run the application, and provisions a server containing those layers. + +[NOTE] +==== +This uses a pre-release of version 5.0.0 of the wildfly-maven-plugin providing the Glow functionality. The version is set in the pom's `pluginManagement` section. +==== + +If you get an error or the server is missing some functionality which cannot be auto-discovered, you can download the https://github.com/wildfly/wildfly-glow/releases[WildFly Glow CLI] and run the following command to see more information about what add-ons are available: +[source,shell] +---- +wildfly-glow show-add-ons +---- +endif::portedToGlow[] +endif::ProductRelease,EAPXPRelease[] ifdef::ProductRelease,EAPXPRelease[] [source,xml,subs="attributes+"] @@ -1193,15 +1294,10 @@ ifdef::ProductRelease,EAPXPRelease[] ---- -endif::[] - -ifndef::ProductRelease,EAPXPRelease[] -You may note that unlike the `provisioned-server` profile it uses the cloud feature pack which enables a configuration tuned for OpenShift environment. -endif::[] -ifdef::ProductRelease,EAPXPRelease[] You may note that it uses the cloud feature pack which enables a configuration tuned for OpenShift environment. endif::[] + :leveloffset: 1 // Getting Started with Helm :leveloffset: +1 diff --git a/ejb-remote/README.adoc b/ejb-remote/README.adoc index c782f96b93..6c84c5b3e3 100644 --- a/ejb-remote/README.adoc +++ b/ejb-remote/README.adoc @@ -202,7 +202,6 @@ endif::[] :level: Intermediate :technologies: EJB, JNDI :openshift: true -:portedToGlow: true [abstract] The `ejb-remote` quickstart uses EJB and JNDI to demonstrate how to access an EJB, deployed to {productName}, from a remote Java client application. @@ -713,7 +712,7 @@ For Windows, use the `__{jbossHomeName}__\bin\add-user.bat` script. endif::[] The server provisioning functionality is provided by the WildFly Maven Plugin, and you may find its configuration in the quickstart `pom.xml`: - +ifndef::portedToGlow[] [source,xml,subs="attributes+"] ---- @@ -746,6 +745,55 @@ The server provisioning functionality is provided by the WildFly Maven Plugin, a ---- +endif::portedToGlow[] +ifdef::portedToGlow[] +[source,xml,subs="attributes+"] +---- + + provisioned-server + + + + org.wildfly.plugins + wildfly-maven-plugin + + + ${version.server} + + + ROOT.war + ... + + + + + package + + + + + ... + + + +---- +The plugin uses https://github.com/wildfly/wildfly-glow[WildFly Glow] to discover the feature packs and layers required to run the application, and provisions a server containing those layers. + +[NOTE] +==== +This uses a pre-release of version 5.0.0 of the wildfly-maven-plugin providing the Glow functionality. The version is set in the pom's `pluginManagement` section. +==== + +If you get an error or the server is missing some functionality which cannot be auto-discovered, you can download the https://github.com/wildfly/wildfly-glow/releases/tag[WildFly Glow CLI] and run the following command to see more information about what add-ons are available: + +[source,shell] +---- +wildfly-glow show-add-ons +---- +endif::portedToGlow[] [NOTE] ==== @@ -944,6 +992,7 @@ The server provisioning functionality is provided by the EAP Maven Plugin, and y endif::[] ifndef::ProductRelease,EAPXPRelease[] +ifndef::portedToGlow[] [source,xml,subs="attributes+"] ---- @@ -978,7 +1027,59 @@ ifndef::ProductRelease,EAPXPRelease[] ---- -endif::[] +You may note that unlike the `provisioned-server` profile it uses the cloud feature pack which enables a configuration tuned for OpenShift environment. +endif::portedToGlow[] +ifdef::portedToGlow[] +[source,xml,subs="attributes+"] +---- + + openshift + + + + org.wildfly.plugins + wildfly-maven-plugin + + + ${version.server} + cloud + + + ROOT.war + ... + + + + + package + + + + + ... + + + +---- +You may note that unlike the `provisioned-server` profile it uses the cloud context which enables a configuration tuned for OpenShift environment. + +The plugin uses https://github.com/wildfly/wildfly-glow[WildFly Glow] to discover the feature packs and layers required to run the application, and provisions a server containing those layers. + +[NOTE] +==== +This uses a pre-release of version 5.0.0 of the wildfly-maven-plugin providing the Glow functionality. The version is set in the pom's `pluginManagement` section. +==== + +If you get an error or the server is missing some functionality which cannot be auto-discovered, you can download the https://github.com/wildfly/wildfly-glow/releases[WildFly Glow CLI] and run the following command to see more information about what add-ons are available: +[source,shell] +---- +wildfly-glow show-add-ons +---- +endif::portedToGlow[] +endif::ProductRelease,EAPXPRelease[] ifdef::ProductRelease,EAPXPRelease[] [source,xml,subs="attributes+"] @@ -1016,15 +1117,10 @@ ifdef::ProductRelease,EAPXPRelease[] ---- -endif::[] - -ifndef::ProductRelease,EAPXPRelease[] -You may note that unlike the `provisioned-server` profile it uses the cloud feature pack which enables a configuration tuned for OpenShift environment. -endif::[] -ifdef::ProductRelease,EAPXPRelease[] You may note that it uses the cloud feature pack which enables a configuration tuned for OpenShift environment. endif::[] + :leveloffset: 1 // Getting Started with Helm :leveloffset: +1 diff --git a/ejb-security-context-propagation/README.adoc b/ejb-security-context-propagation/README.adoc index 8962a62a78..6c247bdf3a 100644 --- a/ejb-security-context-propagation/README.adoc +++ b/ejb-security-context-propagation/README.adoc @@ -201,7 +201,6 @@ endif::[] :author: Stefan Guilhen :level: Advanced :technologies: EJB, Security -:portedToGlow: true [abstract] The `ejb-security-context-propagation` quickstart demonstrates how the security context can be propagated to a remote EJB using a remote outbound connection configuration @@ -1144,7 +1143,7 @@ For Windows, use the `__{jbossHomeName}__\bin\add-user.bat` script. endif::[] The server provisioning functionality is provided by the WildFly Maven Plugin, and you may find its configuration in the quickstart `pom.xml`: - +ifndef::portedToGlow[] [source,xml,subs="attributes+"] ---- @@ -1177,6 +1176,55 @@ The server provisioning functionality is provided by the WildFly Maven Plugin, a ---- +endif::portedToGlow[] +ifdef::portedToGlow[] +[source,xml,subs="attributes+"] +---- + + provisioned-server + + + + org.wildfly.plugins + wildfly-maven-plugin + + + ${version.server} + + + ROOT.war + ... + + + + + package + + + + + ... + + + +---- +The plugin uses https://github.com/wildfly/wildfly-glow[WildFly Glow] to discover the feature packs and layers required to run the application, and provisions a server containing those layers. + +[NOTE] +==== +This uses a pre-release of version 5.0.0 of the wildfly-maven-plugin providing the Glow functionality. The version is set in the pom's `pluginManagement` section. +==== + +If you get an error or the server is missing some functionality which cannot be auto-discovered, you can download the https://github.com/wildfly/wildfly-glow/releases/tag[WildFly Glow CLI] and run the following command to see more information about what add-ons are available: + +[source,shell] +---- +wildfly-glow show-add-ons +---- +endif::portedToGlow[] [NOTE] ==== diff --git a/ejb-security-programmatic-auth/README.adoc b/ejb-security-programmatic-auth/README.adoc index f105052093..81c698dce9 100644 --- a/ejb-security-programmatic-auth/README.adoc +++ b/ejb-security-programmatic-auth/README.adoc @@ -201,7 +201,6 @@ endif::[] :author: Stefan Guilhen :level: Intermediate :technologies: EJB, Security -:portedToGlow: true [abstract] The `ejb-security-programmatic-auth` quickstart demonstrates how to programmatically setup different identities when invoking a remote secured EJB. @@ -1035,7 +1034,7 @@ For Windows, use the `__{jbossHomeName}__\bin\add-user.bat` script. endif::[] The server provisioning functionality is provided by the WildFly Maven Plugin, and you may find its configuration in the quickstart `pom.xml`: - +ifndef::portedToGlow[] [source,xml,subs="attributes+"] ---- @@ -1068,6 +1067,55 @@ The server provisioning functionality is provided by the WildFly Maven Plugin, a ---- +endif::portedToGlow[] +ifdef::portedToGlow[] +[source,xml,subs="attributes+"] +---- + + provisioned-server + + + + org.wildfly.plugins + wildfly-maven-plugin + + + ${version.server} + + + ROOT.war + ... + + + + + package + + + + + ... + + + +---- +The plugin uses https://github.com/wildfly/wildfly-glow[WildFly Glow] to discover the feature packs and layers required to run the application, and provisions a server containing those layers. + +[NOTE] +==== +This uses a pre-release of version 5.0.0 of the wildfly-maven-plugin providing the Glow functionality. The version is set in the pom's `pluginManagement` section. +==== + +If you get an error or the server is missing some functionality which cannot be auto-discovered, you can download the https://github.com/wildfly/wildfly-glow/releases/tag[WildFly Glow CLI] and run the following command to see more information about what add-ons are available: + +[source,shell] +---- +wildfly-glow show-add-ons +---- +endif::portedToGlow[] [NOTE] ==== diff --git a/ejb-throws-exception/README.adoc b/ejb-throws-exception/README.adoc index e26643a964..04e417296c 100644 --- a/ejb-throws-exception/README.adoc +++ b/ejb-throws-exception/README.adoc @@ -202,7 +202,6 @@ endif::[] :level: Intermediate :technologies: EJB, EAR :deploymentDir: ear -:portedToGlow: true [abstract] The `ejb-throws-exception` quickstart demonstrates how to throw and handle exceptions across JARs in an EAR. @@ -660,7 +659,7 @@ For Windows, use the `__{jbossHomeName}__\bin\add-user.bat` script. endif::[] The server provisioning functionality is provided by the WildFly Maven Plugin, and you may find its configuration in the quickstart `pom.xml`: - +ifndef::portedToGlow[] [source,xml,subs="attributes+"] ---- @@ -693,6 +692,55 @@ The server provisioning functionality is provided by the WildFly Maven Plugin, a ---- +endif::portedToGlow[] +ifdef::portedToGlow[] +[source,xml,subs="attributes+"] +---- + + provisioned-server + + + + org.wildfly.plugins + wildfly-maven-plugin + + + ${version.server} + + + ROOT.war + ... + + + + + package + + + + + ... + + + +---- +The plugin uses https://github.com/wildfly/wildfly-glow[WildFly Glow] to discover the feature packs and layers required to run the application, and provisions a server containing those layers. + +[NOTE] +==== +This uses a pre-release of version 5.0.0 of the wildfly-maven-plugin providing the Glow functionality. The version is set in the pom's `pluginManagement` section. +==== + +If you get an error or the server is missing some functionality which cannot be auto-discovered, you can download the https://github.com/wildfly/wildfly-glow/releases/tag[WildFly Glow CLI] and run the following command to see more information about what add-ons are available: + +[source,shell] +---- +wildfly-glow show-add-ons +---- +endif::portedToGlow[] [NOTE] ==== diff --git a/ejb-timer/README.adoc b/ejb-timer/README.adoc index df40dc41f8..6e17f2ff76 100644 --- a/ejb-timer/README.adoc +++ b/ejb-timer/README.adoc @@ -202,7 +202,6 @@ endif::[] :level: Beginner :technologies: EJB Timer :openshift: true -:portedToGlow: true [abstract] The `ejb-timer` quickstart demonstrates how to use the Jakarta Enterprise Bean timer service `@Schedule` and `@Timeout` annotations with {productName}. @@ -663,7 +662,7 @@ For Windows, use the `__{jbossHomeName}__\bin\add-user.bat` script. endif::[] The server provisioning functionality is provided by the WildFly Maven Plugin, and you may find its configuration in the quickstart `pom.xml`: - +ifndef::portedToGlow[] [source,xml,subs="attributes+"] ---- @@ -696,6 +695,55 @@ The server provisioning functionality is provided by the WildFly Maven Plugin, a ---- +endif::portedToGlow[] +ifdef::portedToGlow[] +[source,xml,subs="attributes+"] +---- + + provisioned-server + + + + org.wildfly.plugins + wildfly-maven-plugin + + + ${version.server} + + + ROOT.war + ... + + + + + package + + + + + ... + + + +---- +The plugin uses https://github.com/wildfly/wildfly-glow[WildFly Glow] to discover the feature packs and layers required to run the application, and provisions a server containing those layers. + +[NOTE] +==== +This uses a pre-release of version 5.0.0 of the wildfly-maven-plugin providing the Glow functionality. The version is set in the pom's `pluginManagement` section. +==== + +If you get an error or the server is missing some functionality which cannot be auto-discovered, you can download the https://github.com/wildfly/wildfly-glow/releases/tag[WildFly Glow CLI] and run the following command to see more information about what add-ons are available: + +[source,shell] +---- +wildfly-glow show-add-ons +---- +endif::portedToGlow[] [NOTE] ==== @@ -894,6 +942,7 @@ The server provisioning functionality is provided by the EAP Maven Plugin, and y endif::[] ifndef::ProductRelease,EAPXPRelease[] +ifndef::portedToGlow[] [source,xml,subs="attributes+"] ---- @@ -928,7 +977,59 @@ ifndef::ProductRelease,EAPXPRelease[] ---- -endif::[] +You may note that unlike the `provisioned-server` profile it uses the cloud feature pack which enables a configuration tuned for OpenShift environment. +endif::portedToGlow[] +ifdef::portedToGlow[] +[source,xml,subs="attributes+"] +---- + + openshift + + + + org.wildfly.plugins + wildfly-maven-plugin + + + ${version.server} + cloud + + + ROOT.war + ... + + + + + package + + + + + ... + + + +---- +You may note that unlike the `provisioned-server` profile it uses the cloud context which enables a configuration tuned for OpenShift environment. + +The plugin uses https://github.com/wildfly/wildfly-glow[WildFly Glow] to discover the feature packs and layers required to run the application, and provisions a server containing those layers. + +[NOTE] +==== +This uses a pre-release of version 5.0.0 of the wildfly-maven-plugin providing the Glow functionality. The version is set in the pom's `pluginManagement` section. +==== + +If you get an error or the server is missing some functionality which cannot be auto-discovered, you can download the https://github.com/wildfly/wildfly-glow/releases[WildFly Glow CLI] and run the following command to see more information about what add-ons are available: +[source,shell] +---- +wildfly-glow show-add-ons +---- +endif::portedToGlow[] +endif::ProductRelease,EAPXPRelease[] ifdef::ProductRelease,EAPXPRelease[] [source,xml,subs="attributes+"] @@ -966,15 +1067,10 @@ ifdef::ProductRelease,EAPXPRelease[] ---- -endif::[] - -ifndef::ProductRelease,EAPXPRelease[] -You may note that unlike the `provisioned-server` profile it uses the cloud feature pack which enables a configuration tuned for OpenShift environment. -endif::[] -ifdef::ProductRelease,EAPXPRelease[] You may note that it uses the cloud feature pack which enables a configuration tuned for OpenShift environment. endif::[] + :leveloffset: 1 // Getting Started with Helm :leveloffset: +1 diff --git a/ejb-txn-remote-call/README.adoc b/ejb-txn-remote-call/README.adoc index f332a6d581..b3b9cbf388 100644 --- a/ejb-txn-remote-call/README.adoc +++ b/ejb-txn-remote-call/README.adoc @@ -202,7 +202,6 @@ endif::[] :level: Intermediate :technologies: EJB, JTA, Clustering :openshift: true -:portedToGlow: true [abstract] The `ejb-txn-remote-call` quickstart demonstrates remote transactional EJB calls over two application servers of {productName}. @@ -865,15 +864,18 @@ Instead of using a standard {productName} server distribution, the three {produc ---- cd ${PATH_TO_QUICKSTART_DIR}/ejb-txn-remote-call/client; mvn clean package -Pprovisioned-server \ - -DremoteServerUsername="quickstartUser" -DremoteServerPassword="quickstartPwd1!" + -DremoteServerUsername="quickstartUser" -DremoteServerPassword="quickstartPwd1!" \ + -DpostgresqlUsername="test" -DpostgresqlPassword="test" ---- [source,sh,subs="+quotes,attributes+",options="nowrap"] ---- cd ${PATH_TO_QUICKSTART_DIR}/ejb-txn-remote-call/server; mvn clean package -Pprovisioned-server \ - -Dwildfly.provisioning.dir=server2 -Djboss-as.home=target/server2 ; + -Dwildfly.provisioning.dir=server2 -Djboss-as.home=target/server2 \ + -DpostgresqlUsername="test" -DpostgresqlPassword="test"; mvn package -Pprovisioned-server \ - -Dwildfly.provisioning.dir=server3 -Djboss-as.home=target/server3 + -Dwildfly.provisioning.dir=server3 -Djboss-as.home=target/server3 \ + -DpostgresqlUsername="test" -DpostgresqlPassword="test" ---- The provisioned {productName} servers, with the quickstart deployed, can then be found in the `target/server` directory, and their usage is similar to a standard server distribution, with the simplification that there is never the need to specify the server configuration to be started. @@ -915,8 +917,7 @@ podman run -p 5432:5432 --rm -ePOSTGRES_DB=test -ePOSTGRES_USER=test -ePOSTGRES ---- cd ${PATH_TO_QUICKSTART_DIR}/ejb-txn-remote-call/client; mvn wildfly:start -Djboss-as.home=target/server \ - -Dwildfly.javaOpts="-Djboss.tx.node.id=server1 -Djboss.node.name=server1" \ - -Pprovisioned-server -DpostgresqlUsername="test" -DpostgresqlPassword="test" + -Dwildfly.javaOpts="-Djboss.tx.node.id=server1 -Djboss.node.name=server1" ---- + [source,subs="attributes+",options="nowrap"] @@ -925,8 +926,7 @@ cd ${PATH_TO_QUICKSTART_DIR}/ejb-txn-remote-call/server; mvn wildfly:start -Djboss-as.home=target/server2 \ -Dwildfly.port=10090 \ -Dwildfly.serverConfig=standalone-ha.xml \ - -Dwildfly.javaOpts="-Djboss.socket.binding.port-offset=100 -Djboss.tx.node.id=server2 -Djboss.node.name=server2" \ - -Pprovisioned-server -DpostgresqlUsername="test" -DpostgresqlPassword="test" + -Dwildfly.javaOpts="-Djboss.socket.binding.port-offset=100 -Djboss.tx.node.id=server2 -Djboss.node.name=server2" ---- + [source,subs="attributes+",options="nowrap"] @@ -935,8 +935,7 @@ cd ${PATH_TO_QUICKSTART_DIR}/ejb-txn-remote-call/server; mvn wildfly:start -Djboss-as.home=target/server3 \ -Dwildfly.port=10190 \ -Dwildfly.serverConfig=standalone-ha.xml \ - -Dwildfly.javaOpts="-Djboss.socket.binding.port-offset=200 -Djboss.tx.node.id=server3 -Djboss.node.name=server3" \ - -Pprovisioned-server -DpostgresqlUsername="test" -DpostgresqlPassword="test" + -Dwildfly.javaOpts="-Djboss.socket.binding.port-offset=200 -Djboss.tx.node.id=server3 -Djboss.node.name=server3" ---- . Type the following command to run the `verify` goal with the `integration-testing` profile activated, and specifying the quickstart's URL using the `server.host` system property. @@ -950,13 +949,13 @@ mvn verify -Pintegration-testing [source,subs="attributes+",options="nowrap"] ---- cd ${PATH_TO_QUICKSTART_DIR}/ejb-txn-remote-call/server; -mvn verify -Pintegration-testing -Dserver.host="http://localhost:8180/" +mvn verify -Pintegration-testing -Dserver.host="http://localhost:8180/server" ---- + [source,subs="attributes+",options="nowrap"] ---- cd ${PATH_TO_QUICKSTART_DIR}/ejb-txn-remote-call/server; -mvn verify -Pintegration-testing -Dserver.host="http://localhost:8280/" +mvn verify -Pintegration-testing -Dserver.host="http://localhost:8280/server" ---- . To shut down the {productName} provisioned servers using the {productName} Maven Plugin: diff --git a/helloworld-jms/README.adoc b/helloworld-jms/README.adoc index 5ba5feea0d..b22f24e76a 100644 --- a/helloworld-jms/README.adoc +++ b/helloworld-jms/README.adoc @@ -201,7 +201,6 @@ endif::[] :author: Weston Price :level: Intermediate :technologies: JMS -:portedToGlow: true [abstract] The `helloworld-jms` quickstart demonstrates the use of external JMS clients with {productName}. diff --git a/helloworld-mdb/README.adoc b/helloworld-mdb/README.adoc index 58b2919f20..02453c82ee 100644 --- a/helloworld-mdb/README.adoc +++ b/helloworld-mdb/README.adoc @@ -202,7 +202,6 @@ endif::[] :level: Intermediate :technologies: JMS, EJB, MDB :openshift: true -:portedToGlow: true [abstract] The `helloworld-mdb` quickstart uses JMS and EJB Message-Driven Bean (MDB) to create and deploy JMS topic and queue resources in {productName}. @@ -659,7 +658,7 @@ For Windows, use the `__{jbossHomeName}__\bin\add-user.bat` script. endif::[] The server provisioning functionality is provided by the WildFly Maven Plugin, and you may find its configuration in the quickstart `pom.xml`: - +ifndef::portedToGlow[] [source,xml,subs="attributes+"] ---- @@ -692,6 +691,55 @@ The server provisioning functionality is provided by the WildFly Maven Plugin, a ---- +endif::portedToGlow[] +ifdef::portedToGlow[] +[source,xml,subs="attributes+"] +---- + + provisioned-server + + + + org.wildfly.plugins + wildfly-maven-plugin + + + ${version.server} + + + ROOT.war + ... + + + + + package + + + + + ... + + + +---- +The plugin uses https://github.com/wildfly/wildfly-glow[WildFly Glow] to discover the feature packs and layers required to run the application, and provisions a server containing those layers. + +[NOTE] +==== +This uses a pre-release of version 5.0.0 of the wildfly-maven-plugin providing the Glow functionality. The version is set in the pom's `pluginManagement` section. +==== + +If you get an error or the server is missing some functionality which cannot be auto-discovered, you can download the https://github.com/wildfly/wildfly-glow/releases/tag[WildFly Glow CLI] and run the following command to see more information about what add-ons are available: + +[source,shell] +---- +wildfly-glow show-add-ons +---- +endif::portedToGlow[] [NOTE] ==== @@ -890,6 +938,7 @@ The server provisioning functionality is provided by the EAP Maven Plugin, and y endif::[] ifndef::ProductRelease,EAPXPRelease[] +ifndef::portedToGlow[] [source,xml,subs="attributes+"] ---- @@ -924,7 +973,59 @@ ifndef::ProductRelease,EAPXPRelease[] ---- -endif::[] +You may note that unlike the `provisioned-server` profile it uses the cloud feature pack which enables a configuration tuned for OpenShift environment. +endif::portedToGlow[] +ifdef::portedToGlow[] +[source,xml,subs="attributes+"] +---- + + openshift + + + + org.wildfly.plugins + wildfly-maven-plugin + + + ${version.server} + cloud + + + ROOT.war + ... + + + + + package + + + + + ... + + + +---- +You may note that unlike the `provisioned-server` profile it uses the cloud context which enables a configuration tuned for OpenShift environment. + +The plugin uses https://github.com/wildfly/wildfly-glow[WildFly Glow] to discover the feature packs and layers required to run the application, and provisions a server containing those layers. + +[NOTE] +==== +This uses a pre-release of version 5.0.0 of the wildfly-maven-plugin providing the Glow functionality. The version is set in the pom's `pluginManagement` section. +==== + +If you get an error or the server is missing some functionality which cannot be auto-discovered, you can download the https://github.com/wildfly/wildfly-glow/releases[WildFly Glow CLI] and run the following command to see more information about what add-ons are available: +[source,shell] +---- +wildfly-glow show-add-ons +---- +endif::portedToGlow[] +endif::ProductRelease,EAPXPRelease[] ifdef::ProductRelease,EAPXPRelease[] [source,xml,subs="attributes+"] @@ -962,15 +1063,10 @@ ifdef::ProductRelease,EAPXPRelease[] ---- -endif::[] - -ifndef::ProductRelease,EAPXPRelease[] -You may note that unlike the `provisioned-server` profile it uses the cloud feature pack which enables a configuration tuned for OpenShift environment. -endif::[] -ifdef::ProductRelease,EAPXPRelease[] You may note that it uses the cloud feature pack which enables a configuration tuned for OpenShift environment. endif::[] + :leveloffset: 1 // Getting Started with Helm :leveloffset: +1 diff --git a/helloworld-singleton/README.adoc b/helloworld-singleton/README.adoc index 3497fb62ac..fc0806ddf7 100644 --- a/helloworld-singleton/README.adoc +++ b/helloworld-singleton/README.adoc @@ -202,7 +202,6 @@ endif::[] :level: Beginner :technologies: EJB, Singleton :openshift: true -:portedToGlow: true [abstract] The `helloworld-singleton` quickstart demonstrates an EJB Singleton Bean that is instantiated once and maintains state for the life of the session. @@ -621,7 +620,7 @@ For Windows, use the `__{jbossHomeName}__\bin\add-user.bat` script. endif::[] The server provisioning functionality is provided by the WildFly Maven Plugin, and you may find its configuration in the quickstart `pom.xml`: - +ifndef::portedToGlow[] [source,xml,subs="attributes+"] ---- @@ -654,6 +653,55 @@ The server provisioning functionality is provided by the WildFly Maven Plugin, a ---- +endif::portedToGlow[] +ifdef::portedToGlow[] +[source,xml,subs="attributes+"] +---- + + provisioned-server + + + + org.wildfly.plugins + wildfly-maven-plugin + + + ${version.server} + + + ROOT.war + ... + + + + + package + + + + + ... + + + +---- +The plugin uses https://github.com/wildfly/wildfly-glow[WildFly Glow] to discover the feature packs and layers required to run the application, and provisions a server containing those layers. + +[NOTE] +==== +This uses a pre-release of version 5.0.0 of the wildfly-maven-plugin providing the Glow functionality. The version is set in the pom's `pluginManagement` section. +==== + +If you get an error or the server is missing some functionality which cannot be auto-discovered, you can download the https://github.com/wildfly/wildfly-glow/releases/tag[WildFly Glow CLI] and run the following command to see more information about what add-ons are available: + +[source,shell] +---- +wildfly-glow show-add-ons +---- +endif::portedToGlow[] [NOTE] ==== @@ -852,6 +900,7 @@ The server provisioning functionality is provided by the EAP Maven Plugin, and y endif::[] ifndef::ProductRelease,EAPXPRelease[] +ifndef::portedToGlow[] [source,xml,subs="attributes+"] ---- @@ -886,7 +935,59 @@ ifndef::ProductRelease,EAPXPRelease[] ---- -endif::[] +You may note that unlike the `provisioned-server` profile it uses the cloud feature pack which enables a configuration tuned for OpenShift environment. +endif::portedToGlow[] +ifdef::portedToGlow[] +[source,xml,subs="attributes+"] +---- + + openshift + + + + org.wildfly.plugins + wildfly-maven-plugin + + + ${version.server} + cloud + + + ROOT.war + ... + + + + + package + + + + + ... + + + +---- +You may note that unlike the `provisioned-server` profile it uses the cloud context which enables a configuration tuned for OpenShift environment. + +The plugin uses https://github.com/wildfly/wildfly-glow[WildFly Glow] to discover the feature packs and layers required to run the application, and provisions a server containing those layers. + +[NOTE] +==== +This uses a pre-release of version 5.0.0 of the wildfly-maven-plugin providing the Glow functionality. The version is set in the pom's `pluginManagement` section. +==== + +If you get an error or the server is missing some functionality which cannot be auto-discovered, you can download the https://github.com/wildfly/wildfly-glow/releases[WildFly Glow CLI] and run the following command to see more information about what add-ons are available: +[source,shell] +---- +wildfly-glow show-add-ons +---- +endif::portedToGlow[] +endif::ProductRelease,EAPXPRelease[] ifdef::ProductRelease,EAPXPRelease[] [source,xml,subs="attributes+"] @@ -924,15 +1025,10 @@ ifdef::ProductRelease,EAPXPRelease[] ---- -endif::[] - -ifndef::ProductRelease,EAPXPRelease[] -You may note that unlike the `provisioned-server` profile it uses the cloud feature pack which enables a configuration tuned for OpenShift environment. -endif::[] -ifdef::ProductRelease,EAPXPRelease[] You may note that it uses the cloud feature pack which enables a configuration tuned for OpenShift environment. endif::[] + :leveloffset: 1 // Getting Started with Helm :leveloffset: +1 diff --git a/helloworld-ws/README.adoc b/helloworld-ws/README.adoc index a3abcf4605..5aba20f190 100644 --- a/helloworld-ws/README.adoc +++ b/helloworld-ws/README.adoc @@ -202,7 +202,6 @@ endif::[] :level: Beginner :technologies: JAX-WS :openshift: true -:portedToGlow: true [abstract] The `helloworld-ws` quickstart demonstrates a simple Hello World application, bundled and deployed as a WAR, that uses JAX-WS to say Hello. @@ -603,7 +602,7 @@ For Windows, use the `__{jbossHomeName}__\bin\add-user.bat` script. endif::[] The server provisioning functionality is provided by the WildFly Maven Plugin, and you may find its configuration in the quickstart `pom.xml`: - +ifndef::portedToGlow[] [source,xml,subs="attributes+"] ---- @@ -636,6 +635,55 @@ The server provisioning functionality is provided by the WildFly Maven Plugin, a ---- +endif::portedToGlow[] +ifdef::portedToGlow[] +[source,xml,subs="attributes+"] +---- + + provisioned-server + + + + org.wildfly.plugins + wildfly-maven-plugin + + + ${version.server} + + + ROOT.war + ... + + + + + package + + + + + ... + + + +---- +The plugin uses https://github.com/wildfly/wildfly-glow[WildFly Glow] to discover the feature packs and layers required to run the application, and provisions a server containing those layers. + +[NOTE] +==== +This uses a pre-release of version 5.0.0 of the wildfly-maven-plugin providing the Glow functionality. The version is set in the pom's `pluginManagement` section. +==== + +If you get an error or the server is missing some functionality which cannot be auto-discovered, you can download the https://github.com/wildfly/wildfly-glow/releases/tag[WildFly Glow CLI] and run the following command to see more information about what add-ons are available: + +[source,shell] +---- +wildfly-glow show-add-ons +---- +endif::portedToGlow[] [NOTE] ==== @@ -834,6 +882,7 @@ The server provisioning functionality is provided by the EAP Maven Plugin, and y endif::[] ifndef::ProductRelease,EAPXPRelease[] +ifndef::portedToGlow[] [source,xml,subs="attributes+"] ---- @@ -868,7 +917,59 @@ ifndef::ProductRelease,EAPXPRelease[] ---- -endif::[] +You may note that unlike the `provisioned-server` profile it uses the cloud feature pack which enables a configuration tuned for OpenShift environment. +endif::portedToGlow[] +ifdef::portedToGlow[] +[source,xml,subs="attributes+"] +---- + + openshift + + + + org.wildfly.plugins + wildfly-maven-plugin + + + ${version.server} + cloud + + + ROOT.war + ... + + + + + package + + + + + ... + + + +---- +You may note that unlike the `provisioned-server` profile it uses the cloud context which enables a configuration tuned for OpenShift environment. + +The plugin uses https://github.com/wildfly/wildfly-glow[WildFly Glow] to discover the feature packs and layers required to run the application, and provisions a server containing those layers. + +[NOTE] +==== +This uses a pre-release of version 5.0.0 of the wildfly-maven-plugin providing the Glow functionality. The version is set in the pom's `pluginManagement` section. +==== + +If you get an error or the server is missing some functionality which cannot be auto-discovered, you can download the https://github.com/wildfly/wildfly-glow/releases[WildFly Glow CLI] and run the following command to see more information about what add-ons are available: +[source,shell] +---- +wildfly-glow show-add-ons +---- +endif::portedToGlow[] +endif::ProductRelease,EAPXPRelease[] ifdef::ProductRelease,EAPXPRelease[] [source,xml,subs="attributes+"] @@ -906,15 +1007,10 @@ ifdef::ProductRelease,EAPXPRelease[] ---- -endif::[] - -ifndef::ProductRelease,EAPXPRelease[] -You may note that unlike the `provisioned-server` profile it uses the cloud feature pack which enables a configuration tuned for OpenShift environment. -endif::[] -ifdef::ProductRelease,EAPXPRelease[] You may note that it uses the cloud feature pack which enables a configuration tuned for OpenShift environment. endif::[] + :leveloffset: 1 // Getting Started with Helm :leveloffset: +1 diff --git a/helloworld/README.adoc b/helloworld/README.adoc index 268bab533d..d5f568186f 100644 --- a/helloworld/README.adoc +++ b/helloworld/README.adoc @@ -202,7 +202,6 @@ endif::[] :level: Beginner :technologies: Servlet :openshift: true -:portedToGlow: true [abstract] The `helloworld` quickstart demonstrates the use of Servlet 6 and is a good starting point to verify {productName} is configured correctly. @@ -614,7 +613,7 @@ For Windows, use the `__{jbossHomeName}__\bin\add-user.bat` script. endif::[] The server provisioning functionality is provided by the WildFly Maven Plugin, and you may find its configuration in the quickstart `pom.xml`: - +ifndef::portedToGlow[] [source,xml,subs="attributes+"] ---- @@ -647,6 +646,55 @@ The server provisioning functionality is provided by the WildFly Maven Plugin, a ---- +endif::portedToGlow[] +ifdef::portedToGlow[] +[source,xml,subs="attributes+"] +---- + + provisioned-server + + + + org.wildfly.plugins + wildfly-maven-plugin + + + ${version.server} + + + ROOT.war + ... + + + + + package + + + + + ... + + + +---- +The plugin uses https://github.com/wildfly/wildfly-glow[WildFly Glow] to discover the feature packs and layers required to run the application, and provisions a server containing those layers. + +[NOTE] +==== +This uses a pre-release of version 5.0.0 of the wildfly-maven-plugin providing the Glow functionality. The version is set in the pom's `pluginManagement` section. +==== + +If you get an error or the server is missing some functionality which cannot be auto-discovered, you can download the https://github.com/wildfly/wildfly-glow/releases/tag[WildFly Glow CLI] and run the following command to see more information about what add-ons are available: + +[source,shell] +---- +wildfly-glow show-add-ons +---- +endif::portedToGlow[] [NOTE] ==== @@ -845,6 +893,7 @@ The server provisioning functionality is provided by the EAP Maven Plugin, and y endif::[] ifndef::ProductRelease,EAPXPRelease[] +ifndef::portedToGlow[] [source,xml,subs="attributes+"] ---- @@ -879,7 +928,59 @@ ifndef::ProductRelease,EAPXPRelease[] ---- -endif::[] +You may note that unlike the `provisioned-server` profile it uses the cloud feature pack which enables a configuration tuned for OpenShift environment. +endif::portedToGlow[] +ifdef::portedToGlow[] +[source,xml,subs="attributes+"] +---- + + openshift + + + + org.wildfly.plugins + wildfly-maven-plugin + + + ${version.server} + cloud + + + ROOT.war + ... + + + + + package + + + + + ... + + + +---- +You may note that unlike the `provisioned-server` profile it uses the cloud context which enables a configuration tuned for OpenShift environment. + +The plugin uses https://github.com/wildfly/wildfly-glow[WildFly Glow] to discover the feature packs and layers required to run the application, and provisions a server containing those layers. + +[NOTE] +==== +This uses a pre-release of version 5.0.0 of the wildfly-maven-plugin providing the Glow functionality. The version is set in the pom's `pluginManagement` section. +==== + +If you get an error or the server is missing some functionality which cannot be auto-discovered, you can download the https://github.com/wildfly/wildfly-glow/releases[WildFly Glow CLI] and run the following command to see more information about what add-ons are available: +[source,shell] +---- +wildfly-glow show-add-ons +---- +endif::portedToGlow[] +endif::ProductRelease,EAPXPRelease[] ifdef::ProductRelease,EAPXPRelease[] [source,xml,subs="attributes+"] @@ -917,15 +1018,10 @@ ifdef::ProductRelease,EAPXPRelease[] ---- -endif::[] - -ifndef::ProductRelease,EAPXPRelease[] -You may note that unlike the `provisioned-server` profile it uses the cloud feature pack which enables a configuration tuned for OpenShift environment. -endif::[] -ifdef::ProductRelease,EAPXPRelease[] You may note that it uses the cloud feature pack which enables a configuration tuned for OpenShift environment. endif::[] + :leveloffset: 1 // Getting Started with Helm :leveloffset: +1 diff --git a/hibernate/README.adoc b/hibernate/README.adoc index 0a5f3a79f4..7f2a53676d 100644 --- a/hibernate/README.adoc +++ b/hibernate/README.adoc @@ -202,7 +202,6 @@ endif::[] :level: Intermediate :technologies: Hibernate :openshift: true -:portedToGlow: true [abstract] The `hibernate` quickstart demonstrates how to use Hibernate ORM 6 over Persistence, using Bean Validation, and Enterprise Beans. @@ -929,7 +928,7 @@ For Windows, use the `__{jbossHomeName}__\bin\add-user.bat` script. endif::[] The server provisioning functionality is provided by the WildFly Maven Plugin, and you may find its configuration in the quickstart `pom.xml`: - +ifndef::portedToGlow[] [source,xml,subs="attributes+"] ---- @@ -962,6 +961,55 @@ The server provisioning functionality is provided by the WildFly Maven Plugin, a ---- +endif::portedToGlow[] +ifdef::portedToGlow[] +[source,xml,subs="attributes+"] +---- + + provisioned-server + + + + org.wildfly.plugins + wildfly-maven-plugin + + + ${version.server} + + + ROOT.war + ... + + + + + package + + + + + ... + + + +---- +The plugin uses https://github.com/wildfly/wildfly-glow[WildFly Glow] to discover the feature packs and layers required to run the application, and provisions a server containing those layers. + +[NOTE] +==== +This uses a pre-release of version 5.0.0 of the wildfly-maven-plugin providing the Glow functionality. The version is set in the pom's `pluginManagement` section. +==== + +If you get an error or the server is missing some functionality which cannot be auto-discovered, you can download the https://github.com/wildfly/wildfly-glow/releases/tag[WildFly Glow CLI] and run the following command to see more information about what add-ons are available: + +[source,shell] +---- +wildfly-glow show-add-ons +---- +endif::portedToGlow[] [NOTE] ==== @@ -1160,6 +1208,7 @@ The server provisioning functionality is provided by the EAP Maven Plugin, and y endif::[] ifndef::ProductRelease,EAPXPRelease[] +ifndef::portedToGlow[] [source,xml,subs="attributes+"] ---- @@ -1194,7 +1243,59 @@ ifndef::ProductRelease,EAPXPRelease[] ---- -endif::[] +You may note that unlike the `provisioned-server` profile it uses the cloud feature pack which enables a configuration tuned for OpenShift environment. +endif::portedToGlow[] +ifdef::portedToGlow[] +[source,xml,subs="attributes+"] +---- + + openshift + + + + org.wildfly.plugins + wildfly-maven-plugin + + + ${version.server} + cloud + + + ROOT.war + ... + + + + + package + + + + + ... + + + +---- +You may note that unlike the `provisioned-server` profile it uses the cloud context which enables a configuration tuned for OpenShift environment. + +The plugin uses https://github.com/wildfly/wildfly-glow[WildFly Glow] to discover the feature packs and layers required to run the application, and provisions a server containing those layers. + +[NOTE] +==== +This uses a pre-release of version 5.0.0 of the wildfly-maven-plugin providing the Glow functionality. The version is set in the pom's `pluginManagement` section. +==== + +If you get an error or the server is missing some functionality which cannot be auto-discovered, you can download the https://github.com/wildfly/wildfly-glow/releases[WildFly Glow CLI] and run the following command to see more information about what add-ons are available: +[source,shell] +---- +wildfly-glow show-add-ons +---- +endif::portedToGlow[] +endif::ProductRelease,EAPXPRelease[] ifdef::ProductRelease,EAPXPRelease[] [source,xml,subs="attributes+"] @@ -1232,15 +1333,10 @@ ifdef::ProductRelease,EAPXPRelease[] ---- -endif::[] - -ifndef::ProductRelease,EAPXPRelease[] -You may note that unlike the `provisioned-server` profile it uses the cloud feature pack which enables a configuration tuned for OpenShift environment. -endif::[] -ifdef::ProductRelease,EAPXPRelease[] You may note that it uses the cloud feature pack which enables a configuration tuned for OpenShift environment. endif::[] + :leveloffset: 1 // Getting Started with Helm :leveloffset: +1 diff --git a/http-custom-mechanism/README.adoc b/http-custom-mechanism/README.adoc index 2bb16ce205..bc518b09b7 100644 --- a/http-custom-mechanism/README.adoc +++ b/http-custom-mechanism/README.adoc @@ -201,7 +201,6 @@ endif::[] :author: Darran Lofthouse :level: Intermediate :technologies: EJB, Security -:portedToGlow: true [abstract] The `http-custom-mechanism` quickstart demonstrates how to implement a custom HTTP authentication mechanism that can be registered with Elytron. @@ -1060,7 +1059,7 @@ For Windows, use the `__{jbossHomeName}__\bin\add-user.bat` script. endif::[] The server provisioning functionality is provided by the WildFly Maven Plugin, and you may find its configuration in the quickstart `pom.xml`: - +ifndef::portedToGlow[] [source,xml,subs="attributes+"] ---- @@ -1093,6 +1092,55 @@ The server provisioning functionality is provided by the WildFly Maven Plugin, a ---- +endif::portedToGlow[] +ifdef::portedToGlow[] +[source,xml,subs="attributes+"] +---- + + provisioned-server + + + + org.wildfly.plugins + wildfly-maven-plugin + + + ${version.server} + + + ROOT.war + ... + + + + + package + + + + + ... + + + +---- +The plugin uses https://github.com/wildfly/wildfly-glow[WildFly Glow] to discover the feature packs and layers required to run the application, and provisions a server containing those layers. + +[NOTE] +==== +This uses a pre-release of version 5.0.0 of the wildfly-maven-plugin providing the Glow functionality. The version is set in the pom's `pluginManagement` section. +==== + +If you get an error or the server is missing some functionality which cannot be auto-discovered, you can download the https://github.com/wildfly/wildfly-glow/releases/tag[WildFly Glow CLI] and run the following command to see more information about what add-ons are available: + +[source,shell] +---- +wildfly-glow show-add-ons +---- +endif::portedToGlow[] [NOTE] ==== diff --git a/jaxrs-client/README.adoc b/jaxrs-client/README.adoc index f1ddfce6b2..22501646d5 100644 --- a/jaxrs-client/README.adoc +++ b/jaxrs-client/README.adoc @@ -202,7 +202,6 @@ endif::[] :level: Beginner :technologies: JAX-RS :openshift: true -:portedToGlow: true [abstract] The `jaxrs-client` quickstart demonstrates Jakarta REST Client API, which interacts with a Jakarta REST Web service that runs on {productName}. @@ -636,7 +635,7 @@ For Windows, use the `__{jbossHomeName}__\bin\add-user.bat` script. endif::[] The server provisioning functionality is provided by the WildFly Maven Plugin, and you may find its configuration in the quickstart `pom.xml`: - +ifndef::portedToGlow[] [source,xml,subs="attributes+"] ---- @@ -669,6 +668,55 @@ The server provisioning functionality is provided by the WildFly Maven Plugin, a ---- +endif::portedToGlow[] +ifdef::portedToGlow[] +[source,xml,subs="attributes+"] +---- + + provisioned-server + + + + org.wildfly.plugins + wildfly-maven-plugin + + + ${version.server} + + + ROOT.war + ... + + + + + package + + + + + ... + + + +---- +The plugin uses https://github.com/wildfly/wildfly-glow[WildFly Glow] to discover the feature packs and layers required to run the application, and provisions a server containing those layers. + +[NOTE] +==== +This uses a pre-release of version 5.0.0 of the wildfly-maven-plugin providing the Glow functionality. The version is set in the pom's `pluginManagement` section. +==== + +If you get an error or the server is missing some functionality which cannot be auto-discovered, you can download the https://github.com/wildfly/wildfly-glow/releases/tag[WildFly Glow CLI] and run the following command to see more information about what add-ons are available: + +[source,shell] +---- +wildfly-glow show-add-ons +---- +endif::portedToGlow[] [NOTE] ==== @@ -867,6 +915,7 @@ The server provisioning functionality is provided by the EAP Maven Plugin, and y endif::[] ifndef::ProductRelease,EAPXPRelease[] +ifndef::portedToGlow[] [source,xml,subs="attributes+"] ---- @@ -901,7 +950,59 @@ ifndef::ProductRelease,EAPXPRelease[] ---- -endif::[] +You may note that unlike the `provisioned-server` profile it uses the cloud feature pack which enables a configuration tuned for OpenShift environment. +endif::portedToGlow[] +ifdef::portedToGlow[] +[source,xml,subs="attributes+"] +---- + + openshift + + + + org.wildfly.plugins + wildfly-maven-plugin + + + ${version.server} + cloud + + + ROOT.war + ... + + + + + package + + + + + ... + + + +---- +You may note that unlike the `provisioned-server` profile it uses the cloud context which enables a configuration tuned for OpenShift environment. + +The plugin uses https://github.com/wildfly/wildfly-glow[WildFly Glow] to discover the feature packs and layers required to run the application, and provisions a server containing those layers. + +[NOTE] +==== +This uses a pre-release of version 5.0.0 of the wildfly-maven-plugin providing the Glow functionality. The version is set in the pom's `pluginManagement` section. +==== + +If you get an error or the server is missing some functionality which cannot be auto-discovered, you can download the https://github.com/wildfly/wildfly-glow/releases[WildFly Glow CLI] and run the following command to see more information about what add-ons are available: +[source,shell] +---- +wildfly-glow show-add-ons +---- +endif::portedToGlow[] +endif::ProductRelease,EAPXPRelease[] ifdef::ProductRelease,EAPXPRelease[] [source,xml,subs="attributes+"] @@ -939,15 +1040,10 @@ ifdef::ProductRelease,EAPXPRelease[] ---- -endif::[] - -ifndef::ProductRelease,EAPXPRelease[] -You may note that unlike the `provisioned-server` profile it uses the cloud feature pack which enables a configuration tuned for OpenShift environment. -endif::[] -ifdef::ProductRelease,EAPXPRelease[] You may note that it uses the cloud feature pack which enables a configuration tuned for OpenShift environment. endif::[] + :leveloffset: 1 // Getting Started with Helm :leveloffset: +1 diff --git a/jaxrs-jwt/README.adoc b/jaxrs-jwt/README.adoc index 179699b92c..eca7efc66d 100644 --- a/jaxrs-jwt/README.adoc +++ b/jaxrs-jwt/README.adoc @@ -201,7 +201,6 @@ endif::[] :author: Martin Mazanek :level: Intermediate :technologies: JAX-RS, Security -:portedToGlow: true [abstract] The `jaxrs-jwt` quickstart demonstrates a Jakarta REST secured application using JSON Web Tokens (JWT) with Elytron. @@ -937,7 +936,7 @@ For Windows, use the `__{jbossHomeName}__\bin\add-user.bat` script. endif::[] The server provisioning functionality is provided by the WildFly Maven Plugin, and you may find its configuration in the quickstart `pom.xml`: - +ifndef::portedToGlow[] [source,xml,subs="attributes+"] ---- @@ -970,6 +969,55 @@ The server provisioning functionality is provided by the WildFly Maven Plugin, a ---- +endif::portedToGlow[] +ifdef::portedToGlow[] +[source,xml,subs="attributes+"] +---- + + provisioned-server + + + + org.wildfly.plugins + wildfly-maven-plugin + + + ${version.server} + + + ROOT.war + ... + + + + + package + + + + + ... + + + +---- +The plugin uses https://github.com/wildfly/wildfly-glow[WildFly Glow] to discover the feature packs and layers required to run the application, and provisions a server containing those layers. + +[NOTE] +==== +This uses a pre-release of version 5.0.0 of the wildfly-maven-plugin providing the Glow functionality. The version is set in the pom's `pluginManagement` section. +==== + +If you get an error or the server is missing some functionality which cannot be auto-discovered, you can download the https://github.com/wildfly/wildfly-glow/releases/tag[WildFly Glow CLI] and run the following command to see more information about what add-ons are available: + +[source,shell] +---- +wildfly-glow show-add-ons +---- +endif::portedToGlow[] [NOTE] ==== @@ -1169,6 +1217,7 @@ The server provisioning functionality is provided by the EAP Maven Plugin, and y endif::[] ifndef::ProductRelease,EAPXPRelease[] +ifndef::portedToGlow[] [source,xml,subs="attributes+"] ---- @@ -1203,7 +1252,59 @@ ifndef::ProductRelease,EAPXPRelease[] ---- -endif::[] +You may note that unlike the `provisioned-server` profile it uses the cloud feature pack which enables a configuration tuned for OpenShift environment. +endif::portedToGlow[] +ifdef::portedToGlow[] +[source,xml,subs="attributes+"] +---- + + openshift + + + + org.wildfly.plugins + wildfly-maven-plugin + + + ${version.server} + cloud + + + ROOT.war + ... + + + + + package + + + + + ... + + + +---- +You may note that unlike the `provisioned-server` profile it uses the cloud context which enables a configuration tuned for OpenShift environment. + +The plugin uses https://github.com/wildfly/wildfly-glow[WildFly Glow] to discover the feature packs and layers required to run the application, and provisions a server containing those layers. + +[NOTE] +==== +This uses a pre-release of version 5.0.0 of the wildfly-maven-plugin providing the Glow functionality. The version is set in the pom's `pluginManagement` section. +==== + +If you get an error or the server is missing some functionality which cannot be auto-discovered, you can download the https://github.com/wildfly/wildfly-glow/releases[WildFly Glow CLI] and run the following command to see more information about what add-ons are available: +[source,shell] +---- +wildfly-glow show-add-ons +---- +endif::portedToGlow[] +endif::ProductRelease,EAPXPRelease[] ifdef::ProductRelease,EAPXPRelease[] [source,xml,subs="attributes+"] @@ -1241,15 +1342,10 @@ ifdef::ProductRelease,EAPXPRelease[] ---- -endif::[] - -ifndef::ProductRelease,EAPXPRelease[] -You may note that unlike the `provisioned-server` profile it uses the cloud feature pack which enables a configuration tuned for OpenShift environment. -endif::[] -ifdef::ProductRelease,EAPXPRelease[] You may note that it uses the cloud feature pack which enables a configuration tuned for OpenShift environment. endif::[] + :leveloffset: 1 // Getting Started with Helm :leveloffset: +1 diff --git a/jaxws-ejb/README.adoc b/jaxws-ejb/README.adoc index 1a0134e0aa..23ff6ed1de 100644 --- a/jaxws-ejb/README.adoc +++ b/jaxws-ejb/README.adoc @@ -201,7 +201,6 @@ endif::[] :author: R Searls :level: Beginner :technologies: JAX-WS -:portedToGlow: true [abstract] The `jaxws-ejb` quickstart is a working example of the web service endpoint created from an EJB. @@ -619,7 +618,7 @@ For Windows, use the `__{jbossHomeName}__\bin\add-user.bat` script. endif::[] The server provisioning functionality is provided by the WildFly Maven Plugin, and you may find its configuration in the quickstart `pom.xml`: - +ifndef::portedToGlow[] [source,xml,subs="attributes+"] ---- @@ -652,6 +651,55 @@ The server provisioning functionality is provided by the WildFly Maven Plugin, a ---- +endif::portedToGlow[] +ifdef::portedToGlow[] +[source,xml,subs="attributes+"] +---- + + provisioned-server + + + + org.wildfly.plugins + wildfly-maven-plugin + + + ${version.server} + + + ROOT.war + ... + + + + + package + + + + + ... + + + +---- +The plugin uses https://github.com/wildfly/wildfly-glow[WildFly Glow] to discover the feature packs and layers required to run the application, and provisions a server containing those layers. + +[NOTE] +==== +This uses a pre-release of version 5.0.0 of the wildfly-maven-plugin providing the Glow functionality. The version is set in the pom's `pluginManagement` section. +==== + +If you get an error or the server is missing some functionality which cannot be auto-discovered, you can download the https://github.com/wildfly/wildfly-glow/releases/tag[WildFly Glow CLI] and run the following command to see more information about what add-ons are available: + +[source,shell] +---- +wildfly-glow show-add-ons +---- +endif::portedToGlow[] [NOTE] ==== @@ -850,6 +898,7 @@ The server provisioning functionality is provided by the EAP Maven Plugin, and y endif::[] ifndef::ProductRelease,EAPXPRelease[] +ifndef::portedToGlow[] [source,xml,subs="attributes+"] ---- @@ -884,7 +933,59 @@ ifndef::ProductRelease,EAPXPRelease[] ---- -endif::[] +You may note that unlike the `provisioned-server` profile it uses the cloud feature pack which enables a configuration tuned for OpenShift environment. +endif::portedToGlow[] +ifdef::portedToGlow[] +[source,xml,subs="attributes+"] +---- + + openshift + + + + org.wildfly.plugins + wildfly-maven-plugin + + + ${version.server} + cloud + + + ROOT.war + ... + + + + + package + + + + + ... + + + +---- +You may note that unlike the `provisioned-server` profile it uses the cloud context which enables a configuration tuned for OpenShift environment. + +The plugin uses https://github.com/wildfly/wildfly-glow[WildFly Glow] to discover the feature packs and layers required to run the application, and provisions a server containing those layers. + +[NOTE] +==== +This uses a pre-release of version 5.0.0 of the wildfly-maven-plugin providing the Glow functionality. The version is set in the pom's `pluginManagement` section. +==== + +If you get an error or the server is missing some functionality which cannot be auto-discovered, you can download the https://github.com/wildfly/wildfly-glow/releases[WildFly Glow CLI] and run the following command to see more information about what add-ons are available: +[source,shell] +---- +wildfly-glow show-add-ons +---- +endif::portedToGlow[] +endif::ProductRelease,EAPXPRelease[] ifdef::ProductRelease,EAPXPRelease[] [source,xml,subs="attributes+"] @@ -922,15 +1023,10 @@ ifdef::ProductRelease,EAPXPRelease[] ---- -endif::[] - -ifndef::ProductRelease,EAPXPRelease[] -You may note that unlike the `provisioned-server` profile it uses the cloud feature pack which enables a configuration tuned for OpenShift environment. -endif::[] -ifdef::ProductRelease,EAPXPRelease[] You may note that it uses the cloud feature pack which enables a configuration tuned for OpenShift environment. endif::[] + :leveloffset: 1 // Getting Started with Helm :leveloffset: +1 diff --git a/jaxws-retail/README.adoc b/jaxws-retail/README.adoc index f467d17a6b..d766cd9e83 100644 --- a/jaxws-retail/README.adoc +++ b/jaxws-retail/README.adoc @@ -201,7 +201,6 @@ endif::[] :author: R Searls :level: Beginner :technologies: JAX-WS -:portedToGlow: true [abstract] The `jaxws-retail` quickstart is a working example of a simple web service endpoint. @@ -616,7 +615,7 @@ For Windows, use the `__{jbossHomeName}__\bin\add-user.bat` script. endif::[] The server provisioning functionality is provided by the WildFly Maven Plugin, and you may find its configuration in the quickstart `pom.xml`: - +ifndef::portedToGlow[] [source,xml,subs="attributes+"] ---- @@ -649,6 +648,55 @@ The server provisioning functionality is provided by the WildFly Maven Plugin, a ---- +endif::portedToGlow[] +ifdef::portedToGlow[] +[source,xml,subs="attributes+"] +---- + + provisioned-server + + + + org.wildfly.plugins + wildfly-maven-plugin + + + ${version.server} + + + ROOT.war + ... + + + + + package + + + + + ... + + + +---- +The plugin uses https://github.com/wildfly/wildfly-glow[WildFly Glow] to discover the feature packs and layers required to run the application, and provisions a server containing those layers. + +[NOTE] +==== +This uses a pre-release of version 5.0.0 of the wildfly-maven-plugin providing the Glow functionality. The version is set in the pom's `pluginManagement` section. +==== + +If you get an error or the server is missing some functionality which cannot be auto-discovered, you can download the https://github.com/wildfly/wildfly-glow/releases/tag[WildFly Glow CLI] and run the following command to see more information about what add-ons are available: + +[source,shell] +---- +wildfly-glow show-add-ons +---- +endif::portedToGlow[] [NOTE] ==== @@ -847,6 +895,7 @@ The server provisioning functionality is provided by the EAP Maven Plugin, and y endif::[] ifndef::ProductRelease,EAPXPRelease[] +ifndef::portedToGlow[] [source,xml,subs="attributes+"] ---- @@ -881,7 +930,59 @@ ifndef::ProductRelease,EAPXPRelease[] ---- -endif::[] +You may note that unlike the `provisioned-server` profile it uses the cloud feature pack which enables a configuration tuned for OpenShift environment. +endif::portedToGlow[] +ifdef::portedToGlow[] +[source,xml,subs="attributes+"] +---- + + openshift + + + + org.wildfly.plugins + wildfly-maven-plugin + + + ${version.server} + cloud + + + ROOT.war + ... + + + + + package + + + + + ... + + + +---- +You may note that unlike the `provisioned-server` profile it uses the cloud context which enables a configuration tuned for OpenShift environment. + +The plugin uses https://github.com/wildfly/wildfly-glow[WildFly Glow] to discover the feature packs and layers required to run the application, and provisions a server containing those layers. + +[NOTE] +==== +This uses a pre-release of version 5.0.0 of the wildfly-maven-plugin providing the Glow functionality. The version is set in the pom's `pluginManagement` section. +==== + +If you get an error or the server is missing some functionality which cannot be auto-discovered, you can download the https://github.com/wildfly/wildfly-glow/releases[WildFly Glow CLI] and run the following command to see more information about what add-ons are available: +[source,shell] +---- +wildfly-glow show-add-ons +---- +endif::portedToGlow[] +endif::ProductRelease,EAPXPRelease[] ifdef::ProductRelease,EAPXPRelease[] [source,xml,subs="attributes+"] @@ -919,15 +1020,10 @@ ifdef::ProductRelease,EAPXPRelease[] ---- -endif::[] - -ifndef::ProductRelease,EAPXPRelease[] -You may note that unlike the `provisioned-server` profile it uses the cloud feature pack which enables a configuration tuned for OpenShift environment. -endif::[] -ifdef::ProductRelease,EAPXPRelease[] You may note that it uses the cloud feature pack which enables a configuration tuned for OpenShift environment. endif::[] + :leveloffset: 1 // Getting Started with Helm :leveloffset: +1 diff --git a/jsonp/README.adoc b/jsonp/README.adoc index 64207ee895..4b008ac0ec 100644 --- a/jsonp/README.adoc +++ b/jsonp/README.adoc @@ -202,7 +202,6 @@ endif::[] :level: Beginner :technologies: CDI, JSF, JSON-P :openshift: true -:portedToGlow: true [abstract] The `jsonp` quickstart demonstrates how to use the JSON-P API to produce object-based structures and then parse and consume them as stream-based JSON strings. @@ -572,7 +571,7 @@ For Windows, use the `__{jbossHomeName}__\bin\add-user.bat` script. endif::[] The server provisioning functionality is provided by the WildFly Maven Plugin, and you may find its configuration in the quickstart `pom.xml`: - +ifndef::portedToGlow[] [source,xml,subs="attributes+"] ---- @@ -605,6 +604,55 @@ The server provisioning functionality is provided by the WildFly Maven Plugin, a ---- +endif::portedToGlow[] +ifdef::portedToGlow[] +[source,xml,subs="attributes+"] +---- + + provisioned-server + + + + org.wildfly.plugins + wildfly-maven-plugin + + + ${version.server} + + + ROOT.war + ... + + + + + package + + + + + ... + + + +---- +The plugin uses https://github.com/wildfly/wildfly-glow[WildFly Glow] to discover the feature packs and layers required to run the application, and provisions a server containing those layers. + +[NOTE] +==== +This uses a pre-release of version 5.0.0 of the wildfly-maven-plugin providing the Glow functionality. The version is set in the pom's `pluginManagement` section. +==== + +If you get an error or the server is missing some functionality which cannot be auto-discovered, you can download the https://github.com/wildfly/wildfly-glow/releases/tag[WildFly Glow CLI] and run the following command to see more information about what add-ons are available: + +[source,shell] +---- +wildfly-glow show-add-ons +---- +endif::portedToGlow[] [NOTE] ==== @@ -803,6 +851,7 @@ The server provisioning functionality is provided by the EAP Maven Plugin, and y endif::[] ifndef::ProductRelease,EAPXPRelease[] +ifndef::portedToGlow[] [source,xml,subs="attributes+"] ---- @@ -837,7 +886,59 @@ ifndef::ProductRelease,EAPXPRelease[] ---- -endif::[] +You may note that unlike the `provisioned-server` profile it uses the cloud feature pack which enables a configuration tuned for OpenShift environment. +endif::portedToGlow[] +ifdef::portedToGlow[] +[source,xml,subs="attributes+"] +---- + + openshift + + + + org.wildfly.plugins + wildfly-maven-plugin + + + ${version.server} + cloud + + + ROOT.war + ... + + + + + package + + + + + ... + + + +---- +You may note that unlike the `provisioned-server` profile it uses the cloud context which enables a configuration tuned for OpenShift environment. + +The plugin uses https://github.com/wildfly/wildfly-glow[WildFly Glow] to discover the feature packs and layers required to run the application, and provisions a server containing those layers. + +[NOTE] +==== +This uses a pre-release of version 5.0.0 of the wildfly-maven-plugin providing the Glow functionality. The version is set in the pom's `pluginManagement` section. +==== + +If you get an error or the server is missing some functionality which cannot be auto-discovered, you can download the https://github.com/wildfly/wildfly-glow/releases[WildFly Glow CLI] and run the following command to see more information about what add-ons are available: +[source,shell] +---- +wildfly-glow show-add-ons +---- +endif::portedToGlow[] +endif::ProductRelease,EAPXPRelease[] ifdef::ProductRelease,EAPXPRelease[] [source,xml,subs="attributes+"] @@ -875,15 +976,10 @@ ifdef::ProductRelease,EAPXPRelease[] ---- -endif::[] - -ifndef::ProductRelease,EAPXPRelease[] -You may note that unlike the `provisioned-server` profile it uses the cloud feature pack which enables a configuration tuned for OpenShift environment. -endif::[] -ifdef::ProductRelease,EAPXPRelease[] You may note that it uses the cloud feature pack which enables a configuration tuned for OpenShift environment. endif::[] + :leveloffset: 1 // Getting Started with Helm :leveloffset: +1 diff --git a/kitchensink/README.adoc b/kitchensink/README.adoc index 8a07416133..1876d4cdbe 100644 --- a/kitchensink/README.adoc +++ b/kitchensink/README.adoc @@ -202,7 +202,6 @@ endif::[] :level: Intermediate :technologies: CDI, JSF, JPA, EJB, JAX-RS, BV :openshift: true -:portedToGlow: true [abstract] The `kitchensink` quickstart demonstrates a localized {javaVersion} web-enabled database application using JSF, CDI, EJB, JPA, and Bean Validation. @@ -747,7 +746,7 @@ For Windows, use the `__{jbossHomeName}__\bin\add-user.bat` script. endif::[] The server provisioning functionality is provided by the WildFly Maven Plugin, and you may find its configuration in the quickstart `pom.xml`: - +ifndef::portedToGlow[] [source,xml,subs="attributes+"] ---- @@ -780,6 +779,55 @@ The server provisioning functionality is provided by the WildFly Maven Plugin, a ---- +endif::portedToGlow[] +ifdef::portedToGlow[] +[source,xml,subs="attributes+"] +---- + + provisioned-server + + + + org.wildfly.plugins + wildfly-maven-plugin + + + ${version.server} + + + ROOT.war + ... + + + + + package + + + + + ... + + + +---- +The plugin uses https://github.com/wildfly/wildfly-glow[WildFly Glow] to discover the feature packs and layers required to run the application, and provisions a server containing those layers. + +[NOTE] +==== +This uses a pre-release of version 5.0.0 of the wildfly-maven-plugin providing the Glow functionality. The version is set in the pom's `pluginManagement` section. +==== + +If you get an error or the server is missing some functionality which cannot be auto-discovered, you can download the https://github.com/wildfly/wildfly-glow/releases/tag[WildFly Glow CLI] and run the following command to see more information about what add-ons are available: + +[source,shell] +---- +wildfly-glow show-add-ons +---- +endif::portedToGlow[] [NOTE] ==== @@ -978,6 +1026,7 @@ The server provisioning functionality is provided by the EAP Maven Plugin, and y endif::[] ifndef::ProductRelease,EAPXPRelease[] +ifndef::portedToGlow[] [source,xml,subs="attributes+"] ---- @@ -1012,7 +1061,59 @@ ifndef::ProductRelease,EAPXPRelease[] ---- -endif::[] +You may note that unlike the `provisioned-server` profile it uses the cloud feature pack which enables a configuration tuned for OpenShift environment. +endif::portedToGlow[] +ifdef::portedToGlow[] +[source,xml,subs="attributes+"] +---- + + openshift + + + + org.wildfly.plugins + wildfly-maven-plugin + + + ${version.server} + cloud + + + ROOT.war + ... + + + + + package + + + + + ... + + + +---- +You may note that unlike the `provisioned-server` profile it uses the cloud context which enables a configuration tuned for OpenShift environment. + +The plugin uses https://github.com/wildfly/wildfly-glow[WildFly Glow] to discover the feature packs and layers required to run the application, and provisions a server containing those layers. + +[NOTE] +==== +This uses a pre-release of version 5.0.0 of the wildfly-maven-plugin providing the Glow functionality. The version is set in the pom's `pluginManagement` section. +==== + +If you get an error or the server is missing some functionality which cannot be auto-discovered, you can download the https://github.com/wildfly/wildfly-glow/releases[WildFly Glow CLI] and run the following command to see more information about what add-ons are available: +[source,shell] +---- +wildfly-glow show-add-ons +---- +endif::portedToGlow[] +endif::ProductRelease,EAPXPRelease[] ifdef::ProductRelease,EAPXPRelease[] [source,xml,subs="attributes+"] @@ -1050,15 +1151,10 @@ ifdef::ProductRelease,EAPXPRelease[] ---- -endif::[] - -ifndef::ProductRelease,EAPXPRelease[] -You may note that unlike the `provisioned-server` profile it uses the cloud feature pack which enables a configuration tuned for OpenShift environment. -endif::[] -ifdef::ProductRelease,EAPXPRelease[] You may note that it uses the cloud feature pack which enables a configuration tuned for OpenShift environment. endif::[] + :leveloffset: 1 // Getting Started with Helm :leveloffset: +1 diff --git a/logging/README.adoc b/logging/README.adoc index e74c9d13af..b011e5e58b 100644 --- a/logging/README.adoc +++ b/logging/README.adoc @@ -201,7 +201,6 @@ endif::[] :author: Joel Tosi :level: Intermediate :technologies: Logging -:portedToGlow: true [abstract] The `logging` quickstart demonstrates how to configure different logging levels in {productName}. @@ -624,12 +623,11 @@ Now you have deployed the quickstart with the default configuration, you run a m . Review the `configure-logging.cli` file in the root of this quickstart directory. This script configures the logging subsystem in the server configuration file. It configures the file handlers, creates the logger for our quickstart and sets the level to TRACE. It also assigns the handlers for our quickstart to our logger. -. The CLI script references the logging formatter with the property `${formatter}`. On bare-metal this formatter is named `PATTERN`, on OpenShift it is named `OPENSHIFT`. A properties file is to be provided when executing the CLI to resolve the `formatter` property according to the execution context. The file `cli.properties` is to be used when executing the script on bare-metal. `cli-openshift.properties` is to be used when executing the script on OpenShift. . Open a new terminal, navigate to the root directory of this quickstart, and run the following command, replacing `__{jbossHomeName}__` with the path to your server: + [source,subs="+quotes,attributes+",options="nowrap"] ---- -$ __{jbossHomeName}__/bin/jboss-cli.sh --connect --file=configure-logging.cli --resolve-parameter-values=true --properties=cli.properties +$ __{jbossHomeName}__/bin/jboss-cli.sh --connect --file=configure-logging.cli ---- + NOTE: For Windows, use the `__{jbossHomeName}__\bin\jboss-cli.bat` script. @@ -922,7 +920,7 @@ For Windows, use the `__{jbossHomeName}__\bin\add-user.bat` script. endif::[] The server provisioning functionality is provided by the WildFly Maven Plugin, and you may find its configuration in the quickstart `pom.xml`: - +ifndef::portedToGlow[] [source,xml,subs="attributes+"] ---- @@ -955,6 +953,55 @@ The server provisioning functionality is provided by the WildFly Maven Plugin, a ---- +endif::portedToGlow[] +ifdef::portedToGlow[] +[source,xml,subs="attributes+"] +---- + + provisioned-server + + + + org.wildfly.plugins + wildfly-maven-plugin + + + ${version.server} + + + ROOT.war + ... + + + + + package + + + + + ... + + + +---- +The plugin uses https://github.com/wildfly/wildfly-glow[WildFly Glow] to discover the feature packs and layers required to run the application, and provisions a server containing those layers. + +[NOTE] +==== +This uses a pre-release of version 5.0.0 of the wildfly-maven-plugin providing the Glow functionality. The version is set in the pom's `pluginManagement` section. +==== + +If you get an error or the server is missing some functionality which cannot be auto-discovered, you can download the https://github.com/wildfly/wildfly-glow/releases/tag[WildFly Glow CLI] and run the following command to see more information about what add-ons are available: + +[source,shell] +---- +wildfly-glow show-add-ons +---- +endif::portedToGlow[] [NOTE] ==== @@ -1154,6 +1201,7 @@ The server provisioning functionality is provided by the EAP Maven Plugin, and y endif::[] ifndef::ProductRelease,EAPXPRelease[] +ifndef::portedToGlow[] [source,xml,subs="attributes+"] ---- @@ -1188,7 +1236,59 @@ ifndef::ProductRelease,EAPXPRelease[] ---- -endif::[] +You may note that unlike the `provisioned-server` profile it uses the cloud feature pack which enables a configuration tuned for OpenShift environment. +endif::portedToGlow[] +ifdef::portedToGlow[] +[source,xml,subs="attributes+"] +---- + + openshift + + + + org.wildfly.plugins + wildfly-maven-plugin + + + ${version.server} + cloud + + + ROOT.war + ... + + + + + package + + + + + ... + + + +---- +You may note that unlike the `provisioned-server` profile it uses the cloud context which enables a configuration tuned for OpenShift environment. + +The plugin uses https://github.com/wildfly/wildfly-glow[WildFly Glow] to discover the feature packs and layers required to run the application, and provisions a server containing those layers. + +[NOTE] +==== +This uses a pre-release of version 5.0.0 of the wildfly-maven-plugin providing the Glow functionality. The version is set in the pom's `pluginManagement` section. +==== + +If you get an error or the server is missing some functionality which cannot be auto-discovered, you can download the https://github.com/wildfly/wildfly-glow/releases[WildFly Glow CLI] and run the following command to see more information about what add-ons are available: +[source,shell] +---- +wildfly-glow show-add-ons +---- +endif::portedToGlow[] +endif::ProductRelease,EAPXPRelease[] ifdef::ProductRelease,EAPXPRelease[] [source,xml,subs="attributes+"] @@ -1226,15 +1326,10 @@ ifdef::ProductRelease,EAPXPRelease[] ---- -endif::[] - -ifndef::ProductRelease,EAPXPRelease[] -You may note that unlike the `provisioned-server` profile it uses the cloud feature pack which enables a configuration tuned for OpenShift environment. -endif::[] -ifdef::ProductRelease,EAPXPRelease[] You may note that it uses the cloud feature pack which enables a configuration tuned for OpenShift environment. endif::[] + :leveloffset: 1 // Getting Started with Helm :leveloffset: +1 diff --git a/mail/README.adoc b/mail/README.adoc index 89c21f0d09..d841faa952 100644 --- a/mail/README.adoc +++ b/mail/README.adoc @@ -201,7 +201,6 @@ endif::[] :author: Joel Tosi :level: Beginner :technologies: JavaMail, CDI, JSF -:portedToGlow: true [abstract] The `mail` quickstart demonstrates how to send and receive emails using CDI and JSF and with custom Mail provider configured in {productName}. @@ -998,7 +997,7 @@ For Windows, use the `__{jbossHomeName}__\bin\add-user.bat` script. endif::[] The server provisioning functionality is provided by the WildFly Maven Plugin, and you may find its configuration in the quickstart `pom.xml`: - +ifndef::portedToGlow[] [source,xml,subs="attributes+"] ---- @@ -1031,6 +1030,55 @@ The server provisioning functionality is provided by the WildFly Maven Plugin, a ---- +endif::portedToGlow[] +ifdef::portedToGlow[] +[source,xml,subs="attributes+"] +---- + + provisioned-server + + + + org.wildfly.plugins + wildfly-maven-plugin + + + ${version.server} + + + ROOT.war + ... + + + + + package + + + + + ... + + + +---- +The plugin uses https://github.com/wildfly/wildfly-glow[WildFly Glow] to discover the feature packs and layers required to run the application, and provisions a server containing those layers. + +[NOTE] +==== +This uses a pre-release of version 5.0.0 of the wildfly-maven-plugin providing the Glow functionality. The version is set in the pom's `pluginManagement` section. +==== + +If you get an error or the server is missing some functionality which cannot be auto-discovered, you can download the https://github.com/wildfly/wildfly-glow/releases/tag[WildFly Glow CLI] and run the following command to see more information about what add-ons are available: + +[source,shell] +---- +wildfly-glow show-add-ons +---- +endif::portedToGlow[] [NOTE] ==== diff --git a/micrometer/README.adoc b/micrometer/README.adoc index 9ee8cf9462..778ee630ee 100644 --- a/micrometer/README.adoc +++ b/micrometer/README.adoc @@ -1,6 +1,3 @@ -<<<<<<< HEAD -include::../shared-doc/attributes.adoc[] -======= ifdef::env-github[] :artifactId: micrometer endif::[] @@ -199,7 +196,6 @@ endif::[] :JBDSInstallBookName: Installation Guide :LinkJBDSGettingStarted: https://access.redhat.com/documentation/en-us/red_hat_codeready_studio/{JBDSVersion}/html-single/getting_started_with_codeready_studio_tools/ :JBDSGettingStartedBookName: Getting Started with CodeReady Studio Tools ->>>>>>> b4ca9a43b66d96aff01d3da9f9714b65b9bb38b0 = micrometer: Micrometer QuickStart :author: Jason Lee @@ -232,9 +228,6 @@ To complete this guide, you will need: * Apache Maven 3.5.3+ * Docker Compose, or alternatively Podman Compose -<<<<<<< HEAD -include::../shared-doc/use-of-jboss-home-name.adoc[leveloffset=+1] -======= :leveloffset: +1 ifdef::requires-multiple-servers[] @@ -269,14 +262,10 @@ When you see the replaceable variable __QUICKSTART_HOME__, replace it with the p endif::[] :leveloffset!: ->>>>>>> b4ca9a43b66d96aff01d3da9f9714b65b9bb38b0 == Steps // Start the {productName} Standalone Server -<<<<<<< HEAD -include::../shared-doc/start-the-standalone-server.adoc[leveloffset=+1] -======= :leveloffset: +1 [[start_the_eap_standalone_server]] @@ -392,7 +381,6 @@ $ __{jbossHomeName}__/bin/standalone.sh {serverArguments} -b 0.0.0.0 endif::[] :leveloffset!: ->>>>>>> b4ca9a43b66d96aff01d3da9f9714b65b9bb38b0 [[configure_the_server]] === Configure the Server @@ -441,9 +429,6 @@ The Docker Compose configuration file is `docker-compose.yaml`: [source,yaml] ---- -<<<<<<< HEAD -include::docker-compose.yaml[] -======= version: "3" services: @@ -461,16 +446,12 @@ services: - 4318:4318 # OTLP http receiver - 55679:55679 # zpages extension - 1234:1234 # /metrics endpoint ->>>>>>> b4ca9a43b66d96aff01d3da9f9714b65b9bb38b0 ---- The Collector server configuration file is `otel-collector-config.yaml`: [source,yaml] ---- -<<<<<<< HEAD -include::otel-collector-config.yaml[] -======= extensions: health_check: pprof: @@ -500,7 +481,6 @@ service: extensions: [health_check, pprof, zpages] ->>>>>>> b4ca9a43b66d96aff01d3da9f9714b65b9bb38b0 ---- We can now bring up the collector server instance: @@ -619,9 +599,6 @@ public String checkIfPrime(@PathParam("number") long number) throws Exception { This method represents a simple REST endpoint that is able to determine whether the number passed as a path parameter is a prime number. -<<<<<<< HEAD -include::../shared-doc/build-and-deploy-the-quickstart.adoc[leveloffset=+1] -======= :leveloffset: +1 [[build_and_deploy_the_quickstart]] @@ -730,7 +707,6 @@ endif::[] :leveloffset!: ->>>>>>> b4ca9a43b66d96aff01d3da9f9714b65b9bb38b0 === Access the quickstart application @@ -774,23 +750,6 @@ prime_timer_count{job="wildfly"} 1 Notice that all four meters registered in the `@PostConstruct` method as well as the `Timer` in our endpoint method have all been published. // Server Distribution Testing -<<<<<<< HEAD -include::../shared-doc/run-integration-tests-with-server-distribution.adoc[leveloffset=+2] -// Undeploy the Quickstart -include::../shared-doc/undeploy-the-quickstart.adoc[leveloffset=+2] -// Restore the {productName} Standalone Server Configuration -include::../shared-doc/restore-standalone-server-configuration.adoc[leveloffset=+2] -// Restore the {productName} Standalone Server Configuration Manually -include::../shared-doc/restore-standalone-server-configuration-manual.adoc[leveloffset=+3] -// Build and run sections for other environments/builds -ifndef::ProductRelease,EAPXPRelease[] -include::../shared-doc/build-and-run-the-quickstart-with-provisioned-server.adoc[leveloffset=+1] -endif::[] -// Bootable JAR -include::../shared-doc/build-and-run-the-quickstart-with-bootable-jar.adoc[leveloffset=+1] -// OpenShift -include::../shared-doc/build-and-run-the-quickstart-with-openshift.adoc[leveloffset=+1] -======= :leveloffset: +2 [[run_the_integration_tests_with_server_distribution]] @@ -1009,7 +968,7 @@ For Windows, use the `__{jbossHomeName}__\bin\add-user.bat` script. endif::[] The server provisioning functionality is provided by the WildFly Maven Plugin, and you may find its configuration in the quickstart `pom.xml`: - +ifndef::portedToGlow[] [source,xml,subs="attributes+"] ---- @@ -1042,6 +1001,55 @@ The server provisioning functionality is provided by the WildFly Maven Plugin, a ---- +endif::portedToGlow[] +ifdef::portedToGlow[] +[source,xml,subs="attributes+"] +---- + + provisioned-server + + + + org.wildfly.plugins + wildfly-maven-plugin + + + ${version.server} + + + ROOT.war + ... + + + + + package + + + + + ... + + + +---- +The plugin uses https://github.com/wildfly/wildfly-glow[WildFly Glow] to discover the feature packs and layers required to run the application, and provisions a server containing those layers. + +[NOTE] +==== +This uses a pre-release of version 5.0.0 of the wildfly-maven-plugin providing the Glow functionality. The version is set in the pom's `pluginManagement` section. +==== + +If you get an error or the server is missing some functionality which cannot be auto-discovered, you can download the https://github.com/wildfly/wildfly-glow/releases/tag[WildFly Glow CLI] and run the following command to see more information about what add-ons are available: + +[source,shell] +---- +wildfly-glow show-add-ons +---- +endif::portedToGlow[] [NOTE] ==== @@ -1224,6 +1232,7 @@ You can use the WildFly JAR Maven plug-in to build a {productName} bootable JAR The quickstart `pom.xml` file contains a Maven profile named *bootable-jar* which configures the bootable JAR building: +ifndef::portedToGlow[] [source,xml,subs="attributes+"] ---- @@ -1253,6 +1262,56 @@ The quickstart `pom.xml` file contains a Maven profile named *bootable-jar* whic ---- +endif::portedToGlow[] +ifdef::portedToGlow[] +[source,xml,subs="attributes+"] +---- + + bootable-jar + + + + org.wildfly.plugins + wildfly-maven-plugin + + + ${version.server} + + true + + ROOT.war + ... + + + + + package + + + + + ... + + + +---- +The plugin uses https://github.com/wildfly/wildfly-glow[WildFly Glow] to discover the feature packs and layers required to run the application, and provisions a server containing those layers. + +[NOTE] +==== +This uses a pre-release of version 5.0.0 of the wildfly-maven-plugin providing the Glow functionality. The version is set in the pom's `pluginManagement` section. +==== + +If you get an error or the server is missing some functionality which cannot be auto-discovered, you can download the https://github.com/wildfly/wildfly-glow/releases/tag[WildFly Glow CLI] and run the following command to see more information about what add-ons are available: + +[source,shell] +---- +wildfly-glow show-add-ons +---- +endif::portedToGlow[] .Procedure @@ -1414,6 +1473,7 @@ The server provisioning functionality is provided by the EAP Maven Plugin, and y endif::[] ifndef::ProductRelease,EAPXPRelease[] +ifndef::portedToGlow[] [source,xml,subs="attributes+"] ---- @@ -1448,7 +1508,59 @@ ifndef::ProductRelease,EAPXPRelease[] ---- -endif::[] +You may note that unlike the `provisioned-server` profile it uses the cloud feature pack which enables a configuration tuned for OpenShift environment. +endif::portedToGlow[] +ifdef::portedToGlow[] +[source,xml,subs="attributes+"] +---- + + openshift + + + + org.wildfly.plugins + wildfly-maven-plugin + + + ${version.server} + cloud + + + ROOT.war + ... + + + + + package + + + + + ... + + + +---- +You may note that unlike the `provisioned-server` profile it uses the cloud context which enables a configuration tuned for OpenShift environment. + +The plugin uses https://github.com/wildfly/wildfly-glow[WildFly Glow] to discover the feature packs and layers required to run the application, and provisions a server containing those layers. + +[NOTE] +==== +This uses a pre-release of version 5.0.0 of the wildfly-maven-plugin providing the Glow functionality. The version is set in the pom's `pluginManagement` section. +==== + +If you get an error or the server is missing some functionality which cannot be auto-discovered, you can download the https://github.com/wildfly/wildfly-glow/releases[WildFly Glow CLI] and run the following command to see more information about what add-ons are available: +[source,shell] +---- +wildfly-glow show-add-ons +---- +endif::portedToGlow[] +endif::ProductRelease,EAPXPRelease[] ifdef::ProductRelease,EAPXPRelease[] [source,xml,subs="attributes+"] @@ -1486,15 +1598,10 @@ ifdef::ProductRelease,EAPXPRelease[] ---- -endif::[] - -ifndef::ProductRelease,EAPXPRelease[] -You may note that unlike the `provisioned-server` profile it uses the cloud feature pack which enables a configuration tuned for OpenShift environment. -endif::[] -ifdef::ProductRelease,EAPXPRelease[] You may note that it uses the cloud feature pack which enables a configuration tuned for OpenShift environment. endif::[] + :leveloffset: 1 // Getting Started with Helm :leveloffset: +1 @@ -1600,7 +1707,11 @@ ifndef::useHelmChartDir[] ---- build: uri: https://github.com/wildfly/quickstart.git +<<<<<<< HEAD + ref: main +======= ref: 31.x +>>>>>>> b4ca9a43b66d96aff01d3da9f9714b65b9bb38b0 contextDir: micrometer deploy: replicas: 1 @@ -1703,7 +1814,6 @@ The tests are using SSL to connect to the quickstart running on OpenShift. So yo :leveloffset: 1 :leveloffset!: ->>>>>>> b4ca9a43b66d96aff01d3da9f9714b65b9bb38b0 == Conclusion diff --git a/microprofile-config/README.adoc b/microprofile-config/README.adoc index 6de7fae595..a64f20c240 100644 --- a/microprofile-config/README.adoc +++ b/microprofile-config/README.adoc @@ -201,7 +201,6 @@ endif::[] :author: Martin Stefanko :level: Beginner :technologies: MicroProfile Config -:portedToGlow: true [abstract] The `microprofile-config` quickstart demonstrates the use of the MicroProfile Config specification in {productName}. @@ -1385,6 +1384,7 @@ You can use the WildFly JAR Maven plug-in to build a {productName} bootable JAR The quickstart `pom.xml` file contains a Maven profile named *bootable-jar* which configures the bootable JAR building: +ifndef::portedToGlow[] [source,xml,subs="attributes+"] ---- @@ -1414,6 +1414,56 @@ The quickstart `pom.xml` file contains a Maven profile named *bootable-jar* whic ---- +endif::portedToGlow[] +ifdef::portedToGlow[] +[source,xml,subs="attributes+"] +---- + + bootable-jar + + + + org.wildfly.plugins + wildfly-maven-plugin + + + ${version.server} + + true + + ROOT.war + ... + + + + + package + + + + + ... + + + +---- +The plugin uses https://github.com/wildfly/wildfly-glow[WildFly Glow] to discover the feature packs and layers required to run the application, and provisions a server containing those layers. + +[NOTE] +==== +This uses a pre-release of version 5.0.0 of the wildfly-maven-plugin providing the Glow functionality. The version is set in the pom's `pluginManagement` section. +==== + +If you get an error or the server is missing some functionality which cannot be auto-discovered, you can download the https://github.com/wildfly/wildfly-glow/releases/tag[WildFly Glow CLI] and run the following command to see more information about what add-ons are available: + +[source,shell] +---- +wildfly-glow show-add-ons +---- +endif::portedToGlow[] .Procedure @@ -1576,6 +1626,7 @@ The server provisioning functionality is provided by the EAP Maven Plugin, and y endif::[] ifndef::ProductRelease,EAPXPRelease[] +ifndef::portedToGlow[] [source,xml,subs="attributes+"] ---- @@ -1610,7 +1661,59 @@ ifndef::ProductRelease,EAPXPRelease[] ---- -endif::[] +You may note that unlike the `provisioned-server` profile it uses the cloud feature pack which enables a configuration tuned for OpenShift environment. +endif::portedToGlow[] +ifdef::portedToGlow[] +[source,xml,subs="attributes+"] +---- + + openshift + + + + org.wildfly.plugins + wildfly-maven-plugin + + + ${version.server} + cloud + + + ROOT.war + ... + + + + + package + + + + + ... + + + +---- +You may note that unlike the `provisioned-server` profile it uses the cloud context which enables a configuration tuned for OpenShift environment. + +The plugin uses https://github.com/wildfly/wildfly-glow[WildFly Glow] to discover the feature packs and layers required to run the application, and provisions a server containing those layers. + +[NOTE] +==== +This uses a pre-release of version 5.0.0 of the wildfly-maven-plugin providing the Glow functionality. The version is set in the pom's `pluginManagement` section. +==== + +If you get an error or the server is missing some functionality which cannot be auto-discovered, you can download the https://github.com/wildfly/wildfly-glow/releases[WildFly Glow CLI] and run the following command to see more information about what add-ons are available: +[source,shell] +---- +wildfly-glow show-add-ons +---- +endif::portedToGlow[] +endif::ProductRelease,EAPXPRelease[] ifdef::ProductRelease,EAPXPRelease[] [source,xml,subs="attributes+"] @@ -1648,15 +1751,10 @@ ifdef::ProductRelease,EAPXPRelease[] ---- -endif::[] - -ifndef::ProductRelease,EAPXPRelease[] -You may note that unlike the `provisioned-server` profile it uses the cloud feature pack which enables a configuration tuned for OpenShift environment. -endif::[] -ifdef::ProductRelease,EAPXPRelease[] You may note that it uses the cloud feature pack which enables a configuration tuned for OpenShift environment. endif::[] + :leveloffset: 1 // Getting Started with Helm :leveloffset: +1 diff --git a/microprofile-fault-tolerance/README.adoc b/microprofile-fault-tolerance/README.adoc index f4416584cf..048f45a426 100644 --- a/microprofile-fault-tolerance/README.adoc +++ b/microprofile-fault-tolerance/README.adoc @@ -10,7 +10,6 @@ https://github.com/quarkusio/quarkus/tree/master/docs/src/main/asciidoc // Needed to correctly render on GitHub :productName: WildFly :standalone-server-type: microprofile -:portedToGlow: true //*********************************************************************************** // Enable the following flag to build README.html files for JBoss EAP product builds. @@ -1216,6 +1215,7 @@ You can use the WildFly JAR Maven plug-in to build a {productName} bootable JAR The quickstart `pom.xml` file contains a Maven profile named *bootable-jar* which configures the bootable JAR building: +ifndef::portedToGlow[] [source,xml,subs="attributes+"] ---- @@ -1245,6 +1245,56 @@ The quickstart `pom.xml` file contains a Maven profile named *bootable-jar* whic ---- +endif::portedToGlow[] +ifdef::portedToGlow[] +[source,xml,subs="attributes+"] +---- + + bootable-jar + + + + org.wildfly.plugins + wildfly-maven-plugin + + + ${version.server} + + true + + ROOT.war + ... + + + + + package + + + + + ... + + + +---- +The plugin uses https://github.com/wildfly/wildfly-glow[WildFly Glow] to discover the feature packs and layers required to run the application, and provisions a server containing those layers. + +[NOTE] +==== +This uses a pre-release of version 5.0.0 of the wildfly-maven-plugin providing the Glow functionality. The version is set in the pom's `pluginManagement` section. +==== + +If you get an error or the server is missing some functionality which cannot be auto-discovered, you can download the https://github.com/wildfly/wildfly-glow/releases/tag[WildFly Glow CLI] and run the following command to see more information about what add-ons are available: + +[source,shell] +---- +wildfly-glow show-add-ons +---- +endif::portedToGlow[] .Procedure @@ -1407,6 +1457,7 @@ The server provisioning functionality is provided by the EAP Maven Plugin, and y endif::[] ifndef::ProductRelease,EAPXPRelease[] +ifndef::portedToGlow[] [source,xml,subs="attributes+"] ---- @@ -1441,7 +1492,59 @@ ifndef::ProductRelease,EAPXPRelease[] ---- -endif::[] +You may note that unlike the `provisioned-server` profile it uses the cloud feature pack which enables a configuration tuned for OpenShift environment. +endif::portedToGlow[] +ifdef::portedToGlow[] +[source,xml,subs="attributes+"] +---- + + openshift + + + + org.wildfly.plugins + wildfly-maven-plugin + + + ${version.server} + cloud + + + ROOT.war + ... + + + + + package + + + + + ... + + + +---- +You may note that unlike the `provisioned-server` profile it uses the cloud context which enables a configuration tuned for OpenShift environment. + +The plugin uses https://github.com/wildfly/wildfly-glow[WildFly Glow] to discover the feature packs and layers required to run the application, and provisions a server containing those layers. + +[NOTE] +==== +This uses a pre-release of version 5.0.0 of the wildfly-maven-plugin providing the Glow functionality. The version is set in the pom's `pluginManagement` section. +==== + +If you get an error or the server is missing some functionality which cannot be auto-discovered, you can download the https://github.com/wildfly/wildfly-glow/releases[WildFly Glow CLI] and run the following command to see more information about what add-ons are available: +[source,shell] +---- +wildfly-glow show-add-ons +---- +endif::portedToGlow[] +endif::ProductRelease,EAPXPRelease[] ifdef::ProductRelease,EAPXPRelease[] [source,xml,subs="attributes+"] @@ -1479,15 +1582,10 @@ ifdef::ProductRelease,EAPXPRelease[] ---- -endif::[] - -ifndef::ProductRelease,EAPXPRelease[] -You may note that unlike the `provisioned-server` profile it uses the cloud feature pack which enables a configuration tuned for OpenShift environment. -endif::[] -ifdef::ProductRelease,EAPXPRelease[] You may note that it uses the cloud feature pack which enables a configuration tuned for OpenShift environment. endif::[] + :leveloffset: 1 // Getting Started with Helm :leveloffset: +1 diff --git a/microprofile-health/README.adoc b/microprofile-health/README.adoc index 9bcc9a672b..747ddd4077 100644 --- a/microprofile-health/README.adoc +++ b/microprofile-health/README.adoc @@ -205,7 +205,6 @@ endif::[] :post-helm-install-actions: ../microprofile-health/expose-management-port.adoc :extra-openshift-testing-actions: ../microprofile-health/expose-management-port.adoc :extra-openshift-test-arguments: -Dserver.management.host=https://$(oc get route {artifactId}-management --template='{{ .spec.host }}') -:portedToGlow: true [abstract] The `microprofile-health` quickstart demonstrates the use of the MicroProfile Health specification in {productName}. @@ -1058,6 +1057,7 @@ You can use the WildFly JAR Maven plug-in to build a {productName} bootable JAR The quickstart `pom.xml` file contains a Maven profile named *bootable-jar* which configures the bootable JAR building: +ifndef::portedToGlow[] [source,xml,subs="attributes+"] ---- @@ -1087,6 +1087,56 @@ The quickstart `pom.xml` file contains a Maven profile named *bootable-jar* whic ---- +endif::portedToGlow[] +ifdef::portedToGlow[] +[source,xml,subs="attributes+"] +---- + + bootable-jar + + + + org.wildfly.plugins + wildfly-maven-plugin + + + ${version.server} + + true + + ROOT.war + ... + + + + + package + + + + + ... + + + +---- +The plugin uses https://github.com/wildfly/wildfly-glow[WildFly Glow] to discover the feature packs and layers required to run the application, and provisions a server containing those layers. + +[NOTE] +==== +This uses a pre-release of version 5.0.0 of the wildfly-maven-plugin providing the Glow functionality. The version is set in the pom's `pluginManagement` section. +==== + +If you get an error or the server is missing some functionality which cannot be auto-discovered, you can download the https://github.com/wildfly/wildfly-glow/releases/tag[WildFly Glow CLI] and run the following command to see more information about what add-ons are available: + +[source,shell] +---- +wildfly-glow show-add-ons +---- +endif::portedToGlow[] .Procedure @@ -1249,6 +1299,7 @@ The server provisioning functionality is provided by the EAP Maven Plugin, and y endif::[] ifndef::ProductRelease,EAPXPRelease[] +ifndef::portedToGlow[] [source,xml,subs="attributes+"] ---- @@ -1283,7 +1334,59 @@ ifndef::ProductRelease,EAPXPRelease[] ---- -endif::[] +You may note that unlike the `provisioned-server` profile it uses the cloud feature pack which enables a configuration tuned for OpenShift environment. +endif::portedToGlow[] +ifdef::portedToGlow[] +[source,xml,subs="attributes+"] +---- + + openshift + + + + org.wildfly.plugins + wildfly-maven-plugin + + + ${version.server} + cloud + + + ROOT.war + ... + + + + + package + + + + + ... + + + +---- +You may note that unlike the `provisioned-server` profile it uses the cloud context which enables a configuration tuned for OpenShift environment. + +The plugin uses https://github.com/wildfly/wildfly-glow[WildFly Glow] to discover the feature packs and layers required to run the application, and provisions a server containing those layers. + +[NOTE] +==== +This uses a pre-release of version 5.0.0 of the wildfly-maven-plugin providing the Glow functionality. The version is set in the pom's `pluginManagement` section. +==== + +If you get an error or the server is missing some functionality which cannot be auto-discovered, you can download the https://github.com/wildfly/wildfly-glow/releases[WildFly Glow CLI] and run the following command to see more information about what add-ons are available: +[source,shell] +---- +wildfly-glow show-add-ons +---- +endif::portedToGlow[] +endif::ProductRelease,EAPXPRelease[] ifdef::ProductRelease,EAPXPRelease[] [source,xml,subs="attributes+"] @@ -1321,15 +1424,10 @@ ifdef::ProductRelease,EAPXPRelease[] ---- -endif::[] - -ifndef::ProductRelease,EAPXPRelease[] -You may note that unlike the `provisioned-server` profile it uses the cloud feature pack which enables a configuration tuned for OpenShift environment. -endif::[] -ifdef::ProductRelease,EAPXPRelease[] You may note that it uses the cloud feature pack which enables a configuration tuned for OpenShift environment. endif::[] + :leveloffset: 1 // Getting Started with Helm :leveloffset: +1 diff --git a/microprofile-jwt/README.adoc b/microprofile-jwt/README.adoc index 7bc548db7d..a76e225ab1 100644 --- a/microprofile-jwt/README.adoc +++ b/microprofile-jwt/README.adoc @@ -201,7 +201,6 @@ endif::[] :author: Darran Lofthouse :level: Intermediate :technologies: JWT, Security, MicroProfile -:portedToGlow: true [abstract] The `microprofile-jwt` quickstart demonstrates the use of the MicroProfile JWT specification in {productName}. @@ -1139,6 +1138,7 @@ You can use the WildFly JAR Maven plug-in to build a {productName} bootable JAR The quickstart `pom.xml` file contains a Maven profile named *bootable-jar* which configures the bootable JAR building: +ifndef::portedToGlow[] [source,xml,subs="attributes+"] ---- @@ -1168,6 +1168,56 @@ The quickstart `pom.xml` file contains a Maven profile named *bootable-jar* whic ---- +endif::portedToGlow[] +ifdef::portedToGlow[] +[source,xml,subs="attributes+"] +---- + + bootable-jar + + + + org.wildfly.plugins + wildfly-maven-plugin + + + ${version.server} + + true + + ROOT.war + ... + + + + + package + + + + + ... + + + +---- +The plugin uses https://github.com/wildfly/wildfly-glow[WildFly Glow] to discover the feature packs and layers required to run the application, and provisions a server containing those layers. + +[NOTE] +==== +This uses a pre-release of version 5.0.0 of the wildfly-maven-plugin providing the Glow functionality. The version is set in the pom's `pluginManagement` section. +==== + +If you get an error or the server is missing some functionality which cannot be auto-discovered, you can download the https://github.com/wildfly/wildfly-glow/releases/tag[WildFly Glow CLI] and run the following command to see more information about what add-ons are available: + +[source,shell] +---- +wildfly-glow show-add-ons +---- +endif::portedToGlow[] .Procedure @@ -1330,6 +1380,7 @@ The server provisioning functionality is provided by the EAP Maven Plugin, and y endif::[] ifndef::ProductRelease,EAPXPRelease[] +ifndef::portedToGlow[] [source,xml,subs="attributes+"] ---- @@ -1364,7 +1415,59 @@ ifndef::ProductRelease,EAPXPRelease[] ---- -endif::[] +You may note that unlike the `provisioned-server` profile it uses the cloud feature pack which enables a configuration tuned for OpenShift environment. +endif::portedToGlow[] +ifdef::portedToGlow[] +[source,xml,subs="attributes+"] +---- + + openshift + + + + org.wildfly.plugins + wildfly-maven-plugin + + + ${version.server} + cloud + + + ROOT.war + ... + + + + + package + + + + + ... + + + +---- +You may note that unlike the `provisioned-server` profile it uses the cloud context which enables a configuration tuned for OpenShift environment. + +The plugin uses https://github.com/wildfly/wildfly-glow[WildFly Glow] to discover the feature packs and layers required to run the application, and provisions a server containing those layers. + +[NOTE] +==== +This uses a pre-release of version 5.0.0 of the wildfly-maven-plugin providing the Glow functionality. The version is set in the pom's `pluginManagement` section. +==== + +If you get an error or the server is missing some functionality which cannot be auto-discovered, you can download the https://github.com/wildfly/wildfly-glow/releases[WildFly Glow CLI] and run the following command to see more information about what add-ons are available: +[source,shell] +---- +wildfly-glow show-add-ons +---- +endif::portedToGlow[] +endif::ProductRelease,EAPXPRelease[] ifdef::ProductRelease,EAPXPRelease[] [source,xml,subs="attributes+"] @@ -1402,15 +1505,10 @@ ifdef::ProductRelease,EAPXPRelease[] ---- -endif::[] - -ifndef::ProductRelease,EAPXPRelease[] -You may note that unlike the `provisioned-server` profile it uses the cloud feature pack which enables a configuration tuned for OpenShift environment. -endif::[] -ifdef::ProductRelease,EAPXPRelease[] You may note that it uses the cloud feature pack which enables a configuration tuned for OpenShift environment. endif::[] + :leveloffset: 1 // Getting Started with Helm :leveloffset: +1 diff --git a/microprofile-lra/README.adoc b/microprofile-lra/README.adoc index 53224db737..ad24e7bc59 100644 --- a/microprofile-lra/README.adoc +++ b/microprofile-lra/README.adoc @@ -201,7 +201,6 @@ endif::[] :author: Martin Stefanko :level: Beginner :technologies: MicroProfile LRA -:portedToGlow: true [abstract] The `microprofile-lra` quickstart demonstrates the use of the MicroProfile LRA specification in {productName}. @@ -875,6 +874,7 @@ You can use the WildFly JAR Maven plug-in to build a {productName} bootable JAR The quickstart `pom.xml` file contains a Maven profile named *bootable-jar* which configures the bootable JAR building: +ifndef::portedToGlow[] [source,xml,subs="attributes+"] ---- @@ -904,6 +904,56 @@ The quickstart `pom.xml` file contains a Maven profile named *bootable-jar* whic ---- +endif::portedToGlow[] +ifdef::portedToGlow[] +[source,xml,subs="attributes+"] +---- + + bootable-jar + + + + org.wildfly.plugins + wildfly-maven-plugin + + + ${version.server} + + true + + ROOT.war + ... + + + + + package + + + + + ... + + + +---- +The plugin uses https://github.com/wildfly/wildfly-glow[WildFly Glow] to discover the feature packs and layers required to run the application, and provisions a server containing those layers. + +[NOTE] +==== +This uses a pre-release of version 5.0.0 of the wildfly-maven-plugin providing the Glow functionality. The version is set in the pom's `pluginManagement` section. +==== + +If you get an error or the server is missing some functionality which cannot be auto-discovered, you can download the https://github.com/wildfly/wildfly-glow/releases/tag[WildFly Glow CLI] and run the following command to see more information about what add-ons are available: + +[source,shell] +---- +wildfly-glow show-add-ons +---- +endif::portedToGlow[] .Procedure @@ -1066,6 +1116,7 @@ The server provisioning functionality is provided by the EAP Maven Plugin, and y endif::[] ifndef::ProductRelease,EAPXPRelease[] +ifndef::portedToGlow[] [source,xml,subs="attributes+"] ---- @@ -1100,7 +1151,59 @@ ifndef::ProductRelease,EAPXPRelease[] ---- -endif::[] +You may note that unlike the `provisioned-server` profile it uses the cloud feature pack which enables a configuration tuned for OpenShift environment. +endif::portedToGlow[] +ifdef::portedToGlow[] +[source,xml,subs="attributes+"] +---- + + openshift + + + + org.wildfly.plugins + wildfly-maven-plugin + + + ${version.server} + cloud + + + ROOT.war + ... + + + + + package + + + + + ... + + + +---- +You may note that unlike the `provisioned-server` profile it uses the cloud context which enables a configuration tuned for OpenShift environment. + +The plugin uses https://github.com/wildfly/wildfly-glow[WildFly Glow] to discover the feature packs and layers required to run the application, and provisions a server containing those layers. + +[NOTE] +==== +This uses a pre-release of version 5.0.0 of the wildfly-maven-plugin providing the Glow functionality. The version is set in the pom's `pluginManagement` section. +==== + +If you get an error or the server is missing some functionality which cannot be auto-discovered, you can download the https://github.com/wildfly/wildfly-glow/releases[WildFly Glow CLI] and run the following command to see more information about what add-ons are available: +[source,shell] +---- +wildfly-glow show-add-ons +---- +endif::portedToGlow[] +endif::ProductRelease,EAPXPRelease[] ifdef::ProductRelease,EAPXPRelease[] [source,xml,subs="attributes+"] @@ -1138,15 +1241,10 @@ ifdef::ProductRelease,EAPXPRelease[] ---- -endif::[] - -ifndef::ProductRelease,EAPXPRelease[] -You may note that unlike the `provisioned-server` profile it uses the cloud feature pack which enables a configuration tuned for OpenShift environment. -endif::[] -ifdef::ProductRelease,EAPXPRelease[] You may note that it uses the cloud feature pack which enables a configuration tuned for OpenShift environment. endif::[] + :leveloffset: 1 // Getting Started with Helm :leveloffset: +1 diff --git a/microprofile-openapi/README.adoc b/microprofile-openapi/README.adoc index dcc7f83b2c..0fbb0daacf 100644 --- a/microprofile-openapi/README.adoc +++ b/microprofile-openapi/README.adoc @@ -201,7 +201,6 @@ endif::[] :author: Paul Ferraro :level: Beginner :technologies: MicroProfile OpenAPI -:portedToGlow: true [abstract] This guide demonstrate how to use the MicroProfile OpenAPI functionality in {productName} to expose an OpenAPI document for a simple REST application. @@ -662,6 +661,7 @@ You can use the WildFly JAR Maven plug-in to build a {productName} bootable JAR The quickstart `pom.xml` file contains a Maven profile named *bootable-jar* which configures the bootable JAR building: +ifndef::portedToGlow[] [source,xml,subs="attributes+"] ---- @@ -691,6 +691,56 @@ The quickstart `pom.xml` file contains a Maven profile named *bootable-jar* whic ---- +endif::portedToGlow[] +ifdef::portedToGlow[] +[source,xml,subs="attributes+"] +---- + + bootable-jar + + + + org.wildfly.plugins + wildfly-maven-plugin + + + ${version.server} + + true + + ROOT.war + ... + + + + + package + + + + + ... + + + +---- +The plugin uses https://github.com/wildfly/wildfly-glow[WildFly Glow] to discover the feature packs and layers required to run the application, and provisions a server containing those layers. + +[NOTE] +==== +This uses a pre-release of version 5.0.0 of the wildfly-maven-plugin providing the Glow functionality. The version is set in the pom's `pluginManagement` section. +==== + +If you get an error or the server is missing some functionality which cannot be auto-discovered, you can download the https://github.com/wildfly/wildfly-glow/releases/tag[WildFly Glow CLI] and run the following command to see more information about what add-ons are available: + +[source,shell] +---- +wildfly-glow show-add-ons +---- +endif::portedToGlow[] .Procedure @@ -853,6 +903,7 @@ The server provisioning functionality is provided by the EAP Maven Plugin, and y endif::[] ifndef::ProductRelease,EAPXPRelease[] +ifndef::portedToGlow[] [source,xml,subs="attributes+"] ---- @@ -887,7 +938,59 @@ ifndef::ProductRelease,EAPXPRelease[] ---- -endif::[] +You may note that unlike the `provisioned-server` profile it uses the cloud feature pack which enables a configuration tuned for OpenShift environment. +endif::portedToGlow[] +ifdef::portedToGlow[] +[source,xml,subs="attributes+"] +---- + + openshift + + + + org.wildfly.plugins + wildfly-maven-plugin + + + ${version.server} + cloud + + + ROOT.war + ... + + + + + package + + + + + ... + + + +---- +You may note that unlike the `provisioned-server` profile it uses the cloud context which enables a configuration tuned for OpenShift environment. + +The plugin uses https://github.com/wildfly/wildfly-glow[WildFly Glow] to discover the feature packs and layers required to run the application, and provisions a server containing those layers. + +[NOTE] +==== +This uses a pre-release of version 5.0.0 of the wildfly-maven-plugin providing the Glow functionality. The version is set in the pom's `pluginManagement` section. +==== + +If you get an error or the server is missing some functionality which cannot be auto-discovered, you can download the https://github.com/wildfly/wildfly-glow/releases[WildFly Glow CLI] and run the following command to see more information about what add-ons are available: +[source,shell] +---- +wildfly-glow show-add-ons +---- +endif::portedToGlow[] +endif::ProductRelease,EAPXPRelease[] ifdef::ProductRelease,EAPXPRelease[] [source,xml,subs="attributes+"] @@ -925,15 +1028,10 @@ ifdef::ProductRelease,EAPXPRelease[] ---- -endif::[] - -ifndef::ProductRelease,EAPXPRelease[] -You may note that unlike the `provisioned-server` profile it uses the cloud feature pack which enables a configuration tuned for OpenShift environment. -endif::[] -ifdef::ProductRelease,EAPXPRelease[] You may note that it uses the cloud feature pack which enables a configuration tuned for OpenShift environment. endif::[] + :leveloffset: 1 // Getting Started with Helm :leveloffset: +1 diff --git a/microprofile-reactive-messaging-kafka/README.adoc b/microprofile-reactive-messaging-kafka/README.adoc index 49d04816e4..08ecc6b125 100644 --- a/microprofile-reactive-messaging-kafka/README.adoc +++ b/microprofile-reactive-messaging-kafka/README.adoc @@ -201,7 +201,6 @@ endif::[] :author: Kabir Khan :level: Beginner :technologies: MicroProfile Reactive Messaging -:portedToGlow: true [abstract] The `microprofile-reactive-messaging-kafka` quickstart demonstrates the use of the MicroProfile Reactive Messaging specification backed by Apache Kafka in {productName}. @@ -1576,6 +1575,7 @@ You can use the WildFly JAR Maven plug-in to build a {productName} bootable JAR The quickstart `pom.xml` file contains a Maven profile named *bootable-jar* which configures the bootable JAR building: +ifndef::portedToGlow[] [source,xml,subs="attributes+"] ---- @@ -1605,6 +1605,56 @@ The quickstart `pom.xml` file contains a Maven profile named *bootable-jar* whic ---- +endif::portedToGlow[] +ifdef::portedToGlow[] +[source,xml,subs="attributes+"] +---- + + bootable-jar + + + + org.wildfly.plugins + wildfly-maven-plugin + + + ${version.server} + + true + + ROOT.war + ... + + + + + package + + + + + ... + + + +---- +The plugin uses https://github.com/wildfly/wildfly-glow[WildFly Glow] to discover the feature packs and layers required to run the application, and provisions a server containing those layers. + +[NOTE] +==== +This uses a pre-release of version 5.0.0 of the wildfly-maven-plugin providing the Glow functionality. The version is set in the pom's `pluginManagement` section. +==== + +If you get an error or the server is missing some functionality which cannot be auto-discovered, you can download the https://github.com/wildfly/wildfly-glow/releases/tag[WildFly Glow CLI] and run the following command to see more information about what add-ons are available: + +[source,shell] +---- +wildfly-glow show-add-ons +---- +endif::portedToGlow[] .Procedure @@ -1767,6 +1817,7 @@ The server provisioning functionality is provided by the EAP Maven Plugin, and y endif::[] ifndef::ProductRelease,EAPXPRelease[] +ifndef::portedToGlow[] [source,xml,subs="attributes+"] ---- @@ -1801,7 +1852,59 @@ ifndef::ProductRelease,EAPXPRelease[] ---- -endif::[] +You may note that unlike the `provisioned-server` profile it uses the cloud feature pack which enables a configuration tuned for OpenShift environment. +endif::portedToGlow[] +ifdef::portedToGlow[] +[source,xml,subs="attributes+"] +---- + + openshift + + + + org.wildfly.plugins + wildfly-maven-plugin + + + ${version.server} + cloud + + + ROOT.war + ... + + + + + package + + + + + ... + + + +---- +You may note that unlike the `provisioned-server` profile it uses the cloud context which enables a configuration tuned for OpenShift environment. + +The plugin uses https://github.com/wildfly/wildfly-glow[WildFly Glow] to discover the feature packs and layers required to run the application, and provisions a server containing those layers. + +[NOTE] +==== +This uses a pre-release of version 5.0.0 of the wildfly-maven-plugin providing the Glow functionality. The version is set in the pom's `pluginManagement` section. +==== + +If you get an error or the server is missing some functionality which cannot be auto-discovered, you can download the https://github.com/wildfly/wildfly-glow/releases[WildFly Glow CLI] and run the following command to see more information about what add-ons are available: +[source,shell] +---- +wildfly-glow show-add-ons +---- +endif::portedToGlow[] +endif::ProductRelease,EAPXPRelease[] ifdef::ProductRelease,EAPXPRelease[] [source,xml,subs="attributes+"] @@ -1839,15 +1942,10 @@ ifdef::ProductRelease,EAPXPRelease[] ---- -endif::[] - -ifndef::ProductRelease,EAPXPRelease[] -You may note that unlike the `provisioned-server` profile it uses the cloud feature pack which enables a configuration tuned for OpenShift environment. -endif::[] -ifdef::ProductRelease,EAPXPRelease[] You may note that it uses the cloud feature pack which enables a configuration tuned for OpenShift environment. endif::[] + :leveloffset: 1 // Getting Started with Helm :leveloffset: +1 diff --git a/microprofile-rest-client/README.adoc b/microprofile-rest-client/README.adoc index dadef6d435..755a02fc8b 100644 --- a/microprofile-rest-client/README.adoc +++ b/microprofile-rest-client/README.adoc @@ -201,7 +201,6 @@ endif::[] :author: Martin Stefanko :level: Beginner :technologies: MicroProfile REST Client -:portedToGlow: true [abstract] The `microprofile-rest-client` quickstart demonstrates the use of the MicroProfile REST Client specification in {productName}. @@ -695,6 +694,7 @@ You can use the WildFly JAR Maven plug-in to build a {productName} bootable JAR The quickstart `pom.xml` file contains a Maven profile named *bootable-jar* which configures the bootable JAR building: +ifndef::portedToGlow[] [source,xml,subs="attributes+"] ---- @@ -724,6 +724,56 @@ The quickstart `pom.xml` file contains a Maven profile named *bootable-jar* whic ---- +endif::portedToGlow[] +ifdef::portedToGlow[] +[source,xml,subs="attributes+"] +---- + + bootable-jar + + + + org.wildfly.plugins + wildfly-maven-plugin + + + ${version.server} + + true + + ROOT.war + ... + + + + + package + + + + + ... + + + +---- +The plugin uses https://github.com/wildfly/wildfly-glow[WildFly Glow] to discover the feature packs and layers required to run the application, and provisions a server containing those layers. + +[NOTE] +==== +This uses a pre-release of version 5.0.0 of the wildfly-maven-plugin providing the Glow functionality. The version is set in the pom's `pluginManagement` section. +==== + +If you get an error or the server is missing some functionality which cannot be auto-discovered, you can download the https://github.com/wildfly/wildfly-glow/releases/tag[WildFly Glow CLI] and run the following command to see more information about what add-ons are available: + +[source,shell] +---- +wildfly-glow show-add-ons +---- +endif::portedToGlow[] .Procedure @@ -885,6 +935,7 @@ The server provisioning functionality is provided by the EAP Maven Plugin, and y endif::[] ifndef::ProductRelease,EAPXPRelease[] +ifndef::portedToGlow[] [source,xml,subs="attributes+"] ---- @@ -919,7 +970,59 @@ ifndef::ProductRelease,EAPXPRelease[] ---- -endif::[] +You may note that unlike the `provisioned-server` profile it uses the cloud feature pack which enables a configuration tuned for OpenShift environment. +endif::portedToGlow[] +ifdef::portedToGlow[] +[source,xml,subs="attributes+"] +---- + + openshift + + + + org.wildfly.plugins + wildfly-maven-plugin + + + ${version.server} + cloud + + + ROOT.war + ... + + + + + package + + + + + ... + + + +---- +You may note that unlike the `provisioned-server` profile it uses the cloud context which enables a configuration tuned for OpenShift environment. + +The plugin uses https://github.com/wildfly/wildfly-glow[WildFly Glow] to discover the feature packs and layers required to run the application, and provisions a server containing those layers. + +[NOTE] +==== +This uses a pre-release of version 5.0.0 of the wildfly-maven-plugin providing the Glow functionality. The version is set in the pom's `pluginManagement` section. +==== + +If you get an error or the server is missing some functionality which cannot be auto-discovered, you can download the https://github.com/wildfly/wildfly-glow/releases[WildFly Glow CLI] and run the following command to see more information about what add-ons are available: +[source,shell] +---- +wildfly-glow show-add-ons +---- +endif::portedToGlow[] +endif::ProductRelease,EAPXPRelease[] ifdef::ProductRelease,EAPXPRelease[] [source,xml,subs="attributes+"] @@ -957,15 +1060,10 @@ ifdef::ProductRelease,EAPXPRelease[] ---- -endif::[] - -ifndef::ProductRelease,EAPXPRelease[] -You may note that unlike the `provisioned-server` profile it uses the cloud feature pack which enables a configuration tuned for OpenShift environment. -endif::[] -ifdef::ProductRelease,EAPXPRelease[] You may note that it uses the cloud feature pack which enables a configuration tuned for OpenShift environment. endif::[] + :leveloffset: 1 // Getting Started with Helm :leveloffset: +1 diff --git a/numberguess/README.adoc b/numberguess/README.adoc index fb1f3721f2..aaed33dadd 100644 --- a/numberguess/README.adoc +++ b/numberguess/README.adoc @@ -202,7 +202,6 @@ endif::[] :level: Beginner :technologies: CDI, JSF :openshift: true -:portedToGlow: true [abstract] The `numberguess` quickstart demonstrates the use of CDI (Contexts and Dependency Injection) and JSF (JavaServer Faces) in {productName}. @@ -615,7 +614,7 @@ For Windows, use the `__{jbossHomeName}__\bin\add-user.bat` script. endif::[] The server provisioning functionality is provided by the WildFly Maven Plugin, and you may find its configuration in the quickstart `pom.xml`: - +ifndef::portedToGlow[] [source,xml,subs="attributes+"] ---- @@ -648,6 +647,55 @@ The server provisioning functionality is provided by the WildFly Maven Plugin, a ---- +endif::portedToGlow[] +ifdef::portedToGlow[] +[source,xml,subs="attributes+"] +---- + + provisioned-server + + + + org.wildfly.plugins + wildfly-maven-plugin + + + ${version.server} + + + ROOT.war + ... + + + + + package + + + + + ... + + + +---- +The plugin uses https://github.com/wildfly/wildfly-glow[WildFly Glow] to discover the feature packs and layers required to run the application, and provisions a server containing those layers. + +[NOTE] +==== +This uses a pre-release of version 5.0.0 of the wildfly-maven-plugin providing the Glow functionality. The version is set in the pom's `pluginManagement` section. +==== + +If you get an error or the server is missing some functionality which cannot be auto-discovered, you can download the https://github.com/wildfly/wildfly-glow/releases/tag[WildFly Glow CLI] and run the following command to see more information about what add-ons are available: + +[source,shell] +---- +wildfly-glow show-add-ons +---- +endif::portedToGlow[] [NOTE] ==== @@ -846,6 +894,7 @@ The server provisioning functionality is provided by the EAP Maven Plugin, and y endif::[] ifndef::ProductRelease,EAPXPRelease[] +ifndef::portedToGlow[] [source,xml,subs="attributes+"] ---- @@ -880,7 +929,59 @@ ifndef::ProductRelease,EAPXPRelease[] ---- -endif::[] +You may note that unlike the `provisioned-server` profile it uses the cloud feature pack which enables a configuration tuned for OpenShift environment. +endif::portedToGlow[] +ifdef::portedToGlow[] +[source,xml,subs="attributes+"] +---- + + openshift + + + + org.wildfly.plugins + wildfly-maven-plugin + + + ${version.server} + cloud + + + ROOT.war + ... + + + + + package + + + + + ... + + + +---- +You may note that unlike the `provisioned-server` profile it uses the cloud context which enables a configuration tuned for OpenShift environment. + +The plugin uses https://github.com/wildfly/wildfly-glow[WildFly Glow] to discover the feature packs and layers required to run the application, and provisions a server containing those layers. + +[NOTE] +==== +This uses a pre-release of version 5.0.0 of the wildfly-maven-plugin providing the Glow functionality. The version is set in the pom's `pluginManagement` section. +==== + +If you get an error or the server is missing some functionality which cannot be auto-discovered, you can download the https://github.com/wildfly/wildfly-glow/releases[WildFly Glow CLI] and run the following command to see more information about what add-ons are available: +[source,shell] +---- +wildfly-glow show-add-ons +---- +endif::portedToGlow[] +endif::ProductRelease,EAPXPRelease[] ifdef::ProductRelease,EAPXPRelease[] [source,xml,subs="attributes+"] @@ -918,15 +1019,10 @@ ifdef::ProductRelease,EAPXPRelease[] ---- -endif::[] - -ifndef::ProductRelease,EAPXPRelease[] -You may note that unlike the `provisioned-server` profile it uses the cloud feature pack which enables a configuration tuned for OpenShift environment. -endif::[] -ifdef::ProductRelease,EAPXPRelease[] You may note that it uses the cloud feature pack which enables a configuration tuned for OpenShift environment. endif::[] + :leveloffset: 1 // Getting Started with Helm :leveloffset: +1 diff --git a/opentelemetry-tracing/README.adoc b/opentelemetry-tracing/README.adoc index 1b7c783a99..2f05cd1f23 100644 --- a/opentelemetry-tracing/README.adoc +++ b/opentelemetry-tracing/README.adoc @@ -1,6 +1,3 @@ -<<<<<<< HEAD -include::../shared-doc/attributes.adoc[] -======= ifdef::env-github[] :artifactId: opentelemetry-tracing endif::[] @@ -199,7 +196,6 @@ endif::[] :JBDSInstallBookName: Installation Guide :LinkJBDSGettingStarted: https://access.redhat.com/documentation/en-us/red_hat_codeready_studio/{JBDSVersion}/html-single/getting_started_with_codeready_studio_tools/ :JBDSGettingStartedBookName: Getting Started with CodeReady Studio Tools ->>>>>>> b4ca9a43b66d96aff01d3da9f9714b65b9bb38b0 = opentelemetry-tracing: OpenTelemetry Tracing QuickStart :author: Jason Lee @@ -230,9 +226,6 @@ to an OpenTelemetry Collector instance listening on the same host. In this quickstart, we have a collection of CDI beans and REST endpoints that expose functionalities of the OpenTelemetry support in {productName}. // Use of {jbossHomeName} -<<<<<<< HEAD -include::../shared-doc/use-of-jboss-home-name.adoc[leveloffset=+1] -======= :leveloffset: +1 ifdef::requires-multiple-servers[] @@ -267,7 +260,6 @@ When you see the replaceable variable __QUICKSTART_HOME__, replace it with the p endif::[] :leveloffset!: ->>>>>>> b4ca9a43b66d96aff01d3da9f9714b65b9bb38b0 == Prerequisites @@ -278,9 +270,6 @@ To complete this guide, you will need: * Apache Maven 3.5.3+ * Docker Compose, or alternatively Podman Compose -<<<<<<< HEAD -include::../shared-doc/use-of-jboss-home-name.adoc[leveloffset=+1] -======= :leveloffset: +1 ifdef::requires-multiple-servers[] @@ -315,14 +304,10 @@ When you see the replaceable variable __QUICKSTART_HOME__, replace it with the p endif::[] :leveloffset!: ->>>>>>> b4ca9a43b66d96aff01d3da9f9714b65b9bb38b0 == Steps // Start the {productName} Standalone Server -<<<<<<< HEAD -include::../shared-doc/start-the-standalone-server.adoc[leveloffset=+1] -======= :leveloffset: +1 [[start_the_eap_standalone_server]] @@ -438,7 +423,6 @@ $ __{jbossHomeName}__/bin/standalone.sh {serverArguments} -b 0.0.0.0 endif::[] :leveloffset!: ->>>>>>> b4ca9a43b66d96aff01d3da9f9714b65b9bb38b0 [[configure_the_server]] === Configure the Server @@ -487,9 +471,6 @@ The Docker Compose configuration file is `docker-compose.yaml`: [source,yaml] ---- -<<<<<<< HEAD -include::docker-compose.yaml[] -======= version: "3" volumes: shared-volume: @@ -506,16 +487,12 @@ services: - 4317:4317 # OTLP gRPC receiver - 4318:4318 # OTLP http receiver - 55679:55679 # zpages extension ->>>>>>> b4ca9a43b66d96aff01d3da9f9714b65b9bb38b0 ---- The Collector server configuration file is `otel-collector-config.yaml`: [source,yaml] ---- -<<<<<<< HEAD -include::otel-collector-config.yaml[] -======= extensions: health_check: pprof: @@ -545,7 +522,6 @@ service: extensions: [health_check, pprof, zpages] ->>>>>>> b4ca9a43b66d96aff01d3da9f9714b65b9bb38b0 ---- We can now bring up the collector instance: @@ -596,12 +572,6 @@ The OpenTelemetry API also supports explicit tracing should your application req [source,java] ----- -<<<<<<< HEAD -include::src/main/java/org/wildfly/quickstarts/opentelemetry/ExplicitlyTracedBean.java[] ------ - -include::../shared-doc/build-and-deploy-the-quickstart.adoc[leveloffset=+1] -======= package org.wildfly.quickstarts.opentelemetry; import jakarta.enterprise.context.RequestScoped; @@ -743,7 +713,6 @@ endif::[] :leveloffset!: ->>>>>>> b4ca9a43b66d96aff01d3da9f9714b65b9bb38b0 == Access the quickstart application @@ -804,23 +773,6 @@ otel-collector_1 | {"kind": "exporter", "data_type": "traces", "name": "log ----- // Server Distribution Testing -<<<<<<< HEAD -include::../shared-doc/run-integration-tests-with-server-distribution.adoc[leveloffset=+2] -// Undeploy the Quickstart -include::../shared-doc/undeploy-the-quickstart.adoc[leveloffset=+2] -// Restore the {productName} Standalone Server Configuration -include::../shared-doc/restore-standalone-server-configuration.adoc[leveloffset=+2] -// Restore the {productName} Standalone Server Configuration Manually -include::../shared-doc/restore-standalone-server-configuration-manual.adoc[leveloffset=+3] -// Build and run sections for other environments/builds -ifndef::ProductRelease,EAPXPRelease[] -include::../shared-doc/build-and-run-the-quickstart-with-provisioned-server.adoc[leveloffset=+1] -endif::[] -// Bootable JAR -include::../shared-doc/build-and-run-the-quickstart-with-bootable-jar.adoc[leveloffset=+1] -// OpenShift -include::../shared-doc/build-and-run-the-quickstart-with-openshift.adoc[leveloffset=+1] -======= :leveloffset: +2 [[run_the_integration_tests_with_server_distribution]] @@ -1039,7 +991,7 @@ For Windows, use the `__{jbossHomeName}__\bin\add-user.bat` script. endif::[] The server provisioning functionality is provided by the WildFly Maven Plugin, and you may find its configuration in the quickstart `pom.xml`: - +ifndef::portedToGlow[] [source,xml,subs="attributes+"] ---- @@ -1072,6 +1024,55 @@ The server provisioning functionality is provided by the WildFly Maven Plugin, a ---- +endif::portedToGlow[] +ifdef::portedToGlow[] +[source,xml,subs="attributes+"] +---- + + provisioned-server + + + + org.wildfly.plugins + wildfly-maven-plugin + + + ${version.server} + + + ROOT.war + ... + + + + + package + + + + + ... + + + +---- +The plugin uses https://github.com/wildfly/wildfly-glow[WildFly Glow] to discover the feature packs and layers required to run the application, and provisions a server containing those layers. + +[NOTE] +==== +This uses a pre-release of version 5.0.0 of the wildfly-maven-plugin providing the Glow functionality. The version is set in the pom's `pluginManagement` section. +==== + +If you get an error or the server is missing some functionality which cannot be auto-discovered, you can download the https://github.com/wildfly/wildfly-glow/releases/tag[WildFly Glow CLI] and run the following command to see more information about what add-ons are available: + +[source,shell] +---- +wildfly-glow show-add-ons +---- +endif::portedToGlow[] [NOTE] ==== @@ -1254,6 +1255,7 @@ You can use the WildFly JAR Maven plug-in to build a {productName} bootable JAR The quickstart `pom.xml` file contains a Maven profile named *bootable-jar* which configures the bootable JAR building: +ifndef::portedToGlow[] [source,xml,subs="attributes+"] ---- @@ -1283,6 +1285,56 @@ The quickstart `pom.xml` file contains a Maven profile named *bootable-jar* whic ---- +endif::portedToGlow[] +ifdef::portedToGlow[] +[source,xml,subs="attributes+"] +---- + + bootable-jar + + + + org.wildfly.plugins + wildfly-maven-plugin + + + ${version.server} + + true + + ROOT.war + ... + + + + + package + + + + + ... + + + +---- +The plugin uses https://github.com/wildfly/wildfly-glow[WildFly Glow] to discover the feature packs and layers required to run the application, and provisions a server containing those layers. + +[NOTE] +==== +This uses a pre-release of version 5.0.0 of the wildfly-maven-plugin providing the Glow functionality. The version is set in the pom's `pluginManagement` section. +==== + +If you get an error or the server is missing some functionality which cannot be auto-discovered, you can download the https://github.com/wildfly/wildfly-glow/releases/tag[WildFly Glow CLI] and run the following command to see more information about what add-ons are available: + +[source,shell] +---- +wildfly-glow show-add-ons +---- +endif::portedToGlow[] .Procedure @@ -1444,6 +1496,7 @@ The server provisioning functionality is provided by the EAP Maven Plugin, and y endif::[] ifndef::ProductRelease,EAPXPRelease[] +ifndef::portedToGlow[] [source,xml,subs="attributes+"] ---- @@ -1478,7 +1531,59 @@ ifndef::ProductRelease,EAPXPRelease[] ---- -endif::[] +You may note that unlike the `provisioned-server` profile it uses the cloud feature pack which enables a configuration tuned for OpenShift environment. +endif::portedToGlow[] +ifdef::portedToGlow[] +[source,xml,subs="attributes+"] +---- + + openshift + + + + org.wildfly.plugins + wildfly-maven-plugin + + + ${version.server} + cloud + + + ROOT.war + ... + + + + + package + + + + + ... + + + +---- +You may note that unlike the `provisioned-server` profile it uses the cloud context which enables a configuration tuned for OpenShift environment. + +The plugin uses https://github.com/wildfly/wildfly-glow[WildFly Glow] to discover the feature packs and layers required to run the application, and provisions a server containing those layers. + +[NOTE] +==== +This uses a pre-release of version 5.0.0 of the wildfly-maven-plugin providing the Glow functionality. The version is set in the pom's `pluginManagement` section. +==== + +If you get an error or the server is missing some functionality which cannot be auto-discovered, you can download the https://github.com/wildfly/wildfly-glow/releases[WildFly Glow CLI] and run the following command to see more information about what add-ons are available: +[source,shell] +---- +wildfly-glow show-add-ons +---- +endif::portedToGlow[] +endif::ProductRelease,EAPXPRelease[] ifdef::ProductRelease,EAPXPRelease[] [source,xml,subs="attributes+"] @@ -1516,15 +1621,10 @@ ifdef::ProductRelease,EAPXPRelease[] ---- -endif::[] - -ifndef::ProductRelease,EAPXPRelease[] -You may note that unlike the `provisioned-server` profile it uses the cloud feature pack which enables a configuration tuned for OpenShift environment. -endif::[] -ifdef::ProductRelease,EAPXPRelease[] You may note that it uses the cloud feature pack which enables a configuration tuned for OpenShift environment. endif::[] + :leveloffset: 1 // Getting Started with Helm :leveloffset: +1 @@ -1630,7 +1730,11 @@ ifndef::useHelmChartDir[] ---- build: uri: https://github.com/wildfly/quickstart.git +<<<<<<< HEAD + ref: main +======= ref: 31.x +>>>>>>> b4ca9a43b66d96aff01d3da9f9714b65b9bb38b0 contextDir: opentelemetry-tracing deploy: replicas: 1 @@ -1730,7 +1834,6 @@ The tests are using SSL to connect to the quickstart running on OpenShift. So yo :leveloffset: 1 :leveloffset!: ->>>>>>> b4ca9a43b66d96aff01d3da9f9714b65b9bb38b0 == Conclusion diff --git a/remote-helloworld-mdb/README.adoc b/remote-helloworld-mdb/README.adoc index c7260b98b0..b31a56e452 100644 --- a/remote-helloworld-mdb/README.adoc +++ b/remote-helloworld-mdb/README.adoc @@ -202,7 +202,6 @@ endif::[] :level: Intermediate :technologies: JMS, EJB, MDB :openshift: true -:portedToGlow: true :standalone-server-type: full :archiveType: war @@ -797,7 +796,7 @@ For Windows, use the `__{jbossHomeName}__\bin\add-user.bat` script. endif::[] The server provisioning functionality is provided by the WildFly Maven Plugin, and you may find its configuration in the quickstart `pom.xml`: - +ifndef::portedToGlow[] [source,xml,subs="attributes+"] ---- @@ -830,6 +829,55 @@ The server provisioning functionality is provided by the WildFly Maven Plugin, a ---- +endif::portedToGlow[] +ifdef::portedToGlow[] +[source,xml,subs="attributes+"] +---- + + provisioned-server + + + + org.wildfly.plugins + wildfly-maven-plugin + + + ${version.server} + + + ROOT.war + ... + + + + + package + + + + + ... + + + +---- +The plugin uses https://github.com/wildfly/wildfly-glow[WildFly Glow] to discover the feature packs and layers required to run the application, and provisions a server containing those layers. + +[NOTE] +==== +This uses a pre-release of version 5.0.0 of the wildfly-maven-plugin providing the Glow functionality. The version is set in the pom's `pluginManagement` section. +==== + +If you get an error or the server is missing some functionality which cannot be auto-discovered, you can download the https://github.com/wildfly/wildfly-glow/releases/tag[WildFly Glow CLI] and run the following command to see more information about what add-ons are available: + +[source,shell] +---- +wildfly-glow show-add-ons +---- +endif::portedToGlow[] [NOTE] ==== @@ -1030,6 +1078,7 @@ The server provisioning functionality is provided by the EAP Maven Plugin, and y endif::[] ifndef::ProductRelease,EAPXPRelease[] +ifndef::portedToGlow[] [source,xml,subs="attributes+"] ---- @@ -1064,7 +1113,59 @@ ifndef::ProductRelease,EAPXPRelease[] ---- -endif::[] +You may note that unlike the `provisioned-server` profile it uses the cloud feature pack which enables a configuration tuned for OpenShift environment. +endif::portedToGlow[] +ifdef::portedToGlow[] +[source,xml,subs="attributes+"] +---- + + openshift + + + + org.wildfly.plugins + wildfly-maven-plugin + + + ${version.server} + cloud + + + ROOT.war + ... + + + + + package + + + + + ... + + + +---- +You may note that unlike the `provisioned-server` profile it uses the cloud context which enables a configuration tuned for OpenShift environment. + +The plugin uses https://github.com/wildfly/wildfly-glow[WildFly Glow] to discover the feature packs and layers required to run the application, and provisions a server containing those layers. + +[NOTE] +==== +This uses a pre-release of version 5.0.0 of the wildfly-maven-plugin providing the Glow functionality. The version is set in the pom's `pluginManagement` section. +==== + +If you get an error or the server is missing some functionality which cannot be auto-discovered, you can download the https://github.com/wildfly/wildfly-glow/releases[WildFly Glow CLI] and run the following command to see more information about what add-ons are available: +[source,shell] +---- +wildfly-glow show-add-ons +---- +endif::portedToGlow[] +endif::ProductRelease,EAPXPRelease[] ifdef::ProductRelease,EAPXPRelease[] [source,xml,subs="attributes+"] @@ -1102,15 +1203,10 @@ ifdef::ProductRelease,EAPXPRelease[] ---- -endif::[] - -ifndef::ProductRelease,EAPXPRelease[] -You may note that unlike the `provisioned-server` profile it uses the cloud feature pack which enables a configuration tuned for OpenShift environment. -endif::[] -ifdef::ProductRelease,EAPXPRelease[] You may note that it uses the cloud feature pack which enables a configuration tuned for OpenShift environment. endif::[] + :leveloffset: 1 // Getting Started with Helm :leveloffset: +1 @@ -1358,6 +1454,7 @@ The server provisioning functionality is provided by the EAP Maven Plugin, and y endif::[] ifndef::ProductRelease,EAPXPRelease[] +ifndef::portedToGlow[] [source,xml,subs="attributes+"] ---- @@ -1392,7 +1489,59 @@ ifndef::ProductRelease,EAPXPRelease[] ---- -endif::[] +You may note that unlike the `provisioned-server` profile it uses the cloud feature pack which enables a configuration tuned for OpenShift environment. +endif::portedToGlow[] +ifdef::portedToGlow[] +[source,xml,subs="attributes+"] +---- + + openshift + + + + org.wildfly.plugins + wildfly-maven-plugin + + + ${version.server} + cloud + + + ROOT.war + ... + + + + + package + + + + + ... + + + +---- +You may note that unlike the `provisioned-server` profile it uses the cloud context which enables a configuration tuned for OpenShift environment. + +The plugin uses https://github.com/wildfly/wildfly-glow[WildFly Glow] to discover the feature packs and layers required to run the application, and provisions a server containing those layers. + +[NOTE] +==== +This uses a pre-release of version 5.0.0 of the wildfly-maven-plugin providing the Glow functionality. The version is set in the pom's `pluginManagement` section. +==== + +If you get an error or the server is missing some functionality which cannot be auto-discovered, you can download the https://github.com/wildfly/wildfly-glow/releases[WildFly Glow CLI] and run the following command to see more information about what add-ons are available: +[source,shell] +---- +wildfly-glow show-add-ons +---- +endif::portedToGlow[] +endif::ProductRelease,EAPXPRelease[] ifdef::ProductRelease,EAPXPRelease[] [source,xml,subs="attributes+"] @@ -1430,15 +1579,10 @@ ifdef::ProductRelease,EAPXPRelease[] ---- -endif::[] - -ifndef::ProductRelease,EAPXPRelease[] -You may note that unlike the `provisioned-server` profile it uses the cloud feature pack which enables a configuration tuned for OpenShift environment. -endif::[] -ifdef::ProductRelease,EAPXPRelease[] You may note that it uses the cloud feature pack which enables a configuration tuned for OpenShift environment. endif::[] + :leveloffset: 1 // Getting Started with Helm :leveloffset: +1 diff --git a/servlet-async/README.adoc b/servlet-async/README.adoc index 1317571a93..5abe1f93c7 100644 --- a/servlet-async/README.adoc +++ b/servlet-async/README.adoc @@ -202,7 +202,6 @@ endif::[] :level: Intermediate :technologies: Asynchronous Servlet, CDI, EJB :openshift: true -:portedToGlow: true [abstract] The `servlet-async` quickstart demonstrates how to use asynchronous servlets to detach long-running tasks and free up the request processing thread. @@ -619,7 +618,7 @@ For Windows, use the `__{jbossHomeName}__\bin\add-user.bat` script. endif::[] The server provisioning functionality is provided by the WildFly Maven Plugin, and you may find its configuration in the quickstart `pom.xml`: - +ifndef::portedToGlow[] [source,xml,subs="attributes+"] ---- @@ -652,6 +651,55 @@ The server provisioning functionality is provided by the WildFly Maven Plugin, a ---- +endif::portedToGlow[] +ifdef::portedToGlow[] +[source,xml,subs="attributes+"] +---- + + provisioned-server + + + + org.wildfly.plugins + wildfly-maven-plugin + + + ${version.server} + + + ROOT.war + ... + + + + + package + + + + + ... + + + +---- +The plugin uses https://github.com/wildfly/wildfly-glow[WildFly Glow] to discover the feature packs and layers required to run the application, and provisions a server containing those layers. + +[NOTE] +==== +This uses a pre-release of version 5.0.0 of the wildfly-maven-plugin providing the Glow functionality. The version is set in the pom's `pluginManagement` section. +==== + +If you get an error or the server is missing some functionality which cannot be auto-discovered, you can download the https://github.com/wildfly/wildfly-glow/releases/tag[WildFly Glow CLI] and run the following command to see more information about what add-ons are available: + +[source,shell] +---- +wildfly-glow show-add-ons +---- +endif::portedToGlow[] [NOTE] ==== @@ -850,6 +898,7 @@ The server provisioning functionality is provided by the EAP Maven Plugin, and y endif::[] ifndef::ProductRelease,EAPXPRelease[] +ifndef::portedToGlow[] [source,xml,subs="attributes+"] ---- @@ -884,7 +933,59 @@ ifndef::ProductRelease,EAPXPRelease[] ---- -endif::[] +You may note that unlike the `provisioned-server` profile it uses the cloud feature pack which enables a configuration tuned for OpenShift environment. +endif::portedToGlow[] +ifdef::portedToGlow[] +[source,xml,subs="attributes+"] +---- + + openshift + + + + org.wildfly.plugins + wildfly-maven-plugin + + + ${version.server} + cloud + + + ROOT.war + ... + + + + + package + + + + + ... + + + +---- +You may note that unlike the `provisioned-server` profile it uses the cloud context which enables a configuration tuned for OpenShift environment. + +The plugin uses https://github.com/wildfly/wildfly-glow[WildFly Glow] to discover the feature packs and layers required to run the application, and provisions a server containing those layers. + +[NOTE] +==== +This uses a pre-release of version 5.0.0 of the wildfly-maven-plugin providing the Glow functionality. The version is set in the pom's `pluginManagement` section. +==== + +If you get an error or the server is missing some functionality which cannot be auto-discovered, you can download the https://github.com/wildfly/wildfly-glow/releases[WildFly Glow CLI] and run the following command to see more information about what add-ons are available: +[source,shell] +---- +wildfly-glow show-add-ons +---- +endif::portedToGlow[] +endif::ProductRelease,EAPXPRelease[] ifdef::ProductRelease,EAPXPRelease[] [source,xml,subs="attributes+"] @@ -922,15 +1023,10 @@ ifdef::ProductRelease,EAPXPRelease[] ---- -endif::[] - -ifndef::ProductRelease,EAPXPRelease[] -You may note that unlike the `provisioned-server` profile it uses the cloud feature pack which enables a configuration tuned for OpenShift environment. -endif::[] -ifdef::ProductRelease,EAPXPRelease[] You may note that it uses the cloud feature pack which enables a configuration tuned for OpenShift environment. endif::[] + :leveloffset: 1 // Getting Started with Helm :leveloffset: +1 diff --git a/servlet-filterlistener/README.adoc b/servlet-filterlistener/README.adoc index 0e2baedd62..c0b2e41976 100644 --- a/servlet-filterlistener/README.adoc +++ b/servlet-filterlistener/README.adoc @@ -202,7 +202,6 @@ endif::[] :level: Intermediate :technologies: Servlet Filter, Servlet Listener :openshift: true -:portedToGlow: true [abstract] The `servlet-filterlistener` quickstart demonstrates how to use Servlet filters and listeners in an application. @@ -666,7 +665,7 @@ For Windows, use the `__{jbossHomeName}__\bin\add-user.bat` script. endif::[] The server provisioning functionality is provided by the WildFly Maven Plugin, and you may find its configuration in the quickstart `pom.xml`: - +ifndef::portedToGlow[] [source,xml,subs="attributes+"] ---- @@ -699,6 +698,55 @@ The server provisioning functionality is provided by the WildFly Maven Plugin, a ---- +endif::portedToGlow[] +ifdef::portedToGlow[] +[source,xml,subs="attributes+"] +---- + + provisioned-server + + + + org.wildfly.plugins + wildfly-maven-plugin + + + ${version.server} + + + ROOT.war + ... + + + + + package + + + + + ... + + + +---- +The plugin uses https://github.com/wildfly/wildfly-glow[WildFly Glow] to discover the feature packs and layers required to run the application, and provisions a server containing those layers. + +[NOTE] +==== +This uses a pre-release of version 5.0.0 of the wildfly-maven-plugin providing the Glow functionality. The version is set in the pom's `pluginManagement` section. +==== + +If you get an error or the server is missing some functionality which cannot be auto-discovered, you can download the https://github.com/wildfly/wildfly-glow/releases/tag[WildFly Glow CLI] and run the following command to see more information about what add-ons are available: + +[source,shell] +---- +wildfly-glow show-add-ons +---- +endif::portedToGlow[] [NOTE] ==== @@ -897,6 +945,7 @@ The server provisioning functionality is provided by the EAP Maven Plugin, and y endif::[] ifndef::ProductRelease,EAPXPRelease[] +ifndef::portedToGlow[] [source,xml,subs="attributes+"] ---- @@ -931,7 +980,59 @@ ifndef::ProductRelease,EAPXPRelease[] ---- -endif::[] +You may note that unlike the `provisioned-server` profile it uses the cloud feature pack which enables a configuration tuned for OpenShift environment. +endif::portedToGlow[] +ifdef::portedToGlow[] +[source,xml,subs="attributes+"] +---- + + openshift + + + + org.wildfly.plugins + wildfly-maven-plugin + + + ${version.server} + cloud + + + ROOT.war + ... + + + + + package + + + + + ... + + + +---- +You may note that unlike the `provisioned-server` profile it uses the cloud context which enables a configuration tuned for OpenShift environment. + +The plugin uses https://github.com/wildfly/wildfly-glow[WildFly Glow] to discover the feature packs and layers required to run the application, and provisions a server containing those layers. + +[NOTE] +==== +This uses a pre-release of version 5.0.0 of the wildfly-maven-plugin providing the Glow functionality. The version is set in the pom's `pluginManagement` section. +==== + +If you get an error or the server is missing some functionality which cannot be auto-discovered, you can download the https://github.com/wildfly/wildfly-glow/releases[WildFly Glow CLI] and run the following command to see more information about what add-ons are available: +[source,shell] +---- +wildfly-glow show-add-ons +---- +endif::portedToGlow[] +endif::ProductRelease,EAPXPRelease[] ifdef::ProductRelease,EAPXPRelease[] [source,xml,subs="attributes+"] @@ -969,15 +1070,10 @@ ifdef::ProductRelease,EAPXPRelease[] ---- -endif::[] - -ifndef::ProductRelease,EAPXPRelease[] -You may note that unlike the `provisioned-server` profile it uses the cloud feature pack which enables a configuration tuned for OpenShift environment. -endif::[] -ifdef::ProductRelease,EAPXPRelease[] You may note that it uses the cloud feature pack which enables a configuration tuned for OpenShift environment. endif::[] + :leveloffset: 1 // Getting Started with Helm :leveloffset: +1 diff --git a/servlet-security/README.adoc b/servlet-security/README.adoc index ed630f1167..d3d2c057ed 100644 --- a/servlet-security/README.adoc +++ b/servlet-security/README.adoc @@ -202,7 +202,6 @@ endif::[] :level: Intermediate :technologies: Servlet, Security :openshift: true -:portedToGlow: true [abstract] The `servlet-security` quickstart demonstrates the use of Jakarta EE declarative security to control access to Servlets and Security in {productName}. @@ -1010,7 +1009,7 @@ For Windows, use the `__{jbossHomeName}__\bin\add-user.bat` script. endif::[] The server provisioning functionality is provided by the WildFly Maven Plugin, and you may find its configuration in the quickstart `pom.xml`: - +ifndef::portedToGlow[] [source,xml,subs="attributes+"] ---- @@ -1043,6 +1042,55 @@ The server provisioning functionality is provided by the WildFly Maven Plugin, a ---- +endif::portedToGlow[] +ifdef::portedToGlow[] +[source,xml,subs="attributes+"] +---- + + provisioned-server + + + + org.wildfly.plugins + wildfly-maven-plugin + + + ${version.server} + + + ROOT.war + ... + + + + + package + + + + + ... + + + +---- +The plugin uses https://github.com/wildfly/wildfly-glow[WildFly Glow] to discover the feature packs and layers required to run the application, and provisions a server containing those layers. + +[NOTE] +==== +This uses a pre-release of version 5.0.0 of the wildfly-maven-plugin providing the Glow functionality. The version is set in the pom's `pluginManagement` section. +==== + +If you get an error or the server is missing some functionality which cannot be auto-discovered, you can download the https://github.com/wildfly/wildfly-glow/releases/tag[WildFly Glow CLI] and run the following command to see more information about what add-ons are available: + +[source,shell] +---- +wildfly-glow show-add-ons +---- +endif::portedToGlow[] [NOTE] ==== @@ -1241,6 +1289,7 @@ The server provisioning functionality is provided by the EAP Maven Plugin, and y endif::[] ifndef::ProductRelease,EAPXPRelease[] +ifndef::portedToGlow[] [source,xml,subs="attributes+"] ---- @@ -1275,7 +1324,59 @@ ifndef::ProductRelease,EAPXPRelease[] ---- -endif::[] +You may note that unlike the `provisioned-server` profile it uses the cloud feature pack which enables a configuration tuned for OpenShift environment. +endif::portedToGlow[] +ifdef::portedToGlow[] +[source,xml,subs="attributes+"] +---- + + openshift + + + + org.wildfly.plugins + wildfly-maven-plugin + + + ${version.server} + cloud + + + ROOT.war + ... + + + + + package + + + + + ... + + + +---- +You may note that unlike the `provisioned-server` profile it uses the cloud context which enables a configuration tuned for OpenShift environment. + +The plugin uses https://github.com/wildfly/wildfly-glow[WildFly Glow] to discover the feature packs and layers required to run the application, and provisions a server containing those layers. + +[NOTE] +==== +This uses a pre-release of version 5.0.0 of the wildfly-maven-plugin providing the Glow functionality. The version is set in the pom's `pluginManagement` section. +==== + +If you get an error or the server is missing some functionality which cannot be auto-discovered, you can download the https://github.com/wildfly/wildfly-glow/releases[WildFly Glow CLI] and run the following command to see more information about what add-ons are available: +[source,shell] +---- +wildfly-glow show-add-ons +---- +endif::portedToGlow[] +endif::ProductRelease,EAPXPRelease[] ifdef::ProductRelease,EAPXPRelease[] [source,xml,subs="attributes+"] @@ -1313,15 +1414,10 @@ ifdef::ProductRelease,EAPXPRelease[] ---- -endif::[] - -ifndef::ProductRelease,EAPXPRelease[] -You may note that unlike the `provisioned-server` profile it uses the cloud feature pack which enables a configuration tuned for OpenShift environment. -endif::[] -ifdef::ProductRelease,EAPXPRelease[] You may note that it uses the cloud feature pack which enables a configuration tuned for OpenShift environment. endif::[] + :leveloffset: 1 // Getting Started with Helm :leveloffset: +1 diff --git a/spring-resteasy/README.adoc b/spring-resteasy/README.adoc index 81844871d9..f1351acb59 100644 --- a/spring-resteasy/README.adoc +++ b/spring-resteasy/README.adoc @@ -203,7 +203,6 @@ endif::[] :technologies: Resteasy, Spring :openshift: true :buildRequirements: Java 17 (Java SDK 17) or later and Maven 3.3.1 or later -:portedToGlow: true [abstract] The `spring-resteasy` quickstart demonstrates how to package and deploy a web application that includes resteasy-spring integration. @@ -645,7 +644,7 @@ For Windows, use the `__{jbossHomeName}__\bin\add-user.bat` script. endif::[] The server provisioning functionality is provided by the WildFly Maven Plugin, and you may find its configuration in the quickstart `pom.xml`: - +ifndef::portedToGlow[] [source,xml,subs="attributes+"] ---- @@ -678,6 +677,55 @@ The server provisioning functionality is provided by the WildFly Maven Plugin, a ---- +endif::portedToGlow[] +ifdef::portedToGlow[] +[source,xml,subs="attributes+"] +---- + + provisioned-server + + + + org.wildfly.plugins + wildfly-maven-plugin + + + ${version.server} + + + ROOT.war + ... + + + + + package + + + + + ... + + + +---- +The plugin uses https://github.com/wildfly/wildfly-glow[WildFly Glow] to discover the feature packs and layers required to run the application, and provisions a server containing those layers. + +[NOTE] +==== +This uses a pre-release of version 5.0.0 of the wildfly-maven-plugin providing the Glow functionality. The version is set in the pom's `pluginManagement` section. +==== + +If you get an error or the server is missing some functionality which cannot be auto-discovered, you can download the https://github.com/wildfly/wildfly-glow/releases/tag[WildFly Glow CLI] and run the following command to see more information about what add-ons are available: + +[source,shell] +---- +wildfly-glow show-add-ons +---- +endif::portedToGlow[] [NOTE] ==== @@ -876,6 +924,7 @@ The server provisioning functionality is provided by the EAP Maven Plugin, and y endif::[] ifndef::ProductRelease,EAPXPRelease[] +ifndef::portedToGlow[] [source,xml,subs="attributes+"] ---- @@ -910,7 +959,59 @@ ifndef::ProductRelease,EAPXPRelease[] ---- -endif::[] +You may note that unlike the `provisioned-server` profile it uses the cloud feature pack which enables a configuration tuned for OpenShift environment. +endif::portedToGlow[] +ifdef::portedToGlow[] +[source,xml,subs="attributes+"] +---- + + openshift + + + + org.wildfly.plugins + wildfly-maven-plugin + + + ${version.server} + cloud + + + ROOT.war + ... + + + + + package + + + + + ... + + + +---- +You may note that unlike the `provisioned-server` profile it uses the cloud context which enables a configuration tuned for OpenShift environment. + +The plugin uses https://github.com/wildfly/wildfly-glow[WildFly Glow] to discover the feature packs and layers required to run the application, and provisions a server containing those layers. + +[NOTE] +==== +This uses a pre-release of version 5.0.0 of the wildfly-maven-plugin providing the Glow functionality. The version is set in the pom's `pluginManagement` section. +==== + +If you get an error or the server is missing some functionality which cannot be auto-discovered, you can download the https://github.com/wildfly/wildfly-glow/releases[WildFly Glow CLI] and run the following command to see more information about what add-ons are available: +[source,shell] +---- +wildfly-glow show-add-ons +---- +endif::portedToGlow[] +endif::ProductRelease,EAPXPRelease[] ifdef::ProductRelease,EAPXPRelease[] [source,xml,subs="attributes+"] @@ -948,15 +1049,10 @@ ifdef::ProductRelease,EAPXPRelease[] ---- -endif::[] - -ifndef::ProductRelease,EAPXPRelease[] -You may note that unlike the `provisioned-server` profile it uses the cloud feature pack which enables a configuration tuned for OpenShift environment. -endif::[] -ifdef::ProductRelease,EAPXPRelease[] You may note that it uses the cloud feature pack which enables a configuration tuned for OpenShift environment. endif::[] + :leveloffset: 1 // Getting Started with Helm :leveloffset: +1 diff --git a/temperature-converter/README.adoc b/temperature-converter/README.adoc index 631e1a4c2a..6dc87eb4ad 100644 --- a/temperature-converter/README.adoc +++ b/temperature-converter/README.adoc @@ -202,7 +202,6 @@ endif::[] :level: Beginner :technologies: CDI, JSF, SLSB EJB :openshift: true -:portedToGlow: true [abstract] The `temperature-converter` quickstart does temperature conversion using an EJB Stateless Session Bean (SLSB), CDI, and a JSF front-end client. @@ -629,7 +628,7 @@ For Windows, use the `__{jbossHomeName}__\bin\add-user.bat` script. endif::[] The server provisioning functionality is provided by the WildFly Maven Plugin, and you may find its configuration in the quickstart `pom.xml`: - +ifndef::portedToGlow[] [source,xml,subs="attributes+"] ---- @@ -662,6 +661,55 @@ The server provisioning functionality is provided by the WildFly Maven Plugin, a ---- +endif::portedToGlow[] +ifdef::portedToGlow[] +[source,xml,subs="attributes+"] +---- + + provisioned-server + + + + org.wildfly.plugins + wildfly-maven-plugin + + + ${version.server} + + + ROOT.war + ... + + + + + package + + + + + ... + + + +---- +The plugin uses https://github.com/wildfly/wildfly-glow[WildFly Glow] to discover the feature packs and layers required to run the application, and provisions a server containing those layers. + +[NOTE] +==== +This uses a pre-release of version 5.0.0 of the wildfly-maven-plugin providing the Glow functionality. The version is set in the pom's `pluginManagement` section. +==== + +If you get an error or the server is missing some functionality which cannot be auto-discovered, you can download the https://github.com/wildfly/wildfly-glow/releases/tag[WildFly Glow CLI] and run the following command to see more information about what add-ons are available: + +[source,shell] +---- +wildfly-glow show-add-ons +---- +endif::portedToGlow[] [NOTE] ==== @@ -860,6 +908,7 @@ The server provisioning functionality is provided by the EAP Maven Plugin, and y endif::[] ifndef::ProductRelease,EAPXPRelease[] +ifndef::portedToGlow[] [source,xml,subs="attributes+"] ---- @@ -894,7 +943,59 @@ ifndef::ProductRelease,EAPXPRelease[] ---- -endif::[] +You may note that unlike the `provisioned-server` profile it uses the cloud feature pack which enables a configuration tuned for OpenShift environment. +endif::portedToGlow[] +ifdef::portedToGlow[] +[source,xml,subs="attributes+"] +---- + + openshift + + + + org.wildfly.plugins + wildfly-maven-plugin + + + ${version.server} + cloud + + + ROOT.war + ... + + + + + package + + + + + ... + + + +---- +You may note that unlike the `provisioned-server` profile it uses the cloud context which enables a configuration tuned for OpenShift environment. + +The plugin uses https://github.com/wildfly/wildfly-glow[WildFly Glow] to discover the feature packs and layers required to run the application, and provisions a server containing those layers. + +[NOTE] +==== +This uses a pre-release of version 5.0.0 of the wildfly-maven-plugin providing the Glow functionality. The version is set in the pom's `pluginManagement` section. +==== + +If you get an error or the server is missing some functionality which cannot be auto-discovered, you can download the https://github.com/wildfly/wildfly-glow/releases[WildFly Glow CLI] and run the following command to see more information about what add-ons are available: +[source,shell] +---- +wildfly-glow show-add-ons +---- +endif::portedToGlow[] +endif::ProductRelease,EAPXPRelease[] ifdef::ProductRelease,EAPXPRelease[] [source,xml,subs="attributes+"] @@ -932,15 +1033,10 @@ ifdef::ProductRelease,EAPXPRelease[] ---- -endif::[] - -ifndef::ProductRelease,EAPXPRelease[] -You may note that unlike the `provisioned-server` profile it uses the cloud feature pack which enables a configuration tuned for OpenShift environment. -endif::[] -ifdef::ProductRelease,EAPXPRelease[] You may note that it uses the cloud feature pack which enables a configuration tuned for OpenShift environment. endif::[] + :leveloffset: 1 // Getting Started with Helm :leveloffset: +1 diff --git a/thread-racing/README.adoc b/thread-racing/README.adoc index c5a3ef1d74..4d93d55e2a 100644 --- a/thread-racing/README.adoc +++ b/thread-racing/README.adoc @@ -202,7 +202,6 @@ endif::[] :level: Beginner :technologies: Batch, CDI, EE Concurrency, JAX-RS, JMS, JPA, JSON, Web Sockets :openshift: true -:portedToGlow: true [abstract] A thread racing web application that demonstrates technologies introduced or updated in the latest Jakarta EE specification. @@ -671,7 +670,7 @@ For Windows, use the `__{jbossHomeName}__\bin\add-user.bat` script. endif::[] The server provisioning functionality is provided by the WildFly Maven Plugin, and you may find its configuration in the quickstart `pom.xml`: - +ifndef::portedToGlow[] [source,xml,subs="attributes+"] ---- @@ -704,6 +703,55 @@ The server provisioning functionality is provided by the WildFly Maven Plugin, a ---- +endif::portedToGlow[] +ifdef::portedToGlow[] +[source,xml,subs="attributes+"] +---- + + provisioned-server + + + + org.wildfly.plugins + wildfly-maven-plugin + + + ${version.server} + + + ROOT.war + ... + + + + + package + + + + + ... + + + +---- +The plugin uses https://github.com/wildfly/wildfly-glow[WildFly Glow] to discover the feature packs and layers required to run the application, and provisions a server containing those layers. + +[NOTE] +==== +This uses a pre-release of version 5.0.0 of the wildfly-maven-plugin providing the Glow functionality. The version is set in the pom's `pluginManagement` section. +==== + +If you get an error or the server is missing some functionality which cannot be auto-discovered, you can download the https://github.com/wildfly/wildfly-glow/releases/tag[WildFly Glow CLI] and run the following command to see more information about what add-ons are available: + +[source,shell] +---- +wildfly-glow show-add-ons +---- +endif::portedToGlow[] [NOTE] ==== @@ -902,6 +950,7 @@ The server provisioning functionality is provided by the EAP Maven Plugin, and y endif::[] ifndef::ProductRelease,EAPXPRelease[] +ifndef::portedToGlow[] [source,xml,subs="attributes+"] ---- @@ -936,7 +985,59 @@ ifndef::ProductRelease,EAPXPRelease[] ---- -endif::[] +You may note that unlike the `provisioned-server` profile it uses the cloud feature pack which enables a configuration tuned for OpenShift environment. +endif::portedToGlow[] +ifdef::portedToGlow[] +[source,xml,subs="attributes+"] +---- + + openshift + + + + org.wildfly.plugins + wildfly-maven-plugin + + + ${version.server} + cloud + + + ROOT.war + ... + + + + + package + + + + + ... + + + +---- +You may note that unlike the `provisioned-server` profile it uses the cloud context which enables a configuration tuned for OpenShift environment. + +The plugin uses https://github.com/wildfly/wildfly-glow[WildFly Glow] to discover the feature packs and layers required to run the application, and provisions a server containing those layers. + +[NOTE] +==== +This uses a pre-release of version 5.0.0 of the wildfly-maven-plugin providing the Glow functionality. The version is set in the pom's `pluginManagement` section. +==== + +If you get an error or the server is missing some functionality which cannot be auto-discovered, you can download the https://github.com/wildfly/wildfly-glow/releases[WildFly Glow CLI] and run the following command to see more information about what add-ons are available: +[source,shell] +---- +wildfly-glow show-add-ons +---- +endif::portedToGlow[] +endif::ProductRelease,EAPXPRelease[] ifdef::ProductRelease,EAPXPRelease[] [source,xml,subs="attributes+"] @@ -974,15 +1075,10 @@ ifdef::ProductRelease,EAPXPRelease[] ---- -endif::[] - -ifndef::ProductRelease,EAPXPRelease[] -You may note that unlike the `provisioned-server` profile it uses the cloud feature pack which enables a configuration tuned for OpenShift environment. -endif::[] -ifdef::ProductRelease,EAPXPRelease[] You may note that it uses the cloud feature pack which enables a configuration tuned for OpenShift environment. endif::[] + :leveloffset: 1 // Getting Started with Helm :leveloffset: +1 diff --git a/todo-backend/README.adoc b/todo-backend/README.adoc index 923d3c420a..a3ce177c2e 100644 --- a/todo-backend/README.adoc +++ b/todo-backend/README.adoc @@ -209,7 +209,6 @@ endif::[] :archiveType: war :useHelmChartDir: true :helm-install-prerequisites: ../todo-backend/helm-install-prerequisites.adoc -:portedToGlow: true [abstract] The `todo-backend` quickstart demonstrates how to implement a backend that exposes a HTTP API with JAX-RS @@ -619,6 +618,7 @@ The server provisioning functionality is provided by the EAP Maven Plugin, and y endif::[] ifndef::ProductRelease,EAPXPRelease[] +ifndef::portedToGlow[] [source,xml,subs="attributes+"] ---- @@ -653,7 +653,59 @@ ifndef::ProductRelease,EAPXPRelease[] ---- -endif::[] +You may note that unlike the `provisioned-server` profile it uses the cloud feature pack which enables a configuration tuned for OpenShift environment. +endif::portedToGlow[] +ifdef::portedToGlow[] +[source,xml,subs="attributes+"] +---- + + openshift + + + + org.wildfly.plugins + wildfly-maven-plugin + + + ${version.server} + cloud + + + ROOT.war + ... + + + + + package + + + + + ... + + + +---- +You may note that unlike the `provisioned-server` profile it uses the cloud context which enables a configuration tuned for OpenShift environment. + +The plugin uses https://github.com/wildfly/wildfly-glow[WildFly Glow] to discover the feature packs and layers required to run the application, and provisions a server containing those layers. + +[NOTE] +==== +This uses a pre-release of version 5.0.0 of the wildfly-maven-plugin providing the Glow functionality. The version is set in the pom's `pluginManagement` section. +==== + +If you get an error or the server is missing some functionality which cannot be auto-discovered, you can download the https://github.com/wildfly/wildfly-glow/releases[WildFly Glow CLI] and run the following command to see more information about what add-ons are available: +[source,shell] +---- +wildfly-glow show-add-ons +---- +endif::portedToGlow[] +endif::ProductRelease,EAPXPRelease[] ifdef::ProductRelease,EAPXPRelease[] [source,xml,subs="attributes+"] @@ -691,15 +743,10 @@ ifdef::ProductRelease,EAPXPRelease[] ---- -endif::[] - -ifndef::ProductRelease,EAPXPRelease[] -You may note that unlike the `provisioned-server` profile it uses the cloud feature pack which enables a configuration tuned for OpenShift environment. -endif::[] -ifdef::ProductRelease,EAPXPRelease[] You may note that it uses the cloud feature pack which enables a configuration tuned for OpenShift environment. endif::[] + :leveloffset: 1 // Getting Started with Helm :leveloffset: +1 diff --git a/websocket-endpoint/README.adoc b/websocket-endpoint/README.adoc index 4ad7ebc97b..c3a43bd314 100644 --- a/websocket-endpoint/README.adoc +++ b/websocket-endpoint/README.adoc @@ -202,7 +202,6 @@ endif::[] :level: Beginner :technologies: CDI, WebSocket, JSON-P :openshift: true -:portedToGlow: true [abstract] Shows how to use WebSockets with JSON to broadcast information to all open WebSocket sessions in {productName}. @@ -627,7 +626,7 @@ For Windows, use the `__{jbossHomeName}__\bin\add-user.bat` script. endif::[] The server provisioning functionality is provided by the WildFly Maven Plugin, and you may find its configuration in the quickstart `pom.xml`: - +ifndef::portedToGlow[] [source,xml,subs="attributes+"] ---- @@ -660,6 +659,55 @@ The server provisioning functionality is provided by the WildFly Maven Plugin, a ---- +endif::portedToGlow[] +ifdef::portedToGlow[] +[source,xml,subs="attributes+"] +---- + + provisioned-server + + + + org.wildfly.plugins + wildfly-maven-plugin + + + ${version.server} + + + ROOT.war + ... + + + + + package + + + + + ... + + + +---- +The plugin uses https://github.com/wildfly/wildfly-glow[WildFly Glow] to discover the feature packs and layers required to run the application, and provisions a server containing those layers. + +[NOTE] +==== +This uses a pre-release of version 5.0.0 of the wildfly-maven-plugin providing the Glow functionality. The version is set in the pom's `pluginManagement` section. +==== + +If you get an error or the server is missing some functionality which cannot be auto-discovered, you can download the https://github.com/wildfly/wildfly-glow/releases/tag[WildFly Glow CLI] and run the following command to see more information about what add-ons are available: + +[source,shell] +---- +wildfly-glow show-add-ons +---- +endif::portedToGlow[] [NOTE] ==== @@ -858,6 +906,7 @@ The server provisioning functionality is provided by the EAP Maven Plugin, and y endif::[] ifndef::ProductRelease,EAPXPRelease[] +ifndef::portedToGlow[] [source,xml,subs="attributes+"] ---- @@ -892,7 +941,59 @@ ifndef::ProductRelease,EAPXPRelease[] ---- -endif::[] +You may note that unlike the `provisioned-server` profile it uses the cloud feature pack which enables a configuration tuned for OpenShift environment. +endif::portedToGlow[] +ifdef::portedToGlow[] +[source,xml,subs="attributes+"] +---- + + openshift + + + + org.wildfly.plugins + wildfly-maven-plugin + + + ${version.server} + cloud + + + ROOT.war + ... + + + + + package + + + + + ... + + + +---- +You may note that unlike the `provisioned-server` profile it uses the cloud context which enables a configuration tuned for OpenShift environment. + +The plugin uses https://github.com/wildfly/wildfly-glow[WildFly Glow] to discover the feature packs and layers required to run the application, and provisions a server containing those layers. + +[NOTE] +==== +This uses a pre-release of version 5.0.0 of the wildfly-maven-plugin providing the Glow functionality. The version is set in the pom's `pluginManagement` section. +==== + +If you get an error or the server is missing some functionality which cannot be auto-discovered, you can download the https://github.com/wildfly/wildfly-glow/releases[WildFly Glow CLI] and run the following command to see more information about what add-ons are available: +[source,shell] +---- +wildfly-glow show-add-ons +---- +endif::portedToGlow[] +endif::ProductRelease,EAPXPRelease[] ifdef::ProductRelease,EAPXPRelease[] [source,xml,subs="attributes+"] @@ -930,15 +1031,10 @@ ifdef::ProductRelease,EAPXPRelease[] ---- -endif::[] - -ifndef::ProductRelease,EAPXPRelease[] -You may note that unlike the `provisioned-server` profile it uses the cloud feature pack which enables a configuration tuned for OpenShift environment. -endif::[] -ifdef::ProductRelease,EAPXPRelease[] You may note that it uses the cloud feature pack which enables a configuration tuned for OpenShift environment. endif::[] + :leveloffset: 1 // Getting Started with Helm :leveloffset: +1 diff --git a/websocket-hello/README.adoc b/websocket-hello/README.adoc index 3fab65f60a..56f74663f8 100644 --- a/websocket-hello/README.adoc +++ b/websocket-hello/README.adoc @@ -202,7 +202,6 @@ endif::[] :level: Beginner :technologies: WebSocket, CDI, JSF :openshift: true -:portedToGlow: true [abstract] The `websocket-hello` quickstart demonstrates how to create a simple WebSocket application. @@ -633,7 +632,7 @@ For Windows, use the `__{jbossHomeName}__\bin\add-user.bat` script. endif::[] The server provisioning functionality is provided by the WildFly Maven Plugin, and you may find its configuration in the quickstart `pom.xml`: - +ifndef::portedToGlow[] [source,xml,subs="attributes+"] ---- @@ -666,6 +665,55 @@ The server provisioning functionality is provided by the WildFly Maven Plugin, a ---- +endif::portedToGlow[] +ifdef::portedToGlow[] +[source,xml,subs="attributes+"] +---- + + provisioned-server + + + + org.wildfly.plugins + wildfly-maven-plugin + + + ${version.server} + + + ROOT.war + ... + + + + + package + + + + + ... + + + +---- +The plugin uses https://github.com/wildfly/wildfly-glow[WildFly Glow] to discover the feature packs and layers required to run the application, and provisions a server containing those layers. + +[NOTE] +==== +This uses a pre-release of version 5.0.0 of the wildfly-maven-plugin providing the Glow functionality. The version is set in the pom's `pluginManagement` section. +==== + +If you get an error or the server is missing some functionality which cannot be auto-discovered, you can download the https://github.com/wildfly/wildfly-glow/releases/tag[WildFly Glow CLI] and run the following command to see more information about what add-ons are available: + +[source,shell] +---- +wildfly-glow show-add-ons +---- +endif::portedToGlow[] [NOTE] ==== @@ -864,6 +912,7 @@ The server provisioning functionality is provided by the EAP Maven Plugin, and y endif::[] ifndef::ProductRelease,EAPXPRelease[] +ifndef::portedToGlow[] [source,xml,subs="attributes+"] ---- @@ -898,7 +947,59 @@ ifndef::ProductRelease,EAPXPRelease[] ---- -endif::[] +You may note that unlike the `provisioned-server` profile it uses the cloud feature pack which enables a configuration tuned for OpenShift environment. +endif::portedToGlow[] +ifdef::portedToGlow[] +[source,xml,subs="attributes+"] +---- + + openshift + + + + org.wildfly.plugins + wildfly-maven-plugin + + + ${version.server} + cloud + + + ROOT.war + ... + + + + + package + + + + + ... + + + +---- +You may note that unlike the `provisioned-server` profile it uses the cloud context which enables a configuration tuned for OpenShift environment. + +The plugin uses https://github.com/wildfly/wildfly-glow[WildFly Glow] to discover the feature packs and layers required to run the application, and provisions a server containing those layers. + +[NOTE] +==== +This uses a pre-release of version 5.0.0 of the wildfly-maven-plugin providing the Glow functionality. The version is set in the pom's `pluginManagement` section. +==== + +If you get an error or the server is missing some functionality which cannot be auto-discovered, you can download the https://github.com/wildfly/wildfly-glow/releases[WildFly Glow CLI] and run the following command to see more information about what add-ons are available: +[source,shell] +---- +wildfly-glow show-add-ons +---- +endif::portedToGlow[] +endif::ProductRelease,EAPXPRelease[] ifdef::ProductRelease,EAPXPRelease[] [source,xml,subs="attributes+"] @@ -936,15 +1037,10 @@ ifdef::ProductRelease,EAPXPRelease[] ---- -endif::[] - -ifndef::ProductRelease,EAPXPRelease[] -You may note that unlike the `provisioned-server` profile it uses the cloud feature pack which enables a configuration tuned for OpenShift environment. -endif::[] -ifdef::ProductRelease,EAPXPRelease[] You may note that it uses the cloud feature pack which enables a configuration tuned for OpenShift environment. endif::[] + :leveloffset: 1 // Getting Started with Helm :leveloffset: +1 From e7449a98476f055c230f4820994cfcb4bcc59cc7 Mon Sep 17 00:00:00 2001 From: Kabir Khan Date: Thu, 25 Jan 2024 19:29:40 +0000 Subject: [PATCH 12/26] Add glow rendering to README-source of enhanced quickstarts --- batch-processing/README-source.adoc | 1 + bmt/README-source.adoc | 1 + cmt/README-source.adoc | 1 + ee-security/README-source.adoc | 1 + ejb-remote/README-source.adoc | 1 + ejb-security-context-propagation/README-source.adoc | 1 + ejb-security-programmatic-auth/README-source.adoc | 1 + ejb-throws-exception/README-source.adoc | 1 + ejb-timer/README-source.adoc | 1 + ejb-txn-remote-call/README-source.adoc | 1 + helloworld-jms/README-source.adoc | 1 + helloworld-mdb/README-source.adoc | 1 + helloworld-singleton/README-source.adoc | 1 + helloworld-ws/README-source.adoc | 1 + helloworld/README-source.adoc | 1 + hibernate/README-source.adoc | 1 + http-custom-mechanism/README-source.adoc | 1 + jaxrs-client/README-source.adoc | 1 + jaxrs-jwt/README-source.adoc | 1 + jaxws-ejb/README-source.adoc | 1 + jaxws-retail/README-source.adoc | 1 + jsonp/README-source.adoc | 1 + kitchensink/README-source.adoc | 1 + logging/README-source.adoc | 1 + mail/README-source.adoc | 1 + micrometer/README-source.adoc | 1 + microprofile-config/README-source.adoc | 1 + microprofile-fault-tolerance/README-source.adoc | 1 + microprofile-health/README-source.adoc | 1 + microprofile-jwt/README-source.adoc | 1 + microprofile-lra/README-source.adoc | 1 + microprofile-openapi/README-source.adoc | 1 + microprofile-reactive-messaging-kafka/README-source.adoc | 1 + microprofile-rest-client/README-source.adoc | 1 + numberguess/README-source.adoc | 1 + opentelemetry-tracing/README-source.adoc | 1 + remote-helloworld-mdb/README-source.adoc | 1 + servlet-async/README-source.adoc | 1 + servlet-filterlistener/README-source.adoc | 1 + servlet-security/README-source.adoc | 1 + shared-doc/attributes.adoc | 5 ++++- spring-resteasy/README-source.adoc | 1 + temperature-converter/README-source.adoc | 1 + thread-racing/README-source.adoc | 1 + todo-backend/README-source.adoc | 1 + websocket-endpoint/README-source.adoc | 1 + websocket-hello/README-source.adoc | 1 + 47 files changed, 50 insertions(+), 1 deletion(-) diff --git a/batch-processing/README-source.adoc b/batch-processing/README-source.adoc index 9370abe18d..4e85ba3bed 100644 --- a/batch-processing/README-source.adoc +++ b/batch-processing/README-source.adoc @@ -5,6 +5,7 @@ include::../shared-doc/attributes.adoc[] :level: Intermediate :technologies: CDI, Batch 1.0, JSF :openshift: true +:portedToGlow: true [abstract] The `batch-processing` quickstart shows how to use chunk oriented batch jobs to import a file to a database. diff --git a/bmt/README-source.adoc b/bmt/README-source.adoc index 71312609a5..35bbe7198f 100644 --- a/bmt/README-source.adoc +++ b/bmt/README-source.adoc @@ -5,6 +5,7 @@ include::../shared-doc/attributes.adoc[] :level: Intermediate :technologies: EJB, BMT :openshift: true +:portedToGlow: true [abstract] The `bmt` quickstart demonstrates Bean-Managed Transactions (BMT), showing how to manually manage transaction demarcation while accessing JPA entities. diff --git a/cmt/README-source.adoc b/cmt/README-source.adoc index 508f2c51d2..06c954fe75 100644 --- a/cmt/README-source.adoc +++ b/cmt/README-source.adoc @@ -5,6 +5,7 @@ include::../shared-doc/attributes.adoc[] :level: Intermediate :technologies: EJB, CMT, JMS :openshift: true +:portedToGlow: true [abstract] The `cmt` quickstart demonstrates Container-Managed Transactions (CMT), showing how to use transactions managed by the container. diff --git a/ee-security/README-source.adoc b/ee-security/README-source.adoc index ecd5544742..a81eb62ab3 100644 --- a/ee-security/README-source.adoc +++ b/ee-security/README-source.adoc @@ -5,6 +5,7 @@ include::../shared-doc/attributes.adoc[] :level: Intermediate :technologies: EE Security, Servlet, CDI :openshift: true +:portedToGlow: true [abstract] The `ee-security` quickstart demonstrates Jakarta EE security. diff --git a/ejb-remote/README-source.adoc b/ejb-remote/README-source.adoc index 88050aa579..40c45d529b 100644 --- a/ejb-remote/README-source.adoc +++ b/ejb-remote/README-source.adoc @@ -5,6 +5,7 @@ include::../shared-doc/attributes.adoc[] :level: Intermediate :technologies: EJB, JNDI :openshift: true +:portedToGlow: true [abstract] The `ejb-remote` quickstart uses EJB and JNDI to demonstrate how to access an EJB, deployed to {productName}, from a remote Java client application. diff --git a/ejb-security-context-propagation/README-source.adoc b/ejb-security-context-propagation/README-source.adoc index edc9e6430a..5c3f2376b0 100644 --- a/ejb-security-context-propagation/README-source.adoc +++ b/ejb-security-context-propagation/README-source.adoc @@ -4,6 +4,7 @@ include::../shared-doc/attributes.adoc[] :author: Stefan Guilhen :level: Advanced :technologies: EJB, Security +:portedToGlow: true [abstract] The `ejb-security-context-propagation` quickstart demonstrates how the security context can be propagated to a remote EJB using a remote outbound connection configuration diff --git a/ejb-security-programmatic-auth/README-source.adoc b/ejb-security-programmatic-auth/README-source.adoc index 2a7adda5b5..f85ce9729a 100644 --- a/ejb-security-programmatic-auth/README-source.adoc +++ b/ejb-security-programmatic-auth/README-source.adoc @@ -4,6 +4,7 @@ include::../shared-doc/attributes.adoc[] :author: Stefan Guilhen :level: Intermediate :technologies: EJB, Security +:portedToGlow: true [abstract] The `ejb-security-programmatic-auth` quickstart demonstrates how to programmatically setup different identities when invoking a remote secured EJB. diff --git a/ejb-throws-exception/README-source.adoc b/ejb-throws-exception/README-source.adoc index 8843eae81c..bd6a60b36c 100644 --- a/ejb-throws-exception/README-source.adoc +++ b/ejb-throws-exception/README-source.adoc @@ -5,6 +5,7 @@ include::../shared-doc/attributes.adoc[] :level: Intermediate :technologies: EJB, EAR :deploymentDir: ear +:portedToGlow: true [abstract] The `ejb-throws-exception` quickstart demonstrates how to throw and handle exceptions across JARs in an EAR. diff --git a/ejb-timer/README-source.adoc b/ejb-timer/README-source.adoc index 58783bdbc7..14946c6e32 100644 --- a/ejb-timer/README-source.adoc +++ b/ejb-timer/README-source.adoc @@ -5,6 +5,7 @@ include::../shared-doc/attributes.adoc[] :level: Beginner :technologies: EJB Timer :openshift: true +:portedToGlow: true [abstract] The `ejb-timer` quickstart demonstrates how to use the Jakarta Enterprise Bean timer service `@Schedule` and `@Timeout` annotations with {productName}. diff --git a/ejb-txn-remote-call/README-source.adoc b/ejb-txn-remote-call/README-source.adoc index 289c17ac0b..c9cb08b1a3 100644 --- a/ejb-txn-remote-call/README-source.adoc +++ b/ejb-txn-remote-call/README-source.adoc @@ -5,6 +5,7 @@ include::../shared-doc/attributes.adoc[] :level: Intermediate :technologies: EJB, JTA, Clustering :openshift: true +:portedToGlow: true [abstract] The `ejb-txn-remote-call` quickstart demonstrates remote transactional EJB calls over two application servers of {productName}. diff --git a/helloworld-jms/README-source.adoc b/helloworld-jms/README-source.adoc index ba96f23360..79dbfb37d9 100644 --- a/helloworld-jms/README-source.adoc +++ b/helloworld-jms/README-source.adoc @@ -4,6 +4,7 @@ include::../shared-doc/attributes.adoc[] :author: Weston Price :level: Intermediate :technologies: JMS +:portedToGlow: true [abstract] The `helloworld-jms` quickstart demonstrates the use of external JMS clients with {productName}. diff --git a/helloworld-mdb/README-source.adoc b/helloworld-mdb/README-source.adoc index 32d9690b9c..64ea3624de 100644 --- a/helloworld-mdb/README-source.adoc +++ b/helloworld-mdb/README-source.adoc @@ -5,6 +5,7 @@ include::../shared-doc/attributes.adoc[] :level: Intermediate :technologies: JMS, EJB, MDB :openshift: true +:portedToGlow: true [abstract] The `helloworld-mdb` quickstart uses JMS and EJB Message-Driven Bean (MDB) to create and deploy JMS topic and queue resources in {productName}. diff --git a/helloworld-singleton/README-source.adoc b/helloworld-singleton/README-source.adoc index 2e1bbfaeb0..0cf299d32f 100644 --- a/helloworld-singleton/README-source.adoc +++ b/helloworld-singleton/README-source.adoc @@ -5,6 +5,7 @@ include::../shared-doc/attributes.adoc[] :level: Beginner :technologies: EJB, Singleton :openshift: true +:portedToGlow: true [abstract] The `helloworld-singleton` quickstart demonstrates an EJB Singleton Bean that is instantiated once and maintains state for the life of the session. diff --git a/helloworld-ws/README-source.adoc b/helloworld-ws/README-source.adoc index 541e80271c..bb3037832c 100644 --- a/helloworld-ws/README-source.adoc +++ b/helloworld-ws/README-source.adoc @@ -5,6 +5,7 @@ include::../shared-doc/attributes.adoc[] :level: Beginner :technologies: JAX-WS :openshift: true +:portedToGlow: true [abstract] The `helloworld-ws` quickstart demonstrates a simple Hello World application, bundled and deployed as a WAR, that uses JAX-WS to say Hello. diff --git a/helloworld/README-source.adoc b/helloworld/README-source.adoc index 3ee136f9bd..8e8e2efe2b 100644 --- a/helloworld/README-source.adoc +++ b/helloworld/README-source.adoc @@ -5,6 +5,7 @@ include::../shared-doc/attributes.adoc[] :level: Beginner :technologies: Servlet :openshift: true +:portedToGlow: true [abstract] The `helloworld` quickstart demonstrates the use of Servlet 6 and is a good starting point to verify {productName} is configured correctly. diff --git a/hibernate/README-source.adoc b/hibernate/README-source.adoc index e6c9fe1fc2..6cd4095312 100644 --- a/hibernate/README-source.adoc +++ b/hibernate/README-source.adoc @@ -5,6 +5,7 @@ include::../shared-doc/attributes.adoc[] :level: Intermediate :technologies: Hibernate :openshift: true +:portedToGlow: true [abstract] The `hibernate` quickstart demonstrates how to use Hibernate ORM 6 over Persistence, using Bean Validation, and Enterprise Beans. diff --git a/http-custom-mechanism/README-source.adoc b/http-custom-mechanism/README-source.adoc index 0544977175..7e5fd2b0cd 100644 --- a/http-custom-mechanism/README-source.adoc +++ b/http-custom-mechanism/README-source.adoc @@ -4,6 +4,7 @@ include::../shared-doc/attributes.adoc[] :author: Darran Lofthouse :level: Intermediate :technologies: EJB, Security +:portedToGlow: true [abstract] The `http-custom-mechanism` quickstart demonstrates how to implement a custom HTTP authentication mechanism that can be registered with Elytron. diff --git a/jaxrs-client/README-source.adoc b/jaxrs-client/README-source.adoc index cc5bf16906..1bbdbbe7cb 100644 --- a/jaxrs-client/README-source.adoc +++ b/jaxrs-client/README-source.adoc @@ -5,6 +5,7 @@ include::../shared-doc/attributes.adoc[] :level: Beginner :technologies: JAX-RS :openshift: true +:portedToGlow: true [abstract] The `jaxrs-client` quickstart demonstrates Jakarta REST Client API, which interacts with a Jakarta REST Web service that runs on {productName}. diff --git a/jaxrs-jwt/README-source.adoc b/jaxrs-jwt/README-source.adoc index d543ddfc46..21b74b2f39 100644 --- a/jaxrs-jwt/README-source.adoc +++ b/jaxrs-jwt/README-source.adoc @@ -4,6 +4,7 @@ include::../shared-doc/attributes.adoc[] :author: Martin Mazanek :level: Intermediate :technologies: JAX-RS, Security +:portedToGlow: true [abstract] The `jaxrs-jwt` quickstart demonstrates a Jakarta REST secured application using JSON Web Tokens (JWT) with Elytron. diff --git a/jaxws-ejb/README-source.adoc b/jaxws-ejb/README-source.adoc index efd4e03e4e..9b87618fa1 100644 --- a/jaxws-ejb/README-source.adoc +++ b/jaxws-ejb/README-source.adoc @@ -4,6 +4,7 @@ include::../shared-doc/attributes.adoc[] :author: R Searls :level: Beginner :technologies: JAX-WS +:portedToGlow: true [abstract] The `jaxws-ejb` quickstart is a working example of the web service endpoint created from an EJB. diff --git a/jaxws-retail/README-source.adoc b/jaxws-retail/README-source.adoc index 03e2dc9d55..24a5279bbe 100644 --- a/jaxws-retail/README-source.adoc +++ b/jaxws-retail/README-source.adoc @@ -4,6 +4,7 @@ include::../shared-doc/attributes.adoc[] :author: R Searls :level: Beginner :technologies: JAX-WS +:portedToGlow: true [abstract] The `jaxws-retail` quickstart is a working example of a simple web service endpoint. diff --git a/jsonp/README-source.adoc b/jsonp/README-source.adoc index f74ae52a82..c7ea1b6218 100644 --- a/jsonp/README-source.adoc +++ b/jsonp/README-source.adoc @@ -5,6 +5,7 @@ include::../shared-doc/attributes.adoc[] :level: Beginner :technologies: CDI, JSF, JSON-P :openshift: true +:portedToGlow: true [abstract] The `jsonp` quickstart demonstrates how to use the JSON-P API to produce object-based structures and then parse and consume them as stream-based JSON strings. diff --git a/kitchensink/README-source.adoc b/kitchensink/README-source.adoc index 5643a37f82..17edd0d02a 100644 --- a/kitchensink/README-source.adoc +++ b/kitchensink/README-source.adoc @@ -5,6 +5,7 @@ include::../shared-doc/attributes.adoc[] :level: Intermediate :technologies: CDI, JSF, JPA, EJB, JAX-RS, BV :openshift: true +:portedToGlow: true [abstract] The `kitchensink` quickstart demonstrates a localized {javaVersion} web-enabled database application using JSF, CDI, EJB, JPA, and Bean Validation. diff --git a/logging/README-source.adoc b/logging/README-source.adoc index 8e066f1331..717d39a31d 100644 --- a/logging/README-source.adoc +++ b/logging/README-source.adoc @@ -4,6 +4,7 @@ include::../shared-doc/attributes.adoc[] :author: Joel Tosi :level: Intermediate :technologies: Logging +:portedToGlow: true [abstract] The `logging` quickstart demonstrates how to configure different logging levels in {productName}. diff --git a/mail/README-source.adoc b/mail/README-source.adoc index 4e3fdd8375..15d2a3a308 100644 --- a/mail/README-source.adoc +++ b/mail/README-source.adoc @@ -4,6 +4,7 @@ include::../shared-doc/attributes.adoc[] :author: Joel Tosi :level: Beginner :technologies: JavaMail, CDI, JSF +:portedToGlow: true [abstract] The `mail` quickstart demonstrates how to send and receive emails using CDI and JSF and with custom Mail provider configured in {productName}. diff --git a/micrometer/README-source.adoc b/micrometer/README-source.adoc index 3596ac0f89..625f2b57e1 100644 --- a/micrometer/README-source.adoc +++ b/micrometer/README-source.adoc @@ -5,6 +5,7 @@ include::../shared-doc/attributes.adoc[] :level: Beginner :technologies: Micrometer :openshift: true +:portedToGlow: true [abstract] The `micrometer` quickstart demonstrates the use of the Micrometer library in {productName}. diff --git a/microprofile-config/README-source.adoc b/microprofile-config/README-source.adoc index 45d8a6454f..59130ade08 100644 --- a/microprofile-config/README-source.adoc +++ b/microprofile-config/README-source.adoc @@ -4,6 +4,7 @@ include::../shared-doc/attributes.adoc[] :author: Martin Stefanko :level: Beginner :technologies: MicroProfile Config +:portedToGlow: true [abstract] The `microprofile-config` quickstart demonstrates the use of the MicroProfile Config specification in {productName}. diff --git a/microprofile-fault-tolerance/README-source.adoc b/microprofile-fault-tolerance/README-source.adoc index 19cdf30bd6..dee42e2cf7 100644 --- a/microprofile-fault-tolerance/README-source.adoc +++ b/microprofile-fault-tolerance/README-source.adoc @@ -13,6 +13,7 @@ include::../shared-doc/attributes.adoc[] :author: Radoslav Husar, Tomas Hofman :level: Intermediate :technologies: MicroProfile, Fault Tolerance +:portedToGlow: true [abstract] The `microprofile-fault-tolerance` quickstart demonstrates how to use Eclipse MicroProfile Fault Tolerance in {productName}. diff --git a/microprofile-health/README-source.adoc b/microprofile-health/README-source.adoc index be7fdd02ab..6de3f1a95b 100644 --- a/microprofile-health/README-source.adoc +++ b/microprofile-health/README-source.adoc @@ -16,6 +16,7 @@ The `microprofile-health` quickstart demonstrates the use of the MicroProfile He :archiveType: war :archiveName: {artifactId} :include-management-port: http://localhost:9990/health/live +:portedToGlow: true == What is it? diff --git a/microprofile-jwt/README-source.adoc b/microprofile-jwt/README-source.adoc index fba604aa2a..b40ee96d74 100644 --- a/microprofile-jwt/README-source.adoc +++ b/microprofile-jwt/README-source.adoc @@ -11,6 +11,7 @@ The `microprofile-jwt` quickstart demonstrates the use of the MicroProfile JWT s :standalone-server-type: microprofile :archiveType: war :archiveName: microprofile-jwt.war +:portedToGlow: true == What is it? diff --git a/microprofile-lra/README-source.adoc b/microprofile-lra/README-source.adoc index a32da33411..2bbc081450 100644 --- a/microprofile-lra/README-source.adoc +++ b/microprofile-lra/README-source.adoc @@ -19,6 +19,7 @@ The `microprofile-lra` quickstart demonstrates the use of the MicroProfile LRA s :custom-openshift-layers: :extra-openshift-test-arguments: :requires-http-route: +:portedToGlow: true == What is it? diff --git a/microprofile-openapi/README-source.adoc b/microprofile-openapi/README-source.adoc index 03432cc0d4..721cd30d0a 100644 --- a/microprofile-openapi/README-source.adoc +++ b/microprofile-openapi/README-source.adoc @@ -4,6 +4,7 @@ include::../shared-doc/attributes.adoc[] :author: Paul Ferraro :level: Beginner :technologies: MicroProfile OpenAPI +:portedToGlow: true [abstract] This guide demonstrate how to use the MicroProfile OpenAPI functionality in {productName} to expose an OpenAPI document for a simple REST application. diff --git a/microprofile-reactive-messaging-kafka/README-source.adoc b/microprofile-reactive-messaging-kafka/README-source.adoc index 9a65fc779a..742f04b53b 100644 --- a/microprofile-reactive-messaging-kafka/README-source.adoc +++ b/microprofile-reactive-messaging-kafka/README-source.adoc @@ -14,6 +14,7 @@ The `microprofile-reactive-messaging-kafka` quickstart demonstrates the use of t :helm-install-prerequisites: ../microprofile-reactive-messaging-kafka/helm-install-prerequisites.adoc :helm-app-name: mp-rm-qs :strimzi-version: v1beta2 +:portedToGlow: true == What is it? diff --git a/microprofile-rest-client/README-source.adoc b/microprofile-rest-client/README-source.adoc index cf18b222af..65d67d0cbd 100644 --- a/microprofile-rest-client/README-source.adoc +++ b/microprofile-rest-client/README-source.adoc @@ -12,6 +12,7 @@ The `microprofile-rest-client` quickstart demonstrates the use of the MicroProfi :archiveType: jar :archiveName: {artifactId} :rest-client-qs: +:portedToGlow: true == What is it? diff --git a/numberguess/README-source.adoc b/numberguess/README-source.adoc index 5ff1c57a3e..52e94537c2 100644 --- a/numberguess/README-source.adoc +++ b/numberguess/README-source.adoc @@ -5,6 +5,7 @@ include::../shared-doc/attributes.adoc[] :level: Beginner :technologies: CDI, JSF :openshift: true +:portedToGlow: true [abstract] The `numberguess` quickstart demonstrates the use of CDI (Contexts and Dependency Injection) and JSF (JavaServer Faces) in {productName}. diff --git a/opentelemetry-tracing/README-source.adoc b/opentelemetry-tracing/README-source.adoc index e05c062d83..16a3e6cae0 100644 --- a/opentelemetry-tracing/README-source.adoc +++ b/opentelemetry-tracing/README-source.adoc @@ -13,6 +13,7 @@ The `opentelemetry-tracing` quickstart demonstrates the use of the OpenTelemetry :archiveType: war :archiveName: {artifactId} :restoreScriptName: restore-configuration.cli +:portedToGlow: true == What is it? diff --git a/remote-helloworld-mdb/README-source.adoc b/remote-helloworld-mdb/README-source.adoc index 97bcd4aa06..419c1f884d 100644 --- a/remote-helloworld-mdb/README-source.adoc +++ b/remote-helloworld-mdb/README-source.adoc @@ -5,6 +5,7 @@ include::../shared-doc/attributes.adoc[] :level: Intermediate :technologies: JMS, EJB, MDB :openshift: true +:portedToGlow: true :standalone-server-type: full :archiveType: war diff --git a/servlet-async/README-source.adoc b/servlet-async/README-source.adoc index bfbe219b74..b25d1f48f7 100644 --- a/servlet-async/README-source.adoc +++ b/servlet-async/README-source.adoc @@ -5,6 +5,7 @@ include::../shared-doc/attributes.adoc[] :level: Intermediate :technologies: Asynchronous Servlet, CDI, EJB :openshift: true +:portedToGlow: true [abstract] The `servlet-async` quickstart demonstrates how to use asynchronous servlets to detach long-running tasks and free up the request processing thread. diff --git a/servlet-filterlistener/README-source.adoc b/servlet-filterlistener/README-source.adoc index 2322bd1ff7..53acc4f786 100644 --- a/servlet-filterlistener/README-source.adoc +++ b/servlet-filterlistener/README-source.adoc @@ -5,6 +5,7 @@ include::../shared-doc/attributes.adoc[] :level: Intermediate :technologies: Servlet Filter, Servlet Listener :openshift: true +:portedToGlow: true [abstract] The `servlet-filterlistener` quickstart demonstrates how to use Servlet filters and listeners in an application. diff --git a/servlet-security/README-source.adoc b/servlet-security/README-source.adoc index 234aae9d87..fad6e780c2 100644 --- a/servlet-security/README-source.adoc +++ b/servlet-security/README-source.adoc @@ -5,6 +5,7 @@ include::../shared-doc/attributes.adoc[] :level: Intermediate :technologies: Servlet, Security :openshift: true +:portedToGlow: true [abstract] The `servlet-security` quickstart demonstrates the use of Jakarta EE declarative security to control access to Servlets and Security in {productName}. diff --git a/shared-doc/attributes.adoc b/shared-doc/attributes.adoc index c7fae8bffb..056627cb84 100644 --- a/shared-doc/attributes.adoc +++ b/shared-doc/attributes.adoc @@ -191,4 +191,7 @@ endif::[] :LinkJBDSInstall: https://access.redhat.com/documentation/en-us/red_hat_codeready_studio/{JBDSVersion}/html-single/installation_guide/ :JBDSInstallBookName: Installation Guide :LinkJBDSGettingStarted: https://access.redhat.com/documentation/en-us/red_hat_codeready_studio/{JBDSVersion}/html-single/getting_started_with_codeready_studio_tools/ -:JBDSGettingStartedBookName: Getting Started with CodeReady Studio Tools \ No newline at end of file +:JBDSGettingStartedBookName: Getting Started with CodeReady Studio Tools + +// Enable Rendering of Glow configuration in plugin examples +:portedToGlow: true \ No newline at end of file diff --git a/spring-resteasy/README-source.adoc b/spring-resteasy/README-source.adoc index f2ddc0be25..ce8656365f 100644 --- a/spring-resteasy/README-source.adoc +++ b/spring-resteasy/README-source.adoc @@ -6,6 +6,7 @@ include::../shared-doc/attributes.adoc[] :technologies: Resteasy, Spring :openshift: true :buildRequirements: Java 17 (Java SDK 17) or later and Maven 3.3.1 or later +:portedToGlow: true [abstract] The `spring-resteasy` quickstart demonstrates how to package and deploy a web application that includes resteasy-spring integration. diff --git a/temperature-converter/README-source.adoc b/temperature-converter/README-source.adoc index b4f2750221..8b9b2d8e4f 100644 --- a/temperature-converter/README-source.adoc +++ b/temperature-converter/README-source.adoc @@ -5,6 +5,7 @@ include::../shared-doc/attributes.adoc[] :level: Beginner :technologies: CDI, JSF, SLSB EJB :openshift: true +:portedToGlow: true [abstract] The `temperature-converter` quickstart does temperature conversion using an EJB Stateless Session Bean (SLSB), CDI, and a JSF front-end client. diff --git a/thread-racing/README-source.adoc b/thread-racing/README-source.adoc index 0c489d72f0..63c6f5c0e6 100644 --- a/thread-racing/README-source.adoc +++ b/thread-racing/README-source.adoc @@ -5,6 +5,7 @@ include::../shared-doc/attributes.adoc[] :level: Beginner :technologies: Batch, CDI, EE Concurrency, JAX-RS, JMS, JPA, JSON, Web Sockets :openshift: true +:portedToGlow: true [abstract] A thread racing web application that demonstrates technologies introduced or updated in the latest Jakarta EE specification. diff --git a/todo-backend/README-source.adoc b/todo-backend/README-source.adoc index 0684565431..ad5456cb9b 100644 --- a/todo-backend/README-source.adoc +++ b/todo-backend/README-source.adoc @@ -12,6 +12,7 @@ include::../shared-doc/attributes.adoc[] :archiveType: war :useHelmChartDir: true :helm-install-prerequisites: ../todo-backend/helm-install-prerequisites.adoc +:portedToGlow: true [abstract] The `todo-backend` quickstart demonstrates how to implement a backend that exposes a HTTP API with JAX-RS diff --git a/websocket-endpoint/README-source.adoc b/websocket-endpoint/README-source.adoc index d71e5d1f34..1b9622ef1f 100644 --- a/websocket-endpoint/README-source.adoc +++ b/websocket-endpoint/README-source.adoc @@ -5,6 +5,7 @@ include::../shared-doc/attributes.adoc[] :level: Beginner :technologies: CDI, WebSocket, JSON-P :openshift: true +:portedToGlow: true [abstract] Shows how to use WebSockets with JSON to broadcast information to all open WebSocket sessions in {productName}. diff --git a/websocket-hello/README-source.adoc b/websocket-hello/README-source.adoc index 185033e45e..f64a5ea94c 100644 --- a/websocket-hello/README-source.adoc +++ b/websocket-hello/README-source.adoc @@ -5,6 +5,7 @@ include::../shared-doc/attributes.adoc[] :level: Beginner :technologies: WebSocket, CDI, JSF :openshift: true +:portedToGlow: true [abstract] The `websocket-hello` quickstart demonstrates how to create a simple WebSocket application. From 591e0e32ec43458fc441207416b46ab4361b6f23 Mon Sep 17 00:00:00 2001 From: kabir Date: Thu, 25 Jan 2024 19:53:51 +0000 Subject: [PATCH 13/26] Commit from GitHub Actions (WildFly Quickstarts Update 'README.adoc's) --- README.adoc | 3 +++ batch-processing/README.adoc | 4 ++++ bmt/README.adoc | 4 ++++ cmt/README.adoc | 4 ++++ contacts-jquerymobile/README.adoc | 3 +++ ee-security/README.adoc | 4 ++++ ejb-multi-server/README.adoc | 3 +++ ejb-remote/README.adoc | 4 ++++ ejb-security-context-propagation/README.adoc | 4 ++++ ejb-security-programmatic-auth/README.adoc | 4 ++++ ejb-throws-exception/README.adoc | 4 ++++ ejb-timer/README.adoc | 4 ++++ ejb-txn-remote-call/README.adoc | 4 ++++ ha-singleton-deployment/README.adoc | 3 +++ ha-singleton-service/README.adoc | 3 +++ helloworld-jms/README.adoc | 4 ++++ helloworld-mdb/README.adoc | 4 ++++ helloworld-mutual-ssl-secured/README.adoc | 3 +++ helloworld-mutual-ssl/README.adoc | 3 +++ helloworld-singleton/README.adoc | 4 ++++ helloworld-ws/README.adoc | 4 ++++ helloworld/README.adoc | 4 ++++ hibernate/README.adoc | 4 ++++ http-custom-mechanism/README.adoc | 4 ++++ jaxrs-client/README.adoc | 4 ++++ jaxrs-jwt/README.adoc | 4 ++++ jaxws-ejb/README.adoc | 4 ++++ jaxws-retail/README.adoc | 4 ++++ jsonp/README.adoc | 4 ++++ jta-crash-rec/README.adoc | 3 +++ jts/README.adoc | 3 +++ kitchensink/README.adoc | 4 ++++ logging/README.adoc | 4 ++++ mail/README.adoc | 4 ++++ messaging-clustering-singleton/README.adoc | 3 +++ micrometer/README.adoc | 4 ++++ microprofile-config/README.adoc | 4 ++++ microprofile-fault-tolerance/README.adoc | 4 ++++ microprofile-health/README.adoc | 4 ++++ microprofile-jwt/README.adoc | 4 ++++ microprofile-lra/README.adoc | 4 ++++ microprofile-openapi/README.adoc | 4 ++++ microprofile-reactive-messaging-kafka/README.adoc | 4 ++++ microprofile-rest-client/README.adoc | 4 ++++ numberguess/README.adoc | 4 ++++ opentelemetry-tracing/README.adoc | 4 ++++ remote-helloworld-mdb/README.adoc | 4 ++++ security-domain-to-domain/README.adoc | 3 +++ servlet-async/README.adoc | 4 ++++ servlet-filterlistener/README.adoc | 4 ++++ servlet-security/README.adoc | 4 ++++ spring-resteasy/README.adoc | 4 ++++ tasks-jsf/README.adoc | 3 +++ temperature-converter/README.adoc | 4 ++++ template/README.adoc | 3 +++ thread-racing/README.adoc | 4 ++++ todo-backend/README.adoc | 4 ++++ websocket-endpoint/README.adoc | 4 ++++ websocket-hello/README.adoc | 4 ++++ wsat-simple/README.adoc | 3 +++ wsba-coordinator-completion-simple/README.adoc | 3 +++ wsba-participant-completion-simple/README.adoc | 3 +++ 62 files changed, 232 insertions(+) diff --git a/README.adoc b/README.adoc index 623496a239..a485d4daad 100644 --- a/README.adoc +++ b/README.adoc @@ -193,6 +193,9 @@ endif::[] :LinkJBDSGettingStarted: https://access.redhat.com/documentation/en-us/red_hat_codeready_studio/{JBDSVersion}/html-single/getting_started_with_codeready_studio_tools/ :JBDSGettingStartedBookName: Getting Started with CodeReady Studio Tools +// Enable Rendering of Glow configuration in plugin examples +:portedToGlow: true + :toc: :toclevels: 4 :numbered: diff --git a/batch-processing/README.adoc b/batch-processing/README.adoc index c474c8c998..6a0ac90fb1 100644 --- a/batch-processing/README.adoc +++ b/batch-processing/README.adoc @@ -197,11 +197,15 @@ endif::[] :LinkJBDSGettingStarted: https://access.redhat.com/documentation/en-us/red_hat_codeready_studio/{JBDSVersion}/html-single/getting_started_with_codeready_studio_tools/ :JBDSGettingStartedBookName: Getting Started with CodeReady Studio Tools +// Enable Rendering of Glow configuration in plugin examples +:portedToGlow: true + = batch-processing: Chunk oriented Batch 1.0 processing :author: Rafael Benevides :level: Intermediate :technologies: CDI, Batch 1.0, JSF :openshift: true +:portedToGlow: true [abstract] The `batch-processing` quickstart shows how to use chunk oriented batch jobs to import a file to a database. diff --git a/bmt/README.adoc b/bmt/README.adoc index 9749a53613..a699d73057 100644 --- a/bmt/README.adoc +++ b/bmt/README.adoc @@ -197,11 +197,15 @@ endif::[] :LinkJBDSGettingStarted: https://access.redhat.com/documentation/en-us/red_hat_codeready_studio/{JBDSVersion}/html-single/getting_started_with_codeready_studio_tools/ :JBDSGettingStartedBookName: Getting Started with CodeReady Studio Tools +// Enable Rendering of Glow configuration in plugin examples +:portedToGlow: true + = bmt: Bean Managed Transactions with JPA and JTA :author: Mike Musgrove :level: Intermediate :technologies: EJB, BMT :openshift: true +:portedToGlow: true [abstract] The `bmt` quickstart demonstrates Bean-Managed Transactions (BMT), showing how to manually manage transaction demarcation while accessing JPA entities. diff --git a/cmt/README.adoc b/cmt/README.adoc index 1df925dfe1..50e77c9163 100644 --- a/cmt/README.adoc +++ b/cmt/README.adoc @@ -197,11 +197,15 @@ endif::[] :LinkJBDSGettingStarted: https://access.redhat.com/documentation/en-us/red_hat_codeready_studio/{JBDSVersion}/html-single/getting_started_with_codeready_studio_tools/ :JBDSGettingStartedBookName: Getting Started with CodeReady Studio Tools +// Enable Rendering of Glow configuration in plugin examples +:portedToGlow: true + = cmt: Container Managed Transactions (CMT) :author: Tom Jenkinson :level: Intermediate :technologies: EJB, CMT, JMS :openshift: true +:portedToGlow: true [abstract] The `cmt` quickstart demonstrates Container-Managed Transactions (CMT), showing how to use transactions managed by the container. diff --git a/contacts-jquerymobile/README.adoc b/contacts-jquerymobile/README.adoc index d18413f5af..33e6d998af 100644 --- a/contacts-jquerymobile/README.adoc +++ b/contacts-jquerymobile/README.adoc @@ -197,6 +197,9 @@ endif::[] :LinkJBDSGettingStarted: https://access.redhat.com/documentation/en-us/red_hat_codeready_studio/{JBDSVersion}/html-single/getting_started_with_codeready_studio_tools/ :JBDSGettingStartedBookName: Getting Started with CodeReady Studio Tools +// Enable Rendering of Glow configuration in plugin examples +:portedToGlow: true + = contacts-jquerymobile: CRUD Example Using HTML5, jQuery Mobile and JAX-RS :author: Joshua Wilson :level: Beginner diff --git a/ee-security/README.adoc b/ee-security/README.adoc index 1a9508d813..a2bb27b162 100644 --- a/ee-security/README.adoc +++ b/ee-security/README.adoc @@ -197,11 +197,15 @@ endif::[] :LinkJBDSGettingStarted: https://access.redhat.com/documentation/en-us/red_hat_codeready_studio/{JBDSVersion}/html-single/getting_started_with_codeready_studio_tools/ :JBDSGettingStartedBookName: Getting Started with CodeReady Studio Tools +// Enable Rendering of Glow configuration in plugin examples +:portedToGlow: true + = ee-security: Using Jakarta EE Security :author: Darran Lofthouse :level: Intermediate :technologies: EE Security, Servlet, CDI :openshift: true +:portedToGlow: true [abstract] The `ee-security` quickstart demonstrates Jakarta EE security. diff --git a/ejb-multi-server/README.adoc b/ejb-multi-server/README.adoc index 96d518d27a..caa0e9942e 100644 --- a/ejb-multi-server/README.adoc +++ b/ejb-multi-server/README.adoc @@ -197,6 +197,9 @@ endif::[] :LinkJBDSGettingStarted: https://access.redhat.com/documentation/en-us/red_hat_codeready_studio/{JBDSVersion}/html-single/getting_started_with_codeready_studio_tools/ :JBDSGettingStartedBookName: Getting Started with CodeReady Studio Tools +// Enable Rendering of Glow configuration in plugin examples +:portedToGlow: true + = ejb-multi-server: EJB Communication Across Servers :author: Wolf-Dieter Fink :level: Advanced diff --git a/ejb-remote/README.adoc b/ejb-remote/README.adoc index 6c84c5b3e3..99289de033 100644 --- a/ejb-remote/README.adoc +++ b/ejb-remote/README.adoc @@ -197,11 +197,15 @@ endif::[] :LinkJBDSGettingStarted: https://access.redhat.com/documentation/en-us/red_hat_codeready_studio/{JBDSVersion}/html-single/getting_started_with_codeready_studio_tools/ :JBDSGettingStartedBookName: Getting Started with CodeReady Studio Tools +// Enable Rendering of Glow configuration in plugin examples +:portedToGlow: true + = ejb-remote: Remote EJB Client Example :author: Jaikiran Pai, Mike Musgrove :level: Intermediate :technologies: EJB, JNDI :openshift: true +:portedToGlow: true [abstract] The `ejb-remote` quickstart uses EJB and JNDI to demonstrate how to access an EJB, deployed to {productName}, from a remote Java client application. diff --git a/ejb-security-context-propagation/README.adoc b/ejb-security-context-propagation/README.adoc index 6c247bdf3a..55ad93744c 100644 --- a/ejb-security-context-propagation/README.adoc +++ b/ejb-security-context-propagation/README.adoc @@ -197,10 +197,14 @@ endif::[] :LinkJBDSGettingStarted: https://access.redhat.com/documentation/en-us/red_hat_codeready_studio/{JBDSVersion}/html-single/getting_started_with_codeready_studio_tools/ :JBDSGettingStartedBookName: Getting Started with CodeReady Studio Tools +// Enable Rendering of Glow configuration in plugin examples +:portedToGlow: true + = ejb-security-context-propagation: Demonstrate security context propagation in EJB to remote EJB calls :author: Stefan Guilhen :level: Advanced :technologies: EJB, Security +:portedToGlow: true [abstract] The `ejb-security-context-propagation` quickstart demonstrates how the security context can be propagated to a remote EJB using a remote outbound connection configuration diff --git a/ejb-security-programmatic-auth/README.adoc b/ejb-security-programmatic-auth/README.adoc index 81c698dce9..1b2b784f2e 100644 --- a/ejb-security-programmatic-auth/README.adoc +++ b/ejb-security-programmatic-auth/README.adoc @@ -197,10 +197,14 @@ endif::[] :LinkJBDSGettingStarted: https://access.redhat.com/documentation/en-us/red_hat_codeready_studio/{JBDSVersion}/html-single/getting_started_with_codeready_studio_tools/ :JBDSGettingStartedBookName: Getting Started with CodeReady Studio Tools +// Enable Rendering of Glow configuration in plugin examples +:portedToGlow: true + = ejb-security-programmatic-auth: Using the programmatic API to invoke a remote EJB using different identities :author: Stefan Guilhen :level: Intermediate :technologies: EJB, Security +:portedToGlow: true [abstract] The `ejb-security-programmatic-auth` quickstart demonstrates how to programmatically setup different identities when invoking a remote secured EJB. diff --git a/ejb-throws-exception/README.adoc b/ejb-throws-exception/README.adoc index 04e417296c..78c99c6f80 100644 --- a/ejb-throws-exception/README.adoc +++ b/ejb-throws-exception/README.adoc @@ -197,11 +197,15 @@ endif::[] :LinkJBDSGettingStarted: https://access.redhat.com/documentation/en-us/red_hat_codeready_studio/{JBDSVersion}/html-single/getting_started_with_codeready_studio_tools/ :JBDSGettingStartedBookName: Getting Started with CodeReady Studio Tools +// Enable Rendering of Glow configuration in plugin examples +:portedToGlow: true + = ejb-throws-exception: Handle Exceptions across JARs in an EAR :author: Brad Maxwell :level: Intermediate :technologies: EJB, EAR :deploymentDir: ear +:portedToGlow: true [abstract] The `ejb-throws-exception` quickstart demonstrates how to throw and handle exceptions across JARs in an EAR. diff --git a/ejb-timer/README.adoc b/ejb-timer/README.adoc index 6e17f2ff76..63bcd28eb6 100644 --- a/ejb-timer/README.adoc +++ b/ejb-timer/README.adoc @@ -197,11 +197,15 @@ endif::[] :LinkJBDSGettingStarted: https://access.redhat.com/documentation/en-us/red_hat_codeready_studio/{JBDSVersion}/html-single/getting_started_with_codeready_studio_tools/ :JBDSGettingStartedBookName: Getting Started with CodeReady Studio Tools +// Enable Rendering of Glow configuration in plugin examples +:portedToGlow: true + = ejb-timer: Example of Jakarta Enterprise Bean Timer Service - @Schedule and @Timeout :author: Ondrej Zizka :level: Beginner :technologies: EJB Timer :openshift: true +:portedToGlow: true [abstract] The `ejb-timer` quickstart demonstrates how to use the Jakarta Enterprise Bean timer service `@Schedule` and `@Timeout` annotations with {productName}. diff --git a/ejb-txn-remote-call/README.adoc b/ejb-txn-remote-call/README.adoc index b3b9cbf388..84fbe91868 100644 --- a/ejb-txn-remote-call/README.adoc +++ b/ejb-txn-remote-call/README.adoc @@ -197,11 +197,15 @@ endif::[] :LinkJBDSGettingStarted: https://access.redhat.com/documentation/en-us/red_hat_codeready_studio/{JBDSVersion}/html-single/getting_started_with_codeready_studio_tools/ :JBDSGettingStartedBookName: Getting Started with CodeReady Studio Tools +// Enable Rendering of Glow configuration in plugin examples +:portedToGlow: true + = ejb-txn-remote-call: Demonstrates remote EJB calls and transaction propagation :author: Ondra Chaloupka :level: Intermediate :technologies: EJB, JTA, Clustering :openshift: true +:portedToGlow: true [abstract] The `ejb-txn-remote-call` quickstart demonstrates remote transactional EJB calls over two application servers of {productName}. diff --git a/ha-singleton-deployment/README.adoc b/ha-singleton-deployment/README.adoc index b79b87b10a..b45248ebbb 100644 --- a/ha-singleton-deployment/README.adoc +++ b/ha-singleton-deployment/README.adoc @@ -197,6 +197,9 @@ endif::[] :LinkJBDSGettingStarted: https://access.redhat.com/documentation/en-us/red_hat_codeready_studio/{JBDSVersion}/html-single/getting_started_with_codeready_studio_tools/ :JBDSGettingStartedBookName: Getting Started with CodeReady Studio Tools +// Enable Rendering of Glow configuration in plugin examples +:portedToGlow: true + = ha-singleton-deployment: Deploying Cluster-wide Singleton Services Using Singleton Deployments :author: Radoslav Husar :level: Advanced diff --git a/ha-singleton-service/README.adoc b/ha-singleton-service/README.adoc index 04d74f549a..4587bf773d 100644 --- a/ha-singleton-service/README.adoc +++ b/ha-singleton-service/README.adoc @@ -197,6 +197,9 @@ endif::[] :LinkJBDSGettingStarted: https://access.redhat.com/documentation/en-us/red_hat_codeready_studio/{JBDSVersion}/html-single/getting_started_with_codeready_studio_tools/ :JBDSGettingStartedBookName: Getting Started with CodeReady Studio Tools +// Enable Rendering of Glow configuration in plugin examples +:portedToGlow: true + = ha-singleton-service: Deploying Cluster-wide Singleton MSC Services :author: Radoslav Husar :level: Advanced diff --git a/helloworld-jms/README.adoc b/helloworld-jms/README.adoc index b22f24e76a..e5b7edb235 100644 --- a/helloworld-jms/README.adoc +++ b/helloworld-jms/README.adoc @@ -197,10 +197,14 @@ endif::[] :LinkJBDSGettingStarted: https://access.redhat.com/documentation/en-us/red_hat_codeready_studio/{JBDSVersion}/html-single/getting_started_with_codeready_studio_tools/ :JBDSGettingStartedBookName: Getting Started with CodeReady Studio Tools +// Enable Rendering of Glow configuration in plugin examples +:portedToGlow: true + = helloworld-jms: Helloworld JMS Example :author: Weston Price :level: Intermediate :technologies: JMS +:portedToGlow: true [abstract] The `helloworld-jms` quickstart demonstrates the use of external JMS clients with {productName}. diff --git a/helloworld-mdb/README.adoc b/helloworld-mdb/README.adoc index 02453c82ee..b118aa342d 100644 --- a/helloworld-mdb/README.adoc +++ b/helloworld-mdb/README.adoc @@ -197,11 +197,15 @@ endif::[] :LinkJBDSGettingStarted: https://access.redhat.com/documentation/en-us/red_hat_codeready_studio/{JBDSVersion}/html-single/getting_started_with_codeready_studio_tools/ :JBDSGettingStartedBookName: Getting Started with CodeReady Studio Tools +// Enable Rendering of Glow configuration in plugin examples +:portedToGlow: true + = helloworld-mdb: Helloworld Using an MDB (Message-Driven Bean) :author: Serge Pagop, Andy Taylor, Jeff Mesnil :level: Intermediate :technologies: JMS, EJB, MDB :openshift: true +:portedToGlow: true [abstract] The `helloworld-mdb` quickstart uses JMS and EJB Message-Driven Bean (MDB) to create and deploy JMS topic and queue resources in {productName}. diff --git a/helloworld-mutual-ssl-secured/README.adoc b/helloworld-mutual-ssl-secured/README.adoc index 748656751e..3e537909e9 100644 --- a/helloworld-mutual-ssl-secured/README.adoc +++ b/helloworld-mutual-ssl-secured/README.adoc @@ -197,6 +197,9 @@ endif::[] :LinkJBDSGettingStarted: https://access.redhat.com/documentation/en-us/red_hat_codeready_studio/{JBDSVersion}/html-single/getting_started_with_codeready_studio_tools/ :JBDSGettingStartedBookName: Getting Started with CodeReady Studio Tools +// Enable Rendering of Glow configuration in plugin examples +:portedToGlow: true + = helloworld-mutual-ssl-secured: Securing a Web Application with Mutual (two-way) TLS Configuration and Role-based Access Control :author: Giriraj Sharma, Stefan Guilhen :level: Intermediate diff --git a/helloworld-mutual-ssl/README.adoc b/helloworld-mutual-ssl/README.adoc index 2df75331ff..f70c1d194e 100644 --- a/helloworld-mutual-ssl/README.adoc +++ b/helloworld-mutual-ssl/README.adoc @@ -197,6 +197,9 @@ endif::[] :LinkJBDSGettingStarted: https://access.redhat.com/documentation/en-us/red_hat_codeready_studio/{JBDSVersion}/html-single/getting_started_with_codeready_studio_tools/ :JBDSGettingStartedBookName: Getting Started with CodeReady Studio Tools +// Enable Rendering of Glow configuration in plugin examples +:portedToGlow: true + = helloworld-mutual-ssl: {productName} Mutual TLS(two-way) Configuration Example :author: Giriraj Sharma, Stefan Guilhen :level: Intermediate diff --git a/helloworld-singleton/README.adoc b/helloworld-singleton/README.adoc index fc0806ddf7..3af2c4d8cd 100644 --- a/helloworld-singleton/README.adoc +++ b/helloworld-singleton/README.adoc @@ -197,11 +197,15 @@ endif::[] :LinkJBDSGettingStarted: https://access.redhat.com/documentation/en-us/red_hat_codeready_studio/{JBDSVersion}/html-single/getting_started_with_codeready_studio_tools/ :JBDSGettingStartedBookName: Getting Started with CodeReady Studio Tools +// Enable Rendering of Glow configuration in plugin examples +:portedToGlow: true + = helloworld-singleton: Helloworld Using a Singleton EJB :author: Serge Pagop :level: Beginner :technologies: EJB, Singleton :openshift: true +:portedToGlow: true [abstract] The `helloworld-singleton` quickstart demonstrates an EJB Singleton Bean that is instantiated once and maintains state for the life of the session. diff --git a/helloworld-ws/README.adoc b/helloworld-ws/README.adoc index 5aba20f190..c40f55c9c1 100644 --- a/helloworld-ws/README.adoc +++ b/helloworld-ws/README.adoc @@ -197,11 +197,15 @@ endif::[] :LinkJBDSGettingStarted: https://access.redhat.com/documentation/en-us/red_hat_codeready_studio/{JBDSVersion}/html-single/getting_started_with_codeready_studio_tools/ :JBDSGettingStartedBookName: Getting Started with CodeReady Studio Tools +// Enable Rendering of Glow configuration in plugin examples +:portedToGlow: true + = helloworld-ws: Hello World JAX-WS Web Service :author: Lee Newson :level: Beginner :technologies: JAX-WS :openshift: true +:portedToGlow: true [abstract] The `helloworld-ws` quickstart demonstrates a simple Hello World application, bundled and deployed as a WAR, that uses JAX-WS to say Hello. diff --git a/helloworld/README.adoc b/helloworld/README.adoc index d5f568186f..d296ae50bb 100644 --- a/helloworld/README.adoc +++ b/helloworld/README.adoc @@ -197,11 +197,15 @@ endif::[] :LinkJBDSGettingStarted: https://access.redhat.com/documentation/en-us/red_hat_codeready_studio/{JBDSVersion}/html-single/getting_started_with_codeready_studio_tools/ :JBDSGettingStartedBookName: Getting Started with CodeReady Studio Tools +// Enable Rendering of Glow configuration in plugin examples +:portedToGlow: true + = helloworld: Helloworld Example :author: Pete Muir :level: Beginner :technologies: Servlet :openshift: true +:portedToGlow: true [abstract] The `helloworld` quickstart demonstrates the use of Servlet 6 and is a good starting point to verify {productName} is configured correctly. diff --git a/hibernate/README.adoc b/hibernate/README.adoc index 7f2a53676d..cba8d79acf 100644 --- a/hibernate/README.adoc +++ b/hibernate/README.adoc @@ -197,11 +197,15 @@ endif::[] :LinkJBDSGettingStarted: https://access.redhat.com/documentation/en-us/red_hat_codeready_studio/{JBDSVersion}/html-single/getting_started_with_codeready_studio_tools/ :JBDSGettingStartedBookName: Getting Started with CodeReady Studio Tools +// Enable Rendering of Glow configuration in plugin examples +:portedToGlow: true + = hibernate: How to Use Hibernate in an Application :author: Madhumita Sadhukhan :level: Intermediate :technologies: Hibernate :openshift: true +:portedToGlow: true [abstract] The `hibernate` quickstart demonstrates how to use Hibernate ORM 6 over Persistence, using Bean Validation, and Enterprise Beans. diff --git a/http-custom-mechanism/README.adoc b/http-custom-mechanism/README.adoc index bc518b09b7..76d3156d17 100644 --- a/http-custom-mechanism/README.adoc +++ b/http-custom-mechanism/README.adoc @@ -197,10 +197,14 @@ endif::[] :LinkJBDSGettingStarted: https://access.redhat.com/documentation/en-us/red_hat_codeready_studio/{JBDSVersion}/html-single/getting_started_with_codeready_studio_tools/ :JBDSGettingStartedBookName: Getting Started with CodeReady Studio Tools +// Enable Rendering of Glow configuration in plugin examples +:portedToGlow: true + = http-custom-mechanism: Create a custom HTTP authorization mechanism :author: Darran Lofthouse :level: Intermediate :technologies: EJB, Security +:portedToGlow: true [abstract] The `http-custom-mechanism` quickstart demonstrates how to implement a custom HTTP authentication mechanism that can be registered with Elytron. diff --git a/jaxrs-client/README.adoc b/jaxrs-client/README.adoc index 22501646d5..b3fa5ff447 100644 --- a/jaxrs-client/README.adoc +++ b/jaxrs-client/README.adoc @@ -197,11 +197,15 @@ endif::[] :LinkJBDSGettingStarted: https://access.redhat.com/documentation/en-us/red_hat_codeready_studio/{JBDSVersion}/html-single/getting_started_with_codeready_studio_tools/ :JBDSGettingStartedBookName: Getting Started with CodeReady Studio Tools +// Enable Rendering of Glow configuration in plugin examples +:portedToGlow: true + = jaxrs-client: Jakarta REST Client API example :author: Rafael Benevides :level: Beginner :technologies: JAX-RS :openshift: true +:portedToGlow: true [abstract] The `jaxrs-client` quickstart demonstrates Jakarta REST Client API, which interacts with a Jakarta REST Web service that runs on {productName}. diff --git a/jaxrs-jwt/README.adoc b/jaxrs-jwt/README.adoc index eca7efc66d..901580ea62 100644 --- a/jaxrs-jwt/README.adoc +++ b/jaxrs-jwt/README.adoc @@ -197,10 +197,14 @@ endif::[] :LinkJBDSGettingStarted: https://access.redhat.com/documentation/en-us/red_hat_codeready_studio/{JBDSVersion}/html-single/getting_started_with_codeready_studio_tools/ :JBDSGettingStartedBookName: Getting Started with CodeReady Studio Tools +// Enable Rendering of Glow configuration in plugin examples +:portedToGlow: true + = jaxrs-jwt: Jakarta REST secured using JSON Web Tokens (JWTs) :author: Martin Mazanek :level: Intermediate :technologies: JAX-RS, Security +:portedToGlow: true [abstract] The `jaxrs-jwt` quickstart demonstrates a Jakarta REST secured application using JSON Web Tokens (JWT) with Elytron. diff --git a/jaxws-ejb/README.adoc b/jaxws-ejb/README.adoc index 23ff6ed1de..234b2f3dea 100644 --- a/jaxws-ejb/README.adoc +++ b/jaxws-ejb/README.adoc @@ -197,10 +197,14 @@ endif::[] :LinkJBDSGettingStarted: https://access.redhat.com/documentation/en-us/red_hat_codeready_studio/{JBDSVersion}/html-single/getting_started_with_codeready_studio_tools/ :JBDSGettingStartedBookName: Getting Started with CodeReady Studio Tools +// Enable Rendering of Glow configuration in plugin examples +:portedToGlow: true + = jaxws-ejb: An EJB JAX-WS Web Service :author: R Searls :level: Beginner :technologies: JAX-WS +:portedToGlow: true [abstract] The `jaxws-ejb` quickstart is a working example of the web service endpoint created from an EJB. diff --git a/jaxws-retail/README.adoc b/jaxws-retail/README.adoc index d766cd9e83..9fcba57d73 100644 --- a/jaxws-retail/README.adoc +++ b/jaxws-retail/README.adoc @@ -197,10 +197,14 @@ endif::[] :LinkJBDSGettingStarted: https://access.redhat.com/documentation/en-us/red_hat_codeready_studio/{JBDSVersion}/html-single/getting_started_with_codeready_studio_tools/ :JBDSGettingStartedBookName: Getting Started with CodeReady Studio Tools +// Enable Rendering of Glow configuration in plugin examples +:portedToGlow: true + = jaxws-retail: A Retail JAX-WS Web Service :author: R Searls :level: Beginner :technologies: JAX-WS +:portedToGlow: true [abstract] The `jaxws-retail` quickstart is a working example of a simple web service endpoint. diff --git a/jsonp/README.adoc b/jsonp/README.adoc index 4b008ac0ec..4e65b27ac2 100644 --- a/jsonp/README.adoc +++ b/jsonp/README.adoc @@ -197,11 +197,15 @@ endif::[] :LinkJBDSGettingStarted: https://access.redhat.com/documentation/en-us/red_hat_codeready_studio/{JBDSVersion}/html-single/getting_started_with_codeready_studio_tools/ :JBDSGettingStartedBookName: Getting Started with CodeReady Studio Tools +// Enable Rendering of Glow configuration in plugin examples +:portedToGlow: true + = jsonp: JSON-P Object-based JSON generation and Stream-based JSON consuming :author: Rafael Benevides :level: Beginner :technologies: CDI, JSF, JSON-P :openshift: true +:portedToGlow: true [abstract] The `jsonp` quickstart demonstrates how to use the JSON-P API to produce object-based structures and then parse and consume them as stream-based JSON strings. diff --git a/jta-crash-rec/README.adoc b/jta-crash-rec/README.adoc index 1ae8c59353..b3251e426a 100644 --- a/jta-crash-rec/README.adoc +++ b/jta-crash-rec/README.adoc @@ -197,6 +197,9 @@ endif::[] :LinkJBDSGettingStarted: https://access.redhat.com/documentation/en-us/red_hat_codeready_studio/{JBDSVersion}/html-single/getting_started_with_codeready_studio_tools/ :JBDSGettingStartedBookName: Getting Started with CodeReady Studio Tools +// Enable Rendering of Glow configuration in plugin examples +:portedToGlow: true + = jta-crash-rec: Example of JTA Crash Recovery :author: Mike Musgrove :level: Advanced diff --git a/jts/README.adoc b/jts/README.adoc index 7de25a664a..db2d3522be 100644 --- a/jts/README.adoc +++ b/jts/README.adoc @@ -197,6 +197,9 @@ endif::[] :LinkJBDSGettingStarted: https://access.redhat.com/documentation/en-us/red_hat_codeready_studio/{JBDSVersion}/html-single/getting_started_with_codeready_studio_tools/ :JBDSGettingStartedBookName: Getting Started with CodeReady Studio Tools +// Enable Rendering of Glow configuration in plugin examples +:portedToGlow: true + = jts: Java Transaction Service - Distributed EJB Transactions :author: Tom Jenkinson :level: Intermediate diff --git a/kitchensink/README.adoc b/kitchensink/README.adoc index 1876d4cdbe..5f2f9261c5 100644 --- a/kitchensink/README.adoc +++ b/kitchensink/README.adoc @@ -197,11 +197,15 @@ endif::[] :LinkJBDSGettingStarted: https://access.redhat.com/documentation/en-us/red_hat_codeready_studio/{JBDSVersion}/html-single/getting_started_with_codeready_studio_tools/ :JBDSGettingStartedBookName: Getting Started with CodeReady Studio Tools +// Enable Rendering of Glow configuration in plugin examples +:portedToGlow: true + = kitchensink: Assortment of technologies :author: Pete Muir :level: Intermediate :technologies: CDI, JSF, JPA, EJB, JAX-RS, BV :openshift: true +:portedToGlow: true [abstract] The `kitchensink` quickstart demonstrates a localized {javaVersion} web-enabled database application using JSF, CDI, EJB, JPA, and Bean Validation. diff --git a/logging/README.adoc b/logging/README.adoc index b011e5e58b..c77d730301 100644 --- a/logging/README.adoc +++ b/logging/README.adoc @@ -197,10 +197,14 @@ endif::[] :LinkJBDSGettingStarted: https://access.redhat.com/documentation/en-us/red_hat_codeready_studio/{JBDSVersion}/html-single/getting_started_with_codeready_studio_tools/ :JBDSGettingStartedBookName: Getting Started with CodeReady Studio Tools +// Enable Rendering of Glow configuration in plugin examples +:portedToGlow: true + = logging: Example That Sets Up Different Logging Levels :author: Joel Tosi :level: Intermediate :technologies: Logging +:portedToGlow: true [abstract] The `logging` quickstart demonstrates how to configure different logging levels in {productName}. diff --git a/mail/README.adoc b/mail/README.adoc index d841faa952..311481e0b2 100644 --- a/mail/README.adoc +++ b/mail/README.adoc @@ -197,10 +197,14 @@ endif::[] :LinkJBDSGettingStarted: https://access.redhat.com/documentation/en-us/red_hat_codeready_studio/{JBDSVersion}/html-single/getting_started_with_codeready_studio_tools/ :JBDSGettingStartedBookName: Getting Started with CodeReady Studio Tools +// Enable Rendering of Glow configuration in plugin examples +:portedToGlow: true + = mail: E-Mail Example using CDI and JSF :author: Joel Tosi :level: Beginner :technologies: JavaMail, CDI, JSF +:portedToGlow: true [abstract] The `mail` quickstart demonstrates how to send and receive emails using CDI and JSF and with custom Mail provider configured in {productName}. diff --git a/messaging-clustering-singleton/README.adoc b/messaging-clustering-singleton/README.adoc index c546b603b5..15a32d8d86 100644 --- a/messaging-clustering-singleton/README.adoc +++ b/messaging-clustering-singleton/README.adoc @@ -197,6 +197,9 @@ endif::[] :LinkJBDSGettingStarted: https://access.redhat.com/documentation/en-us/red_hat_codeready_studio/{JBDSVersion}/html-single/getting_started_with_codeready_studio_tools/ :JBDSGettingStartedBookName: Getting Started with CodeReady Studio Tools +// Enable Rendering of Glow configuration in plugin examples +:portedToGlow: true + = messaging-clustering-singleton: Messaging Example that Demonstrates Clustering :author: Flavia Rainone, Jess Sightler :level: Advanced diff --git a/micrometer/README.adoc b/micrometer/README.adoc index 778ee630ee..b99f72c772 100644 --- a/micrometer/README.adoc +++ b/micrometer/README.adoc @@ -197,11 +197,15 @@ endif::[] :LinkJBDSGettingStarted: https://access.redhat.com/documentation/en-us/red_hat_codeready_studio/{JBDSVersion}/html-single/getting_started_with_codeready_studio_tools/ :JBDSGettingStartedBookName: Getting Started with CodeReady Studio Tools +// Enable Rendering of Glow configuration in plugin examples +:portedToGlow: true + = micrometer: Micrometer QuickStart :author: Jason Lee :level: Beginner :technologies: Micrometer :openshift: true +:portedToGlow: true [abstract] The `micrometer` quickstart demonstrates the use of the Micrometer library in {productName}. diff --git a/microprofile-config/README.adoc b/microprofile-config/README.adoc index a64f20c240..c63db9eae3 100644 --- a/microprofile-config/README.adoc +++ b/microprofile-config/README.adoc @@ -197,10 +197,14 @@ endif::[] :LinkJBDSGettingStarted: https://access.redhat.com/documentation/en-us/red_hat_codeready_studio/{JBDSVersion}/html-single/getting_started_with_codeready_studio_tools/ :JBDSGettingStartedBookName: Getting Started with CodeReady Studio Tools +// Enable Rendering of Glow configuration in plugin examples +:portedToGlow: true + = microprofile-config: MicroProfile Config QuickStart :author: Martin Stefanko :level: Beginner :technologies: MicroProfile Config +:portedToGlow: true [abstract] The `microprofile-config` quickstart demonstrates the use of the MicroProfile Config specification in {productName}. diff --git a/microprofile-fault-tolerance/README.adoc b/microprofile-fault-tolerance/README.adoc index 048f45a426..34cf1a795d 100644 --- a/microprofile-fault-tolerance/README.adoc +++ b/microprofile-fault-tolerance/README.adoc @@ -206,10 +206,14 @@ endif::[] :LinkJBDSGettingStarted: https://access.redhat.com/documentation/en-us/red_hat_codeready_studio/{JBDSVersion}/html-single/getting_started_with_codeready_studio_tools/ :JBDSGettingStartedBookName: Getting Started with CodeReady Studio Tools +// Enable Rendering of Glow configuration in plugin examples +:portedToGlow: true + = microprofile-fault-tolerance: MicroProfile Fault Tolerance :author: Radoslav Husar, Tomas Hofman :level: Intermediate :technologies: MicroProfile, Fault Tolerance +:portedToGlow: true [abstract] The `microprofile-fault-tolerance` quickstart demonstrates how to use Eclipse MicroProfile Fault Tolerance in {productName}. diff --git a/microprofile-health/README.adoc b/microprofile-health/README.adoc index 747ddd4077..87a8d02813 100644 --- a/microprofile-health/README.adoc +++ b/microprofile-health/README.adoc @@ -197,6 +197,9 @@ endif::[] :LinkJBDSGettingStarted: https://access.redhat.com/documentation/en-us/red_hat_codeready_studio/{JBDSVersion}/html-single/getting_started_with_codeready_studio_tools/ :JBDSGettingStartedBookName: Getting Started with CodeReady Studio Tools +// Enable Rendering of Glow configuration in plugin examples +:portedToGlow: true + = microprofile-health: MicroProfile Health QuickStart :author: Martin Stefanko :level: Beginner @@ -213,6 +216,7 @@ The `microprofile-health` quickstart demonstrates the use of the MicroProfile He :archiveType: war :archiveName: {artifactId} :include-management-port: http://localhost:9990/health/live +:portedToGlow: true == What is it? diff --git a/microprofile-jwt/README.adoc b/microprofile-jwt/README.adoc index a76e225ab1..454cb44511 100644 --- a/microprofile-jwt/README.adoc +++ b/microprofile-jwt/README.adoc @@ -197,6 +197,9 @@ endif::[] :LinkJBDSGettingStarted: https://access.redhat.com/documentation/en-us/red_hat_codeready_studio/{JBDSVersion}/html-single/getting_started_with_codeready_studio_tools/ :JBDSGettingStartedBookName: Getting Started with CodeReady Studio Tools +// Enable Rendering of Glow configuration in plugin examples +:portedToGlow: true + = micro-profile-jwt: MicroProfile JWT QuickStart :author: Darran Lofthouse :level: Intermediate @@ -208,6 +211,7 @@ The `microprofile-jwt` quickstart demonstrates the use of the MicroProfile JWT s :standalone-server-type: microprofile :archiveType: war :archiveName: microprofile-jwt.war +:portedToGlow: true == What is it? diff --git a/microprofile-lra/README.adoc b/microprofile-lra/README.adoc index ad24e7bc59..8e49d6ea97 100644 --- a/microprofile-lra/README.adoc +++ b/microprofile-lra/README.adoc @@ -197,6 +197,9 @@ endif::[] :LinkJBDSGettingStarted: https://access.redhat.com/documentation/en-us/red_hat_codeready_studio/{JBDSVersion}/html-single/getting_started_with_codeready_studio_tools/ :JBDSGettingStartedBookName: Getting Started with CodeReady Studio Tools +// Enable Rendering of Glow configuration in plugin examples +:portedToGlow: true + = microprofile-lra: MicroProfile LRA QuickStart :author: Martin Stefanko :level: Beginner @@ -216,6 +219,7 @@ The `microprofile-lra` quickstart demonstrates the use of the MicroProfile LRA s :custom-openshift-layers: :extra-openshift-test-arguments: :requires-http-route: +:portedToGlow: true == What is it? diff --git a/microprofile-openapi/README.adoc b/microprofile-openapi/README.adoc index 0fbb0daacf..79aaa6e784 100644 --- a/microprofile-openapi/README.adoc +++ b/microprofile-openapi/README.adoc @@ -197,10 +197,14 @@ endif::[] :LinkJBDSGettingStarted: https://access.redhat.com/documentation/en-us/red_hat_codeready_studio/{JBDSVersion}/html-single/getting_started_with_codeready_studio_tools/ :JBDSGettingStartedBookName: Getting Started with CodeReady Studio Tools +// Enable Rendering of Glow configuration in plugin examples +:portedToGlow: true + = microprofile-openapi: MicroProfile OpenAPI QuickStart :author: Paul Ferraro :level: Beginner :technologies: MicroProfile OpenAPI +:portedToGlow: true [abstract] This guide demonstrate how to use the MicroProfile OpenAPI functionality in {productName} to expose an OpenAPI document for a simple REST application. diff --git a/microprofile-reactive-messaging-kafka/README.adoc b/microprofile-reactive-messaging-kafka/README.adoc index 08ecc6b125..c1ed6ca4bb 100644 --- a/microprofile-reactive-messaging-kafka/README.adoc +++ b/microprofile-reactive-messaging-kafka/README.adoc @@ -197,6 +197,9 @@ endif::[] :LinkJBDSGettingStarted: https://access.redhat.com/documentation/en-us/red_hat_codeready_studio/{JBDSVersion}/html-single/getting_started_with_codeready_studio_tools/ :JBDSGettingStartedBookName: Getting Started with CodeReady Studio Tools +// Enable Rendering of Glow configuration in plugin examples +:portedToGlow: true + = microprofile-reactive-messaging-kafka: MicroProfile Reactive Messaging with Kafka QuickStart :author: Kabir Khan :level: Beginner @@ -211,6 +214,7 @@ The `microprofile-reactive-messaging-kafka` quickstart demonstrates the use of t :helm-install-prerequisites: ../microprofile-reactive-messaging-kafka/helm-install-prerequisites.adoc :helm-app-name: mp-rm-qs :strimzi-version: v1beta2 +:portedToGlow: true == What is it? diff --git a/microprofile-rest-client/README.adoc b/microprofile-rest-client/README.adoc index 755a02fc8b..718c4a2cf8 100644 --- a/microprofile-rest-client/README.adoc +++ b/microprofile-rest-client/README.adoc @@ -197,6 +197,9 @@ endif::[] :LinkJBDSGettingStarted: https://access.redhat.com/documentation/en-us/red_hat_codeready_studio/{JBDSVersion}/html-single/getting_started_with_codeready_studio_tools/ :JBDSGettingStartedBookName: Getting Started with CodeReady Studio Tools +// Enable Rendering of Glow configuration in plugin examples +:portedToGlow: true + = microprofile-rest-client: MicroProfile REST Client QuickStart :author: Martin Stefanko :level: Beginner @@ -209,6 +212,7 @@ The `microprofile-rest-client` quickstart demonstrates the use of the MicroProfi :archiveType: jar :archiveName: {artifactId} :rest-client-qs: +:portedToGlow: true == What is it? diff --git a/numberguess/README.adoc b/numberguess/README.adoc index aaed33dadd..9fb8773d22 100644 --- a/numberguess/README.adoc +++ b/numberguess/README.adoc @@ -197,11 +197,15 @@ endif::[] :LinkJBDSGettingStarted: https://access.redhat.com/documentation/en-us/red_hat_codeready_studio/{JBDSVersion}/html-single/getting_started_with_codeready_studio_tools/ :JBDSGettingStartedBookName: Getting Started with CodeReady Studio Tools +// Enable Rendering of Glow configuration in plugin examples +:portedToGlow: true + = numberguess: Example Using CDI and JSF :author: Pete Muir :level: Beginner :technologies: CDI, JSF :openshift: true +:portedToGlow: true [abstract] The `numberguess` quickstart demonstrates the use of CDI (Contexts and Dependency Injection) and JSF (JavaServer Faces) in {productName}. diff --git a/opentelemetry-tracing/README.adoc b/opentelemetry-tracing/README.adoc index 2f05cd1f23..4ded92abd1 100644 --- a/opentelemetry-tracing/README.adoc +++ b/opentelemetry-tracing/README.adoc @@ -197,6 +197,9 @@ endif::[] :LinkJBDSGettingStarted: https://access.redhat.com/documentation/en-us/red_hat_codeready_studio/{JBDSVersion}/html-single/getting_started_with_codeready_studio_tools/ :JBDSGettingStartedBookName: Getting Started with CodeReady Studio Tools +// Enable Rendering of Glow configuration in plugin examples +:portedToGlow: true + = opentelemetry-tracing: OpenTelemetry Tracing QuickStart :author: Jason Lee :level: Beginner @@ -210,6 +213,7 @@ The `opentelemetry-tracing` quickstart demonstrates the use of the OpenTelemetry :archiveType: war :archiveName: {artifactId} :restoreScriptName: restore-configuration.cli +:portedToGlow: true == What is it? diff --git a/remote-helloworld-mdb/README.adoc b/remote-helloworld-mdb/README.adoc index b31a56e452..8b0acddeea 100644 --- a/remote-helloworld-mdb/README.adoc +++ b/remote-helloworld-mdb/README.adoc @@ -197,11 +197,15 @@ endif::[] :LinkJBDSGettingStarted: https://access.redhat.com/documentation/en-us/red_hat_codeready_studio/{JBDSVersion}/html-single/getting_started_with_codeready_studio_tools/ :JBDSGettingStartedBookName: Getting Started with CodeReady Studio Tools +// Enable Rendering of Glow configuration in plugin examples +:portedToGlow: true + = remote-helloworld-mdb: Helloworld Using an MDB (Message-Driven Bean) and a Remote Artemis broker :author: Serge Pagop, Andy Taylor, Jeff Mesnil :level: Intermediate :technologies: JMS, EJB, MDB :openshift: true +:portedToGlow: true :standalone-server-type: full :archiveType: war diff --git a/security-domain-to-domain/README.adoc b/security-domain-to-domain/README.adoc index 4753e0ef14..195cb8100b 100644 --- a/security-domain-to-domain/README.adoc +++ b/security-domain-to-domain/README.adoc @@ -197,6 +197,9 @@ endif::[] :LinkJBDSGettingStarted: https://access.redhat.com/documentation/en-us/red_hat_codeready_studio/{JBDSVersion}/html-single/getting_started_with_codeready_studio_tools/ :JBDSGettingStartedBookName: Getting Started with CodeReady Studio Tools +// Enable Rendering of Glow configuration in plugin examples +:portedToGlow: true + = security-domain-to-domain: Identity propagation to an EJB using different security domains :author: Darran Lofthouse :level: Advanced diff --git a/servlet-async/README.adoc b/servlet-async/README.adoc index 5abe1f93c7..7d3d7cbd87 100644 --- a/servlet-async/README.adoc +++ b/servlet-async/README.adoc @@ -197,11 +197,15 @@ endif::[] :LinkJBDSGettingStarted: https://access.redhat.com/documentation/en-us/red_hat_codeready_studio/{JBDSVersion}/html-single/getting_started_with_codeready_studio_tools/ :JBDSGettingStartedBookName: Getting Started with CodeReady Studio Tools +// Enable Rendering of Glow configuration in plugin examples +:portedToGlow: true + = servlet-async: How to Write an Asynchronous Servlet :author: Christian Sadilek :level: Intermediate :technologies: Asynchronous Servlet, CDI, EJB :openshift: true +:portedToGlow: true [abstract] The `servlet-async` quickstart demonstrates how to use asynchronous servlets to detach long-running tasks and free up the request processing thread. diff --git a/servlet-filterlistener/README.adoc b/servlet-filterlistener/README.adoc index c0b2e41976..c5fa706c6b 100644 --- a/servlet-filterlistener/README.adoc +++ b/servlet-filterlistener/README.adoc @@ -197,11 +197,15 @@ endif::[] :LinkJBDSGettingStarted: https://access.redhat.com/documentation/en-us/red_hat_codeready_studio/{JBDSVersion}/html-single/getting_started_with_codeready_studio_tools/ :JBDSGettingStartedBookName: Getting Started with CodeReady Studio Tools +// Enable Rendering of Glow configuration in plugin examples +:portedToGlow: true + = servlet-filterlistener: How to Write Servlet Filters and Listeners :author: Jonathan Fuerth :level: Intermediate :technologies: Servlet Filter, Servlet Listener :openshift: true +:portedToGlow: true [abstract] The `servlet-filterlistener` quickstart demonstrates how to use Servlet filters and listeners in an application. diff --git a/servlet-security/README.adoc b/servlet-security/README.adoc index d3d2c057ed..e674d7db5f 100644 --- a/servlet-security/README.adoc +++ b/servlet-security/README.adoc @@ -197,11 +197,15 @@ endif::[] :LinkJBDSGettingStarted: https://access.redhat.com/documentation/en-us/red_hat_codeready_studio/{JBDSVersion}/html-single/getting_started_with_codeready_studio_tools/ :JBDSGettingStartedBookName: Getting Started with CodeReady Studio Tools +// Enable Rendering of Glow configuration in plugin examples +:portedToGlow: true + = servlet-security: Using Jakarta EE Declarative Security to Control Servlet Access :author: Sherif F. Makary, Pedro Igor, Stefan Guilhen :level: Intermediate :technologies: Servlet, Security :openshift: true +:portedToGlow: true [abstract] The `servlet-security` quickstart demonstrates the use of Jakarta EE declarative security to control access to Servlets and Security in {productName}. diff --git a/spring-resteasy/README.adoc b/spring-resteasy/README.adoc index f1351acb59..a948000918 100644 --- a/spring-resteasy/README.adoc +++ b/spring-resteasy/README.adoc @@ -197,12 +197,16 @@ endif::[] :LinkJBDSGettingStarted: https://access.redhat.com/documentation/en-us/red_hat_codeready_studio/{JBDSVersion}/html-single/getting_started_with_codeready_studio_tools/ :JBDSGettingStartedBookName: Getting Started with CodeReady Studio Tools +// Enable Rendering of Glow configuration in plugin examples +:portedToGlow: true + = spring-resteasy: Example Using Resteasy Spring Integration :author: Weinan Li , Paul Gier :level: Beginner :technologies: Resteasy, Spring :openshift: true :buildRequirements: Java 17 (Java SDK 17) or later and Maven 3.3.1 or later +:portedToGlow: true [abstract] The `spring-resteasy` quickstart demonstrates how to package and deploy a web application that includes resteasy-spring integration. diff --git a/tasks-jsf/README.adoc b/tasks-jsf/README.adoc index 899ff9badc..24bcfdd782 100644 --- a/tasks-jsf/README.adoc +++ b/tasks-jsf/README.adoc @@ -197,6 +197,9 @@ endif::[] :LinkJBDSGettingStarted: https://access.redhat.com/documentation/en-us/red_hat_codeready_studio/{JBDSVersion}/html-single/getting_started_with_codeready_studio_tools/ :JBDSGettingStartedBookName: Getting Started with CodeReady Studio Tools +// Enable Rendering of Glow configuration in plugin examples +:portedToGlow: true + = tasks-jsf: JSF, JPA quickstart :author: Lukas Fryc :level: Intermediate diff --git a/temperature-converter/README.adoc b/temperature-converter/README.adoc index 6dc87eb4ad..94664c7bd2 100644 --- a/temperature-converter/README.adoc +++ b/temperature-converter/README.adoc @@ -197,11 +197,15 @@ endif::[] :LinkJBDSGettingStarted: https://access.redhat.com/documentation/en-us/red_hat_codeready_studio/{JBDSVersion}/html-single/getting_started_with_codeready_studio_tools/ :JBDSGettingStartedBookName: Getting Started with CodeReady Studio Tools +// Enable Rendering of Glow configuration in plugin examples +:portedToGlow: true + = temperature-converter: Stateless Session EJB (SLSB) :author: Bruce Wolfe :level: Beginner :technologies: CDI, JSF, SLSB EJB :openshift: true +:portedToGlow: true [abstract] The `temperature-converter` quickstart does temperature conversion using an EJB Stateless Session Bean (SLSB), CDI, and a JSF front-end client. diff --git a/template/README.adoc b/template/README.adoc index 702c823120..096778a15d 100644 --- a/template/README.adoc +++ b/template/README.adoc @@ -197,6 +197,9 @@ endif::[] :LinkJBDSGettingStarted: https://access.redhat.com/documentation/en-us/red_hat_codeready_studio/{JBDSVersion}/html-single/getting_started_with_codeready_studio_tools/ :JBDSGettingStartedBookName: Getting Started with CodeReady Studio Tools +// Enable Rendering of Glow configuration in plugin examples +:portedToGlow: true + = How to Structure and Write a Quickstart README.adoc File == Introduction diff --git a/thread-racing/README.adoc b/thread-racing/README.adoc index 4d93d55e2a..340aebe6e1 100644 --- a/thread-racing/README.adoc +++ b/thread-racing/README.adoc @@ -197,11 +197,15 @@ endif::[] :LinkJBDSGettingStarted: https://access.redhat.com/documentation/en-us/red_hat_codeready_studio/{JBDSVersion}/html-single/getting_started_with_codeready_studio_tools/ :JBDSGettingStartedBookName: Getting Started with CodeReady Studio Tools +// Enable Rendering of Glow configuration in plugin examples +:portedToGlow: true + = thread-racing: A Jakarta EE thread racing web application :author: Eduardo Martins :level: Beginner :technologies: Batch, CDI, EE Concurrency, JAX-RS, JMS, JPA, JSON, Web Sockets :openshift: true +:portedToGlow: true [abstract] A thread racing web application that demonstrates technologies introduced or updated in the latest Jakarta EE specification. diff --git a/todo-backend/README.adoc b/todo-backend/README.adoc index a3ce177c2e..84637154b9 100644 --- a/todo-backend/README.adoc +++ b/todo-backend/README.adoc @@ -197,6 +197,9 @@ endif::[] :LinkJBDSGettingStarted: https://access.redhat.com/documentation/en-us/red_hat_codeready_studio/{JBDSVersion}/html-single/getting_started_with_codeready_studio_tools/ :JBDSGettingStartedBookName: Getting Started with CodeReady Studio Tools +// Enable Rendering of Glow configuration in plugin examples +:portedToGlow: true + = todo-backend: quickstart for backend deployment on OpenShift :toc: left :icons: font @@ -209,6 +212,7 @@ endif::[] :archiveType: war :useHelmChartDir: true :helm-install-prerequisites: ../todo-backend/helm-install-prerequisites.adoc +:portedToGlow: true [abstract] The `todo-backend` quickstart demonstrates how to implement a backend that exposes a HTTP API with JAX-RS diff --git a/websocket-endpoint/README.adoc b/websocket-endpoint/README.adoc index c3a43bd314..13a5c24552 100644 --- a/websocket-endpoint/README.adoc +++ b/websocket-endpoint/README.adoc @@ -197,11 +197,15 @@ endif::[] :LinkJBDSGettingStarted: https://access.redhat.com/documentation/en-us/red_hat_codeready_studio/{JBDSVersion}/html-single/getting_started_with_codeready_studio_tools/ :JBDSGettingStartedBookName: Getting Started with CodeReady Studio Tools +// Enable Rendering of Glow configuration in plugin examples +:portedToGlow: true + = websocket-endpoint: Web application using WebSockets and JSON-P :author: Rafael Benevides :level: Beginner :technologies: CDI, WebSocket, JSON-P :openshift: true +:portedToGlow: true [abstract] Shows how to use WebSockets with JSON to broadcast information to all open WebSocket sessions in {productName}. diff --git a/websocket-hello/README.adoc b/websocket-hello/README.adoc index 56f74663f8..f370ddaa24 100644 --- a/websocket-hello/README.adoc +++ b/websocket-hello/README.adoc @@ -197,11 +197,15 @@ endif::[] :LinkJBDSGettingStarted: https://access.redhat.com/documentation/en-us/red_hat_codeready_studio/{JBDSVersion}/html-single/getting_started_with_codeready_studio_tools/ :JBDSGettingStartedBookName: Getting Started with CodeReady Studio Tools +// Enable Rendering of Glow configuration in plugin examples +:portedToGlow: true + = websocket-hello: A simple WebSocket application :author: Sande Gilda, Emmanuel Hugonett :level: Beginner :technologies: WebSocket, CDI, JSF :openshift: true +:portedToGlow: true [abstract] The `websocket-hello` quickstart demonstrates how to create a simple WebSocket application. diff --git a/wsat-simple/README.adoc b/wsat-simple/README.adoc index 6ecfe1c195..5f7cc74015 100644 --- a/wsat-simple/README.adoc +++ b/wsat-simple/README.adoc @@ -197,6 +197,9 @@ endif::[] :LinkJBDSGettingStarted: https://access.redhat.com/documentation/en-us/red_hat_codeready_studio/{JBDSVersion}/html-single/getting_started_with_codeready_studio_tools/ :JBDSGettingStartedBookName: Getting Started with CodeReady Studio Tools +// Enable Rendering of Glow configuration in plugin examples +:portedToGlow: true + = wsat-simple: WS-AT (WS-AtomicTransaction) - Simple :author: Paul Robinson :level: Intermediate diff --git a/wsba-coordinator-completion-simple/README.adoc b/wsba-coordinator-completion-simple/README.adoc index 60faaeb41f..a576c7a9cf 100644 --- a/wsba-coordinator-completion-simple/README.adoc +++ b/wsba-coordinator-completion-simple/README.adoc @@ -197,6 +197,9 @@ endif::[] :LinkJBDSGettingStarted: https://access.redhat.com/documentation/en-us/red_hat_codeready_studio/{JBDSVersion}/html-single/getting_started_with_codeready_studio_tools/ :JBDSGettingStartedBookName: Getting Started with CodeReady Studio Tools +// Enable Rendering of Glow configuration in plugin examples +:portedToGlow: true + = wsba-coordinator-completion-simple: Example of a WS-BA Enabled JAX-WS Web Service :author: Paul Robinson :level: Intermediate diff --git a/wsba-participant-completion-simple/README.adoc b/wsba-participant-completion-simple/README.adoc index a3e704d147..8a9204209d 100644 --- a/wsba-participant-completion-simple/README.adoc +++ b/wsba-participant-completion-simple/README.adoc @@ -197,6 +197,9 @@ endif::[] :LinkJBDSGettingStarted: https://access.redhat.com/documentation/en-us/red_hat_codeready_studio/{JBDSVersion}/html-single/getting_started_with_codeready_studio_tools/ :JBDSGettingStartedBookName: Getting Started with CodeReady Studio Tools +// Enable Rendering of Glow configuration in plugin examples +:portedToGlow: true + = wsba-participant-completion-simple: Deployment of a WS-BA enabled JAX-WS Web Service :author: Paul Robinson :level: Intermediate From 8e1f83e68f744c4eb368c140304b338568b80f81 Mon Sep 17 00:00:00 2001 From: Kabir Khan Date: Fri, 26 Jan 2024 12:20:50 +0000 Subject: [PATCH 14/26] Update version to 31.0.0.Final-glow-preview --- batch-processing/pom.xml | 2 +- bmt/pom.xml | 2 +- cmt/pom.xml | 2 +- contacts-jquerymobile/functional-tests/pom.xml | 2 +- contacts-jquerymobile/pom.xml | 2 +- dist/pom.xml | 2 +- ee-security/pom.xml | 2 +- ejb-multi-server/app-main/ear/pom.xml | 2 +- ejb-multi-server/app-main/ejb/pom.xml | 2 +- ejb-multi-server/app-main/pom.xml | 2 +- ejb-multi-server/app-main/web/pom.xml | 2 +- ejb-multi-server/app-one/ear/pom.xml | 2 +- ejb-multi-server/app-one/ejb/pom.xml | 2 +- ejb-multi-server/app-one/pom.xml | 2 +- ejb-multi-server/app-two/ear/pom.xml | 2 +- ejb-multi-server/app-two/ejb/pom.xml | 2 +- ejb-multi-server/app-two/pom.xml | 2 +- ejb-multi-server/app-web/pom.xml | 2 +- ejb-multi-server/client/pom.xml | 2 +- ejb-multi-server/pom.xml | 2 +- ejb-remote/pom.xml | 2 +- ejb-security-context-propagation/pom.xml | 2 +- ejb-security-programmatic-auth/pom.xml | 2 +- ejb-throws-exception/ear/pom.xml | 2 +- ejb-throws-exception/ejb-api/pom.xml | 2 +- ejb-throws-exception/ejb/pom.xml | 2 +- ejb-throws-exception/pom.xml | 2 +- ejb-throws-exception/web/pom.xml | 2 +- ejb-timer/pom.xml | 2 +- ejb-txn-remote-call/client/pom.xml | 2 +- ejb-txn-remote-call/pom.xml | 2 +- ejb-txn-remote-call/server/pom.xml | 2 +- ha-singleton-deployment/pom.xml | 2 +- ha-singleton-service/pom.xml | 2 +- helloworld-jms/pom.xml | 2 +- helloworld-mdb/pom.xml | 2 +- helloworld-mutual-ssl-secured/pom.xml | 2 +- helloworld-mutual-ssl/pom.xml | 2 +- helloworld-singleton/pom.xml | 2 +- helloworld-ws/pom.xml | 2 +- helloworld/pom.xml | 2 +- hibernate/pom.xml | 2 +- http-custom-mechanism/custom-module/pom.xml | 2 +- http-custom-mechanism/pom.xml | 2 +- http-custom-mechanism/webapp/pom.xml | 2 +- jaxrs-client/pom.xml | 2 +- jaxrs-jwt/pom.xml | 2 +- jaxws-ejb/pom.xml | 2 +- jsonp/pom.xml | 2 +- jta-crash-rec/pom.xml | 2 +- jts/application-component-1/pom.xml | 2 +- jts/application-component-2/pom.xml | 2 +- jts/pom.xml | 2 +- kitchensink/pom.xml | 2 +- logging/pom.xml | 2 +- mail/pom.xml | 2 +- messaging-clustering-singleton/pom.xml | 2 +- micrometer/pom.xml | 2 +- microprofile-config/pom.xml | 2 +- microprofile-fault-tolerance/pom.xml | 2 +- microprofile-health/pom.xml | 2 +- microprofile-jwt/pom.xml | 2 +- microprofile-lra/pom.xml | 2 +- microprofile-openapi/pom.xml | 2 +- microprofile-reactive-messaging-kafka/pom.xml | 2 +- microprofile-rest-client/pom.xml | 2 +- numberguess/pom.xml | 2 +- opentelemetry-tracing/pom.xml | 2 +- pom.xml | 2 +- remote-helloworld-mdb/pom.xml | 2 +- security-domain-to-domain/ear/pom.xml | 2 +- security-domain-to-domain/ejb/pom.xml | 2 +- security-domain-to-domain/pom.xml | 2 +- security-domain-to-domain/web/pom.xml | 2 +- servlet-async/pom.xml | 2 +- servlet-filterlistener/pom.xml | 2 +- servlet-security/pom.xml | 2 +- spring-resteasy/pom.xml | 2 +- tasks-jsf/pom.xml | 2 +- temperature-converter/pom.xml | 2 +- template/pom.xml | 2 +- thread-racing/pom.xml | 2 +- todo-backend/pom.xml | 2 +- websocket-endpoint/pom.xml | 2 +- websocket-hello/pom.xml | 2 +- wsat-simple/pom.xml | 2 +- wsba-coordinator-completion-simple/pom.xml | 2 +- wsba-participant-completion-simple/pom.xml | 2 +- 88 files changed, 88 insertions(+), 88 deletions(-) diff --git a/batch-processing/pom.xml b/batch-processing/pom.xml index 63271b7a13..156f7e9818 100644 --- a/batch-processing/pom.xml +++ b/batch-processing/pom.xml @@ -30,7 +30,7 @@ batch-processing - 31.0.0.Final + 31.0.0.Final-glow-preview war Quickstart: batch-processing Shows how to use a Chunk oriented batch processing diff --git a/bmt/pom.xml b/bmt/pom.xml index 7f121c8338..14539c16ab 100644 --- a/bmt/pom.xml +++ b/bmt/pom.xml @@ -30,7 +30,7 @@ bmt - 31.0.0.Final + 31.0.0.Final-glow-preview war Quickstart: bmt This project demonstrates how to use Bean Managed Transactions diff --git a/cmt/pom.xml b/cmt/pom.xml index 05951d66bf..be405b6ee6 100644 --- a/cmt/pom.xml +++ b/cmt/pom.xml @@ -29,7 +29,7 @@ cmt - 31.0.0.Final + 31.0.0.Final-glow-preview war Quickstart: cmt This project demonstrates how to use transactions managed by the container diff --git a/contacts-jquerymobile/functional-tests/pom.xml b/contacts-jquerymobile/functional-tests/pom.xml index 4441a8ffbd..8ec69e0591 100644 --- a/contacts-jquerymobile/functional-tests/pom.xml +++ b/contacts-jquerymobile/functional-tests/pom.xml @@ -28,7 +28,7 @@ contacts-jquerymobile-test-webdriver - 31.0.0.Final + 31.0.0.Final-glow-preview Quickstart: Contacts JQueryMobile test via WebDriver with Arquillian This project tests a Contacts JQueryMobile for use on JBoss EAP by WebDriver diff --git a/contacts-jquerymobile/pom.xml b/contacts-jquerymobile/pom.xml index b3887f8dc0..1a41e90c0a 100644 --- a/contacts-jquerymobile/pom.xml +++ b/contacts-jquerymobile/pom.xml @@ -29,7 +29,7 @@ contacts-jquerymobile - 31.0.0.Final + 31.0.0.Final-glow-preview war Quickstart: contacts-jquerymobile A Jakarta EE HTML5 mobile web application for use with JBoss EAP diff --git a/dist/pom.xml b/dist/pom.xml index 29f7354a38..293491f39f 100644 --- a/dist/pom.xml +++ b/dist/pom.xml @@ -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. --> - 31.0.0.Final + 31.0.0.Final-glow-preview quickstarts-dist diff --git a/ee-security/pom.xml b/ee-security/pom.xml index b971a8034c..0e36cede72 100644 --- a/ee-security/pom.xml +++ b/ee-security/pom.xml @@ -30,7 +30,7 @@ ee-security - 31.0.0.Final + 31.0.0.Final-glow-preview war Quickstart: ee-security This project demonstrates using EE security diff --git a/ejb-multi-server/app-main/ear/pom.xml b/ejb-multi-server/app-main/ear/pom.xml index 008aceffac..e985a4f8bc 100644 --- a/ejb-multi-server/app-main/ear/pom.xml +++ b/ejb-multi-server/app-main/ear/pom.xml @@ -21,7 +21,7 @@ org.wildfly.quickstarts ejb-multi-server-app-main - 31.0.0.Final + 31.0.0.Final-glow-preview ejb-multi-server-app-main-ear ear diff --git a/ejb-multi-server/app-main/ejb/pom.xml b/ejb-multi-server/app-main/ejb/pom.xml index 9f59cad47c..7fb4d43a7a 100644 --- a/ejb-multi-server/app-main/ejb/pom.xml +++ b/ejb-multi-server/app-main/ejb/pom.xml @@ -21,7 +21,7 @@ org.wildfly.quickstarts ejb-multi-server-app-main - 31.0.0.Final + 31.0.0.Final-glow-preview ejb-multi-server-app-main-ejb ejb diff --git a/ejb-multi-server/app-main/pom.xml b/ejb-multi-server/app-main/pom.xml index 246b8b3b88..c43bd5035a 100644 --- a/ejb-multi-server/app-main/pom.xml +++ b/ejb-multi-server/app-main/pom.xml @@ -21,7 +21,7 @@ org.wildfly.quickstarts ejb-multi-server - 31.0.0.Final + 31.0.0.Final-glow-preview ../pom.xml ejb-multi-server-app-main diff --git a/ejb-multi-server/app-main/web/pom.xml b/ejb-multi-server/app-main/web/pom.xml index 9695290138..3120cc9156 100644 --- a/ejb-multi-server/app-main/web/pom.xml +++ b/ejb-multi-server/app-main/web/pom.xml @@ -21,7 +21,7 @@ org.wildfly.quickstarts ejb-multi-server-app-main - 31.0.0.Final + 31.0.0.Final-glow-preview ejb-multi-server-app-main-web war diff --git a/ejb-multi-server/app-one/ear/pom.xml b/ejb-multi-server/app-one/ear/pom.xml index 22dd1a6b19..0448a4c53a 100644 --- a/ejb-multi-server/app-one/ear/pom.xml +++ b/ejb-multi-server/app-one/ear/pom.xml @@ -21,7 +21,7 @@ org.wildfly.quickstarts ejb-multi-server-app-one - 31.0.0.Final + 31.0.0.Final-glow-preview ejb-multi-server-app-one-ear ear diff --git a/ejb-multi-server/app-one/ejb/pom.xml b/ejb-multi-server/app-one/ejb/pom.xml index c54aca3fbd..c8430da8ef 100644 --- a/ejb-multi-server/app-one/ejb/pom.xml +++ b/ejb-multi-server/app-one/ejb/pom.xml @@ -21,7 +21,7 @@ org.wildfly.quickstarts ejb-multi-server-app-one - 31.0.0.Final + 31.0.0.Final-glow-preview ejb-multi-server-app-one-ejb ejb diff --git a/ejb-multi-server/app-one/pom.xml b/ejb-multi-server/app-one/pom.xml index 3dce7a37af..57eeb582d0 100644 --- a/ejb-multi-server/app-one/pom.xml +++ b/ejb-multi-server/app-one/pom.xml @@ -21,7 +21,7 @@ org.wildfly.quickstarts ejb-multi-server - 31.0.0.Final + 31.0.0.Final-glow-preview ejb-multi-server-app-one pom diff --git a/ejb-multi-server/app-two/ear/pom.xml b/ejb-multi-server/app-two/ear/pom.xml index 2b65f1908a..6c8d30f6b9 100644 --- a/ejb-multi-server/app-two/ear/pom.xml +++ b/ejb-multi-server/app-two/ear/pom.xml @@ -21,7 +21,7 @@ org.wildfly.quickstarts ejb-multi-server-app-two - 31.0.0.Final + 31.0.0.Final-glow-preview ejb-multi-server-app-two-ear ear diff --git a/ejb-multi-server/app-two/ejb/pom.xml b/ejb-multi-server/app-two/ejb/pom.xml index 5b54f6d6ac..6bba52b8cf 100644 --- a/ejb-multi-server/app-two/ejb/pom.xml +++ b/ejb-multi-server/app-two/ejb/pom.xml @@ -21,7 +21,7 @@ org.wildfly.quickstarts ejb-multi-server-app-two - 31.0.0.Final + 31.0.0.Final-glow-preview ejb-multi-server-app-two-ejb ejb diff --git a/ejb-multi-server/app-two/pom.xml b/ejb-multi-server/app-two/pom.xml index a73141feba..de50171516 100644 --- a/ejb-multi-server/app-two/pom.xml +++ b/ejb-multi-server/app-two/pom.xml @@ -21,7 +21,7 @@ org.wildfly.quickstarts ejb-multi-server - 31.0.0.Final + 31.0.0.Final-glow-preview ejb-multi-server-app-two pom diff --git a/ejb-multi-server/app-web/pom.xml b/ejb-multi-server/app-web/pom.xml index 8a17105d82..acc5a6c3b3 100644 --- a/ejb-multi-server/app-web/pom.xml +++ b/ejb-multi-server/app-web/pom.xml @@ -21,7 +21,7 @@ org.wildfly.quickstarts ejb-multi-server - 31.0.0.Final + 31.0.0.Final-glow-preview ejb-multi-server-app-web war diff --git a/ejb-multi-server/client/pom.xml b/ejb-multi-server/client/pom.xml index 9487d80f57..f4f6eb0d38 100644 --- a/ejb-multi-server/client/pom.xml +++ b/ejb-multi-server/client/pom.xml @@ -21,7 +21,7 @@ org.wildfly.quickstarts ejb-multi-server - 31.0.0.Final + 31.0.0.Final-glow-preview ejb-multi-server-client jar diff --git a/ejb-multi-server/pom.xml b/ejb-multi-server/pom.xml index 26008c4390..7ecb8b7304 100644 --- a/ejb-multi-server/pom.xml +++ b/ejb-multi-server/pom.xml @@ -29,7 +29,7 @@ ejb-multi-server - 31.0.0.Final + 31.0.0.Final-glow-preview pom Quickstart: ejb-multi-server A project that demonstrates multiple applications deployed on different servers. diff --git a/ejb-remote/pom.xml b/ejb-remote/pom.xml index a995bf2bea..fc0fa06932 100644 --- a/ejb-remote/pom.xml +++ b/ejb-remote/pom.xml @@ -29,7 +29,7 @@ ejb-remote - 31.0.0.Final + 31.0.0.Final-glow-preview war Quickstart: ejb-remote This project demonstrates how to access an EJB from a remote client diff --git a/ejb-security-context-propagation/pom.xml b/ejb-security-context-propagation/pom.xml index ed5007a02b..dda8f91980 100644 --- a/ejb-security-context-propagation/pom.xml +++ b/ejb-security-context-propagation/pom.xml @@ -29,7 +29,7 @@ ejb-security-context-propagation - 31.0.0.Final + 31.0.0.Final-glow-preview war Quickstart: ejb-security-context-propagation This project demonstrates the security context propagation between remote EJBs diff --git a/ejb-security-programmatic-auth/pom.xml b/ejb-security-programmatic-auth/pom.xml index c61a4898aa..4a0127904d 100644 --- a/ejb-security-programmatic-auth/pom.xml +++ b/ejb-security-programmatic-auth/pom.xml @@ -29,7 +29,7 @@ ejb-security-programmatic-auth - 31.0.0.Final + 31.0.0.Final-glow-preview war Quickstart: ejb-security-programmatic-auth This project demonstrates how to authenticate remote clients using the programmatic API diff --git a/ejb-throws-exception/ear/pom.xml b/ejb-throws-exception/ear/pom.xml index 6b3b32551f..ae3e004983 100644 --- a/ejb-throws-exception/ear/pom.xml +++ b/ejb-throws-exception/ear/pom.xml @@ -21,7 +21,7 @@ org.wildfly.quickstarts ejb-throws-exception - 31.0.0.Final + 31.0.0.Final-glow-preview ejb-throws-exception-ear ear diff --git a/ejb-throws-exception/ejb-api/pom.xml b/ejb-throws-exception/ejb-api/pom.xml index 3e0b050b8d..4136fdbd1a 100644 --- a/ejb-throws-exception/ejb-api/pom.xml +++ b/ejb-throws-exception/ejb-api/pom.xml @@ -21,7 +21,7 @@ org.wildfly.quickstarts ejb-throws-exception - 31.0.0.Final + 31.0.0.Final-glow-preview ejb-throws-exception-ejb-api jar diff --git a/ejb-throws-exception/ejb/pom.xml b/ejb-throws-exception/ejb/pom.xml index 67fb9c19d2..734f3e47ee 100644 --- a/ejb-throws-exception/ejb/pom.xml +++ b/ejb-throws-exception/ejb/pom.xml @@ -21,7 +21,7 @@ org.wildfly.quickstarts ejb-throws-exception - 31.0.0.Final + 31.0.0.Final-glow-preview ejb-throws-exception-ejb ejb diff --git a/ejb-throws-exception/pom.xml b/ejb-throws-exception/pom.xml index 9f37c4e2c0..17dbdc7202 100644 --- a/ejb-throws-exception/pom.xml +++ b/ejb-throws-exception/pom.xml @@ -29,7 +29,7 @@ ejb-throws-exception - 31.0.0.Final + 31.0.0.Final-glow-preview pom Quickstart: ejb-throws-exception This project demonstrates how to throw an exception in an EJB and catch it in the web layer diff --git a/ejb-throws-exception/web/pom.xml b/ejb-throws-exception/web/pom.xml index d36ef5f97b..a50e5e7e2d 100644 --- a/ejb-throws-exception/web/pom.xml +++ b/ejb-throws-exception/web/pom.xml @@ -21,7 +21,7 @@ org.wildfly.quickstarts ejb-throws-exception - 31.0.0.Final + 31.0.0.Final-glow-preview ejb-throws-exception-web war diff --git a/ejb-timer/pom.xml b/ejb-timer/pom.xml index 83aa888910..7c1b72b8fa 100644 --- a/ejb-timer/pom.xml +++ b/ejb-timer/pom.xml @@ -29,7 +29,7 @@ ejb-timer - 31.0.0.Final + 31.0.0.Final-glow-preview war Quickstart: ejb-timer A sample Jakarta EE project demonstrating how to use EJB timer (@Schedule and @Timeout). diff --git a/ejb-txn-remote-call/client/pom.xml b/ejb-txn-remote-call/client/pom.xml index 040bf11efa..90b010f6a8 100644 --- a/ejb-txn-remote-call/client/pom.xml +++ b/ejb-txn-remote-call/client/pom.xml @@ -31,7 +31,7 @@ ejb-txn-remote-call-client - 31.0.0.Final + 31.0.0.Final-glow-preview war Quickstart: ejb-txn-remote-call-client The project is the application to be deployed on the client server to call the second server diff --git a/ejb-txn-remote-call/pom.xml b/ejb-txn-remote-call/pom.xml index c3c219a9ce..a79147a15f 100644 --- a/ejb-txn-remote-call/pom.xml +++ b/ejb-txn-remote-call/pom.xml @@ -30,7 +30,7 @@ ejb-txn-remote-call - 31.0.0.Final + 31.0.0.Final-glow-preview pom Quickstart: ejb-txn-remote-call The project demonstrates how to make EJB remote calls from server to server with transaction propagation. diff --git a/ejb-txn-remote-call/server/pom.xml b/ejb-txn-remote-call/server/pom.xml index 59589aca30..5912dcd156 100644 --- a/ejb-txn-remote-call/server/pom.xml +++ b/ejb-txn-remote-call/server/pom.xml @@ -31,7 +31,7 @@ ejb-txn-remote-call-server - 31.0.0.Final + 31.0.0.Final-glow-preview war Quickstart: ejb-txn-remote-call-server The project is the application to be deployed on the second server to receive the call diff --git a/ha-singleton-deployment/pom.xml b/ha-singleton-deployment/pom.xml index 160cf1355d..7c09589c96 100644 --- a/ha-singleton-deployment/pom.xml +++ b/ha-singleton-deployment/pom.xml @@ -36,7 +36,7 @@ ha-singleton-deployment - 31.0.0.Final + 31.0.0.Final-glow-preview ejb Quickstart: HA Singleton Deployment This quickstart demonstrates the recommended way to deploy any service as a cluster-wide singleton. diff --git a/ha-singleton-service/pom.xml b/ha-singleton-service/pom.xml index 135fea4c78..b3f34935e4 100644 --- a/ha-singleton-service/pom.xml +++ b/ha-singleton-service/pom.xml @@ -31,7 +31,7 @@ ha-singleton-service - 31.0.0.Final + 31.0.0.Final-glow-preview jar Quickstart: HA Singleton Service This quickstart demonstrates a singleton MSC service packaged in a jar. diff --git a/helloworld-jms/pom.xml b/helloworld-jms/pom.xml index 397ab86015..7691e9ffed 100644 --- a/helloworld-jms/pom.xml +++ b/helloworld-jms/pom.xml @@ -29,7 +29,7 @@ helloworld-jms - 31.0.0.Final + 31.0.0.Final-glow-preview jar Quickstart: helloworld-jms A Helloworld JMS external producer/consumer client diff --git a/helloworld-mdb/pom.xml b/helloworld-mdb/pom.xml index 432085e9df..f9473a13f0 100644 --- a/helloworld-mdb/pom.xml +++ b/helloworld-mdb/pom.xml @@ -30,7 +30,7 @@ helloworld-mdb - 31.0.0.Final + 31.0.0.Final-glow-preview war Quickstart: helloworld-mdb This project demonstrates a hello world Message-Driven Bean with Servlet 3.0 as client diff --git a/helloworld-mutual-ssl-secured/pom.xml b/helloworld-mutual-ssl-secured/pom.xml index 39a5435a9b..5db18246d2 100644 --- a/helloworld-mutual-ssl-secured/pom.xml +++ b/helloworld-mutual-ssl-secured/pom.xml @@ -30,7 +30,7 @@ helloworld-mutual-ssl-secured - 31.0.0.Final + 31.0.0.Final-glow-preview war Quickstart: helloworld-mutual-ssl-secured Securing helloworld Web app with mutual client ssl authentication and role-based access control diff --git a/helloworld-mutual-ssl/pom.xml b/helloworld-mutual-ssl/pom.xml index 7ea54a7e02..392a68504a 100644 --- a/helloworld-mutual-ssl/pom.xml +++ b/helloworld-mutual-ssl/pom.xml @@ -30,7 +30,7 @@ helloworld-mutual-ssl - 31.0.0.Final + 31.0.0.Final-glow-preview war Quickstart: helloworld-mutual-ssl Helloworld Mutual SSL Authentication diff --git a/helloworld-singleton/pom.xml b/helloworld-singleton/pom.xml index 2d295bff84..9703029b31 100644 --- a/helloworld-singleton/pom.xml +++ b/helloworld-singleton/pom.xml @@ -30,7 +30,7 @@ helloworld-singleton - 31.0.0.Final + 31.0.0.Final-glow-preview war Quickstart: helloworld-singleton This project demonstrates a Hello World Singleton Session Bean with a JSF client diff --git a/helloworld-ws/pom.xml b/helloworld-ws/pom.xml index 0e07d4121e..3702872dfd 100644 --- a/helloworld-ws/pom.xml +++ b/helloworld-ws/pom.xml @@ -29,7 +29,7 @@ helloworld-ws - 31.0.0.Final + 31.0.0.Final-glow-preview war Quickstart: helloworld-ws This project demonstrates a Hello World JAX-WS web service diff --git a/helloworld/pom.xml b/helloworld/pom.xml index 7ce98f64a1..28c2aa1289 100644 --- a/helloworld/pom.xml +++ b/helloworld/pom.xml @@ -29,7 +29,7 @@ helloworld - 31.0.0.Final + 31.0.0.Final-glow-preview war Quickstart: helloworld Helloworld diff --git a/hibernate/pom.xml b/hibernate/pom.xml index 2fb85c5327..d1e620c13e 100644 --- a/hibernate/pom.xml +++ b/hibernate/pom.xml @@ -30,7 +30,7 @@ hibernate - 31.0.0.Final + 31.0.0.Final-glow-preview war Quickstart: hibernate This project demonstrates how to use Hibernate ORM diff --git a/http-custom-mechanism/custom-module/pom.xml b/http-custom-mechanism/custom-module/pom.xml index 3160e3b433..d3f6b4523e 100644 --- a/http-custom-mechanism/custom-module/pom.xml +++ b/http-custom-mechanism/custom-module/pom.xml @@ -21,7 +21,7 @@ org.wildfly.quickstarts http-custom-mechanism - 31.0.0.Final + 31.0.0.Final-glow-preview ../pom.xml diff --git a/http-custom-mechanism/pom.xml b/http-custom-mechanism/pom.xml index c6a99ca416..b4878fe40b 100644 --- a/http-custom-mechanism/pom.xml +++ b/http-custom-mechanism/pom.xml @@ -30,7 +30,7 @@ http-custom-mechanism - 31.0.0.Final + 31.0.0.Final-glow-preview pom Quickstart: http-custom-mechanism This project demonstrates how to implement a custom HTTP authentication mechanism diff --git a/http-custom-mechanism/webapp/pom.xml b/http-custom-mechanism/webapp/pom.xml index 39d70f6c8f..ea1a982a77 100644 --- a/http-custom-mechanism/webapp/pom.xml +++ b/http-custom-mechanism/webapp/pom.xml @@ -21,7 +21,7 @@ org.wildfly.quickstarts http-custom-mechanism - 31.0.0.Final + 31.0.0.Final-glow-preview ../pom.xml http-custom-mechanism-webapp diff --git a/jaxrs-client/pom.xml b/jaxrs-client/pom.xml index 3b2323e20a..a10572cc6a 100644 --- a/jaxrs-client/pom.xml +++ b/jaxrs-client/pom.xml @@ -30,7 +30,7 @@ jaxrs-client - 31.0.0.Final + 31.0.0.Final-glow-preview war Quickstart: jaxrs-client A JAX-RS Client API project diff --git a/jaxrs-jwt/pom.xml b/jaxrs-jwt/pom.xml index 84c30eb211..454d55e31d 100644 --- a/jaxrs-jwt/pom.xml +++ b/jaxrs-jwt/pom.xml @@ -29,7 +29,7 @@ jaxrs-jwt - 31.0.0.Final + 31.0.0.Final-glow-preview war Quickstart: jaxrs-jwt JWT authentication using Elytron diff --git a/jaxws-ejb/pom.xml b/jaxws-ejb/pom.xml index 38120b6cf5..c38048d71f 100644 --- a/jaxws-ejb/pom.xml +++ b/jaxws-ejb/pom.xml @@ -29,7 +29,7 @@ jaxws-ejb - 31.0.0.Final + 31.0.0.Final-glow-preview war Quickstart: jaxws-ejb This project is a working example of a JAX-WS web service EJB endpoint diff --git a/jsonp/pom.xml b/jsonp/pom.xml index 50853c0c43..0913a15745 100644 --- a/jsonp/pom.xml +++ b/jsonp/pom.xml @@ -29,7 +29,7 @@ jsonp - 31.0.0.Final + 31.0.0.Final-glow-preview war Quickstart: jsonp A starter Jakarta EE webapp project for use on JBoss EAP diff --git a/jta-crash-rec/pom.xml b/jta-crash-rec/pom.xml index 7fc7ab3025..a69f38ba0c 100644 --- a/jta-crash-rec/pom.xml +++ b/jta-crash-rec/pom.xml @@ -29,7 +29,7 @@ jta-crash-rec - 31.0.0.Final + 31.0.0.Final-glow-preview war Quickstart: jta-crash-rec This project demonstrates JTA crash recovery diff --git a/jts/application-component-1/pom.xml b/jts/application-component-1/pom.xml index 359596e379..ffd54bb665 100644 --- a/jts/application-component-1/pom.xml +++ b/jts/application-component-1/pom.xml @@ -21,7 +21,7 @@ org.wildfly.quickstarts jts - 31.0.0.Final + 31.0.0.Final-glow-preview jts-application-component-1 war diff --git a/jts/application-component-2/pom.xml b/jts/application-component-2/pom.xml index ecec015e6d..eb15a45ca9 100644 --- a/jts/application-component-2/pom.xml +++ b/jts/application-component-2/pom.xml @@ -21,7 +21,7 @@ org.wildfly.quickstarts jts - 31.0.0.Final + 31.0.0.Final-glow-preview jts-application-component-2 Quickstart: jts - application-component-2 diff --git a/jts/pom.xml b/jts/pom.xml index 3123c6ee58..752e47b62f 100644 --- a/jts/pom.xml +++ b/jts/pom.xml @@ -30,7 +30,7 @@ jts - 31.0.0.Final + 31.0.0.Final-glow-preview pom Quickstart: jts A project that demonstrates how to use CMT with JTS diff --git a/kitchensink/pom.xml b/kitchensink/pom.xml index 51272e775a..777cbf1df0 100644 --- a/kitchensink/pom.xml +++ b/kitchensink/pom.xml @@ -29,7 +29,7 @@ kitchensink - 31.0.0.Final + 31.0.0.Final-glow-preview war Quickstart: kitchensink A starter Jakarta EE web application project for use in JBoss EAP diff --git a/logging/pom.xml b/logging/pom.xml index 64fed0c9b5..84e5c7783b 100644 --- a/logging/pom.xml +++ b/logging/pom.xml @@ -29,7 +29,7 @@ jboss-logging - 31.0.0.Final + 31.0.0.Final-glow-preview war Quickstart: logging This project demonstrates logging in JBoss EAP diff --git a/mail/pom.xml b/mail/pom.xml index 143737bf17..6c2960364f 100644 --- a/mail/pom.xml +++ b/mail/pom.xml @@ -30,7 +30,7 @@ mail - 31.0.0.Final + 31.0.0.Final-glow-preview war Quickstart: mail This project demonstrates how to send mail diff --git a/messaging-clustering-singleton/pom.xml b/messaging-clustering-singleton/pom.xml index cec8063200..4c6a4e01bc 100644 --- a/messaging-clustering-singleton/pom.xml +++ b/messaging-clustering-singleton/pom.xml @@ -29,7 +29,7 @@ messaging-clustering-singleton - 31.0.0.Final + 31.0.0.Final-glow-preview war Quickstart: messaging-clustering-singleton This project demonstrates a hello world Message-Driven Bean with Servlet 3.0 as client diff --git a/micrometer/pom.xml b/micrometer/pom.xml index 5c0618f64c..e2c1f0a9b7 100644 --- a/micrometer/pom.xml +++ b/micrometer/pom.xml @@ -15,7 +15,7 @@ micrometer - 31.0.0.Final + 31.0.0.Final-glow-preview war Quickstart: micrometer diff --git a/microprofile-config/pom.xml b/microprofile-config/pom.xml index 49fc2b9471..e27e643d82 100644 --- a/microprofile-config/pom.xml +++ b/microprofile-config/pom.xml @@ -13,7 +13,7 @@ microprofile-config - 31.0.0.Final + 31.0.0.Final-glow-preview war Quickstart: microprofile-config diff --git a/microprofile-fault-tolerance/pom.xml b/microprofile-fault-tolerance/pom.xml index cb7d267b7b..8188bee8eb 100644 --- a/microprofile-fault-tolerance/pom.xml +++ b/microprofile-fault-tolerance/pom.xml @@ -30,7 +30,7 @@ microprofile-fault-tolerance - 31.0.0.Final + 31.0.0.Final-glow-preview war Quickstart: microprofile-fault-tolerance diff --git a/microprofile-health/pom.xml b/microprofile-health/pom.xml index 8631530eb0..7057dac7da 100644 --- a/microprofile-health/pom.xml +++ b/microprofile-health/pom.xml @@ -13,7 +13,7 @@ microprofile-health - 31.0.0.Final + 31.0.0.Final-glow-preview war Quickstart: microprofile-health diff --git a/microprofile-jwt/pom.xml b/microprofile-jwt/pom.xml index 63ddf86b32..62680a8ab9 100644 --- a/microprofile-jwt/pom.xml +++ b/microprofile-jwt/pom.xml @@ -29,7 +29,7 @@ microprofile-jwt - 31.0.0.Final + 31.0.0.Final-glow-preview war Quickstart: microprofile-jwt Example project making use of MicroProfile JWT diff --git a/microprofile-lra/pom.xml b/microprofile-lra/pom.xml index 08910ee775..bd86e891df 100644 --- a/microprofile-lra/pom.xml +++ b/microprofile-lra/pom.xml @@ -13,7 +13,7 @@ microprofile-lra - 31.0.0.Final + 31.0.0.Final-glow-preview war Quickstart: microprofile-lra diff --git a/microprofile-openapi/pom.xml b/microprofile-openapi/pom.xml index 04ada5f4ce..4b46c26de7 100644 --- a/microprofile-openapi/pom.xml +++ b/microprofile-openapi/pom.xml @@ -14,7 +14,7 @@ microprofile-openapi - 31.0.0.Final + 31.0.0.Final-glow-preview war Quickstart: microprofile-openapi diff --git a/microprofile-reactive-messaging-kafka/pom.xml b/microprofile-reactive-messaging-kafka/pom.xml index 8e4073c5a6..f2e5a53ef7 100644 --- a/microprofile-reactive-messaging-kafka/pom.xml +++ b/microprofile-reactive-messaging-kafka/pom.xml @@ -29,7 +29,7 @@ microprofile-reactive-messaging-kafka - 31.0.0.Final + 31.0.0.Final-glow-preview war Quickstart: microprofile-reactive-messaging-kafka diff --git a/microprofile-rest-client/pom.xml b/microprofile-rest-client/pom.xml index 8977a36874..52f818acef 100644 --- a/microprofile-rest-client/pom.xml +++ b/microprofile-rest-client/pom.xml @@ -28,7 +28,7 @@ microprofile-rest-client - 31.0.0.Final + 31.0.0.Final-glow-preview war Quickstart: microprofile-rest-client diff --git a/numberguess/pom.xml b/numberguess/pom.xml index 0a8ca3ded0..638137b354 100644 --- a/numberguess/pom.xml +++ b/numberguess/pom.xml @@ -29,7 +29,7 @@ numberguess - 31.0.0.Final + 31.0.0.Final-glow-preview war Quickstart: numberguess The numberguess project demonstrates the use of CDI and JSF in JBoss EAP diff --git a/opentelemetry-tracing/pom.xml b/opentelemetry-tracing/pom.xml index 45d82228ca..0ab306cab4 100644 --- a/opentelemetry-tracing/pom.xml +++ b/opentelemetry-tracing/pom.xml @@ -13,7 +13,7 @@ opentelemetry-tracing - 31.0.0.Final + 31.0.0.Final-glow-preview war Quickstart: opentelemetry-tracing diff --git a/pom.xml b/pom.xml index ef5b9a29d9..3f06e1ee3c 100644 --- a/pom.xml +++ b/pom.xml @@ -30,7 +30,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. --> - 31.0.0.Final + 31.0.0.Final-glow-preview pom diff --git a/remote-helloworld-mdb/pom.xml b/remote-helloworld-mdb/pom.xml index c98560bf6b..44d2294f68 100644 --- a/remote-helloworld-mdb/pom.xml +++ b/remote-helloworld-mdb/pom.xml @@ -30,7 +30,7 @@ remote-helloworld-mdb - 31.0.0.Final + 31.0.0.Final-glow-preview war Quickstart: remote-helloworld-mdb This project demonstrates a hello world Message-Driven Bean with Servlet 6.0 as client to a remote Artemis instance diff --git a/security-domain-to-domain/ear/pom.xml b/security-domain-to-domain/ear/pom.xml index b767dc6f2c..f5ee489ecf 100644 --- a/security-domain-to-domain/ear/pom.xml +++ b/security-domain-to-domain/ear/pom.xml @@ -26,7 +26,7 @@ org.wildfly.quickstarts security-domain-to-domain - 31.0.0.Final + 31.0.0.Final-glow-preview security-domain-to-domain-ear ear diff --git a/security-domain-to-domain/ejb/pom.xml b/security-domain-to-domain/ejb/pom.xml index 868b78c312..d5e701d650 100644 --- a/security-domain-to-domain/ejb/pom.xml +++ b/security-domain-to-domain/ejb/pom.xml @@ -26,7 +26,7 @@ org.wildfly.quickstarts security-domain-to-domain - 31.0.0.Final + 31.0.0.Final-glow-preview security-domain-to-domain-ejb Quickstart: security-domain-to-domain - ejb diff --git a/security-domain-to-domain/pom.xml b/security-domain-to-domain/pom.xml index f998bcb65d..3daabc1e58 100644 --- a/security-domain-to-domain/pom.xml +++ b/security-domain-to-domain/pom.xml @@ -30,7 +30,7 @@ security-domain-to-domain - 31.0.0.Final + 31.0.0.Final-glow-preview pom Quickstart: security-domain-to-domain This project demonstrates identity propagation between different security domains diff --git a/security-domain-to-domain/web/pom.xml b/security-domain-to-domain/web/pom.xml index 31fae3dc9a..5cd80e2312 100644 --- a/security-domain-to-domain/web/pom.xml +++ b/security-domain-to-domain/web/pom.xml @@ -26,7 +26,7 @@ org.wildfly.quickstarts security-domain-to-domain - 31.0.0.Final + 31.0.0.Final-glow-preview ../pom.xml security-domain-to-domain-web diff --git a/servlet-async/pom.xml b/servlet-async/pom.xml index 53c58ba4e0..8f4b2a2efb 100644 --- a/servlet-async/pom.xml +++ b/servlet-async/pom.xml @@ -30,7 +30,7 @@ servlet-async - 31.0.0.Final + 31.0.0.Final-glow-preview war Quickstart: servlet-async This project demonstrates an asynchronous Servlet diff --git a/servlet-filterlistener/pom.xml b/servlet-filterlistener/pom.xml index ed6813c2d9..663fab677e 100644 --- a/servlet-filterlistener/pom.xml +++ b/servlet-filterlistener/pom.xml @@ -30,7 +30,7 @@ servlet-filterlistener - 31.0.0.Final + 31.0.0.Final-glow-preview war Quickstart: servlet-filterlistener This project demonstrates a Servlet Filter and Listener diff --git a/servlet-security/pom.xml b/servlet-security/pom.xml index 7aa43971ec..e10c0f0a85 100644 --- a/servlet-security/pom.xml +++ b/servlet-security/pom.xml @@ -30,7 +30,7 @@ servlet-security - 31.0.0.Final + 31.0.0.Final-glow-preview war Quickstart: servlet-security This project demonstrates servlet security in JBoss EAP diff --git a/spring-resteasy/pom.xml b/spring-resteasy/pom.xml index 062448c9f9..ab63e9d2e5 100644 --- a/spring-resteasy/pom.xml +++ b/spring-resteasy/pom.xml @@ -30,7 +30,7 @@ spring-resteasy - 31.0.0.Final + 31.0.0.Final-glow-preview war Quickstart: spring-resteasy This project demonstrates Spring with a JAX-RS RestEasy client diff --git a/tasks-jsf/pom.xml b/tasks-jsf/pom.xml index 578554b347..0a2fc2586c 100644 --- a/tasks-jsf/pom.xml +++ b/tasks-jsf/pom.xml @@ -30,7 +30,7 @@ tasks-jsf - 31.0.0.Final + 31.0.0.Final-glow-preview war Quickstart: tasks-jsf This project demonstrates how to use JPA persistence to manage tasks with JSF as view layer diff --git a/temperature-converter/pom.xml b/temperature-converter/pom.xml index bba89bf92b..df7dd667e4 100644 --- a/temperature-converter/pom.xml +++ b/temperature-converter/pom.xml @@ -30,7 +30,7 @@ temperature-converter - 31.0.0.Final + 31.0.0.Final-glow-preview war Quickstart: temperature-converter This project is a temperature converter. Given Celsius return Fahrenheit; Given Fahrenheit return Celsius diff --git a/template/pom.xml b/template/pom.xml index 53dcd32248..b20750427c 100644 --- a/template/pom.xml +++ b/template/pom.xml @@ -20,7 +20,7 @@ org.wildfly.quickstarts QUICKSTART_NAME - 31.0.0.Final + 31.0.0.Final-glow-preview war Quickstart: QUICKSTART_NAME - OPTIONAL_SUBFOLDER_NAME A short description of this quickstart diff --git a/thread-racing/pom.xml b/thread-racing/pom.xml index 3adc294884..61d7ccee94 100644 --- a/thread-racing/pom.xml +++ b/thread-racing/pom.xml @@ -30,7 +30,7 @@ thread-racing - 31.0.0.Final + 31.0.0.Final-glow-preview war Quickstart: thread-racing A web application that triggers a thread race to complete Jakarta EE related tasks diff --git a/todo-backend/pom.xml b/todo-backend/pom.xml index 03ed1328fb..b2696216f2 100644 --- a/todo-backend/pom.xml +++ b/todo-backend/pom.xml @@ -30,7 +30,7 @@ todo-backend - 31.0.0.Final + 31.0.0.Final-glow-preview war Quickstart: todo-backend This project demonstrates how to implement a Todo-Backend application to manage ToDos diff --git a/websocket-endpoint/pom.xml b/websocket-endpoint/pom.xml index 033530ef2a..15bf7d773a 100644 --- a/websocket-endpoint/pom.xml +++ b/websocket-endpoint/pom.xml @@ -30,7 +30,7 @@ websocket-endpoint - 31.0.0.Final + 31.0.0.Final-glow-preview war Quickstart: websocket-endpoint This project demonstrates how to use a WebSocket Endppoint diff --git a/websocket-hello/pom.xml b/websocket-hello/pom.xml index ef43301042..7cc47b1a11 100644 --- a/websocket-hello/pom.xml +++ b/websocket-hello/pom.xml @@ -30,7 +30,7 @@ websocket-hello - 31.0.0.Final + 31.0.0.Final-glow-preview war Quickstart: websocket-hello This project demonstrates a simple Hello WebSocket application diff --git a/wsat-simple/pom.xml b/wsat-simple/pom.xml index 1936c9c674..ecf3cedcf3 100644 --- a/wsat-simple/pom.xml +++ b/wsat-simple/pom.xml @@ -30,7 +30,7 @@ wsat-simple - 31.0.0.Final + 31.0.0.Final-glow-preview war Quickstart: wsat-simple This project demonstrates a WS-AT enabled JAX-WS Web service bundled in a WAR archive diff --git a/wsba-coordinator-completion-simple/pom.xml b/wsba-coordinator-completion-simple/pom.xml index a7f42ce127..7ec343814f 100644 --- a/wsba-coordinator-completion-simple/pom.xml +++ b/wsba-coordinator-completion-simple/pom.xml @@ -30,7 +30,7 @@ wsba-coordinator-completion-simple - 31.0.0.Final + 31.0.0.Final-glow-preview jar Quickstart: wsba-coordinator-completion-simple This project demonstrates WS-BA with Coordinator Driven Completion diff --git a/wsba-participant-completion-simple/pom.xml b/wsba-participant-completion-simple/pom.xml index 02f4db3480..7146936b82 100644 --- a/wsba-participant-completion-simple/pom.xml +++ b/wsba-participant-completion-simple/pom.xml @@ -30,7 +30,7 @@ wsba-participant-completion-simple - 31.0.0.Final + 31.0.0.Final-glow-preview jar Quickstart: wsba-participant-completion-simple This project demonstrates WS-BA with Participant Driven Completion From 5fc9ac63cce4d02667043c5e2ab9fd3e894a94bb Mon Sep 17 00:00:00 2001 From: Kabir Khan Date: Fri, 26 Jan 2024 12:27:36 +0000 Subject: [PATCH 15/26] Update Helm chart refs and shared-doc/attributes for 31.0.0.Final-glow-preview --- batch-processing/README.adoc | 2 +- batch-processing/charts/helm.yaml | 2 +- bmt/README.adoc | 2 +- bmt/charts/helm.yaml | 2 +- cmt/README.adoc | 2 +- cmt/charts/helm.yaml | 2 +- ee-security/README.adoc | 2 +- ee-security/charts/helm.yaml | 2 +- ejb-remote/README.adoc | 2 +- ejb-remote/charts/helm.yaml | 2 +- ejb-timer/README.adoc | 2 +- ejb-timer/charts/helm.yaml | 2 +- ejb-txn-remote-call/charts/client.yaml | 2 +- ejb-txn-remote-call/charts/server.yaml | 2 +- helloworld-mdb/README.adoc | 2 +- helloworld-mdb/charts/helm.yaml | 2 +- helloworld-singleton/README.adoc | 2 +- helloworld-singleton/charts/helm.yaml | 2 +- helloworld-ws/README.adoc | 2 +- helloworld-ws/charts/helm.yaml | 2 +- helloworld/README.adoc | 2 +- helloworld/charts/helm.yaml | 2 +- hibernate/README.adoc | 2 +- hibernate/charts/helm.yaml | 2 +- jaxrs-client/README.adoc | 2 +- jaxrs-client/charts/helm.yaml | 2 +- jaxrs-jwt/src/charts/helm.yaml | 2 +- jaxws-ejb/README.adoc | 2 +- jaxws-ejb/charts/helm.yaml | 2 +- jaxws-retail/README.adoc | 2 +- jaxws-retail/charts/helm.yaml | 2 +- jsonp/README.adoc | 2 +- jsonp/charts/helm.yaml | 2 +- kitchensink/README.adoc | 2 +- kitchensink/charts/helm.yaml | 2 +- logging/src/charts/helm.yaml | 2 +- micrometer/README.adoc | 2 +- micrometer/charts/helm.yaml | 2 +- microprofile-config/README.adoc | 2 +- microprofile-config/charts/helm.yaml | 2 +- microprofile-fault-tolerance/README.adoc | 2 +- microprofile-fault-tolerance/charts/helm.yaml | 2 +- microprofile-health/README.adoc | 2 +- microprofile-health/charts/helm.yaml | 2 +- microprofile-jwt/README.adoc | 2 +- microprofile-jwt/charts/helm.yaml | 2 +- microprofile-lra/charts/helm.yaml | 2 +- microprofile-openapi/README.adoc | 2 +- microprofile-openapi/charts/helm.yaml | 2 +- microprofile-reactive-messaging-kafka/README.adoc | 2 +- microprofile-reactive-messaging-kafka/charts/helm.yaml | 2 +- microprofile-rest-client/README.adoc | 2 +- microprofile-rest-client/charts/helm.yaml | 2 +- numberguess/README.adoc | 2 +- numberguess/charts/helm.yaml | 2 +- opentelemetry-tracing/README.adoc | 2 +- opentelemetry-tracing/charts/helm.yaml | 2 +- remote-helloworld-mdb/README.adoc | 4 ++-- remote-helloworld-mdb/charts/helm.yaml | 2 +- servlet-async/README.adoc | 2 +- servlet-async/charts/helm.yaml | 2 +- servlet-filterlistener/README.adoc | 2 +- servlet-filterlistener/charts/helm.yaml | 2 +- servlet-security/README.adoc | 2 +- servlet-security/charts/helm.yaml | 2 +- shared-doc/attributes.adoc | 2 +- spring-resteasy/README.adoc | 2 +- spring-resteasy/charts/helm.yaml | 2 +- temperature-converter/README.adoc | 2 +- temperature-converter/charts/helm.yaml | 2 +- thread-racing/README.adoc | 2 +- thread-racing/charts/helm.yaml | 2 +- todo-backend/charts/values.yaml | 2 +- websocket-endpoint/README.adoc | 2 +- websocket-endpoint/charts/helm.yaml | 2 +- websocket-hello/README.adoc | 2 +- websocket-hello/charts/helm.yaml | 2 +- 77 files changed, 78 insertions(+), 78 deletions(-) diff --git a/batch-processing/README.adoc b/batch-processing/README.adoc index 6a0ac90fb1..22b57e3538 100644 --- a/batch-processing/README.adoc +++ b/batch-processing/README.adoc @@ -1258,7 +1258,7 @@ ifndef::useHelmChartDir[] ---- build: uri: https://github.com/wildfly/quickstart.git - ref: 31.x + ref: glow-preview contextDir: batch-processing deploy: replicas: 1 diff --git a/batch-processing/charts/helm.yaml b/batch-processing/charts/helm.yaml index b1d0f8e8b6..8d41fa3158 100644 --- a/batch-processing/charts/helm.yaml +++ b/batch-processing/charts/helm.yaml @@ -1,6 +1,6 @@ build: uri: https://github.com/wildfly/quickstart.git - ref: 31.x + ref: glow-preview contextDir: batch-processing deploy: replicas: 1 \ No newline at end of file diff --git a/bmt/README.adoc b/bmt/README.adoc index a699d73057..95cca2f4ba 100644 --- a/bmt/README.adoc +++ b/bmt/README.adoc @@ -1190,7 +1190,7 @@ ifndef::useHelmChartDir[] ---- build: uri: https://github.com/wildfly/quickstart.git - ref: 31.x + ref: glow-preview contextDir: bmt deploy: replicas: 1 diff --git a/bmt/charts/helm.yaml b/bmt/charts/helm.yaml index a8d5feda57..2eee203164 100644 --- a/bmt/charts/helm.yaml +++ b/bmt/charts/helm.yaml @@ -1,6 +1,6 @@ build: uri: https://github.com/wildfly/quickstart.git - ref: 31.x + ref: glow-preview contextDir: bmt deploy: replicas: 1 \ No newline at end of file diff --git a/cmt/README.adoc b/cmt/README.adoc index 50e77c9163..392f2c8dbd 100644 --- a/cmt/README.adoc +++ b/cmt/README.adoc @@ -1203,7 +1203,7 @@ ifndef::useHelmChartDir[] ---- build: uri: https://github.com/wildfly/quickstart.git - ref: 31.x + ref: glow-preview contextDir: cmt deploy: replicas: 1 diff --git a/cmt/charts/helm.yaml b/cmt/charts/helm.yaml index 6cd6118254..b63c7752f7 100644 --- a/cmt/charts/helm.yaml +++ b/cmt/charts/helm.yaml @@ -1,6 +1,6 @@ build: uri: https://github.com/wildfly/quickstart.git - ref: 31.x + ref: glow-preview contextDir: cmt deploy: replicas: 1 \ No newline at end of file diff --git a/ee-security/README.adoc b/ee-security/README.adoc index a2bb27b162..936be2ca89 100644 --- a/ee-security/README.adoc +++ b/ee-security/README.adoc @@ -1407,7 +1407,7 @@ ifndef::useHelmChartDir[] ---- build: uri: https://github.com/wildfly/quickstart.git - ref: 31.x + ref: glow-preview contextDir: ee-security deploy: replicas: 1 diff --git a/ee-security/charts/helm.yaml b/ee-security/charts/helm.yaml index d989be2242..c8e82b84e7 100644 --- a/ee-security/charts/helm.yaml +++ b/ee-security/charts/helm.yaml @@ -1,6 +1,6 @@ build: uri: https://github.com/wildfly/quickstart.git - ref: 31.x + ref: glow-preview contextDir: ee-security deploy: replicas: 1 \ No newline at end of file diff --git a/ejb-remote/README.adoc b/ejb-remote/README.adoc index 99289de033..37fb3ef00f 100644 --- a/ejb-remote/README.adoc +++ b/ejb-remote/README.adoc @@ -1230,7 +1230,7 @@ ifndef::useHelmChartDir[] ---- build: uri: https://github.com/wildfly/quickstart.git - ref: 31.x + ref: glow-preview contextDir: ejb-remote deploy: replicas: 1 diff --git a/ejb-remote/charts/helm.yaml b/ejb-remote/charts/helm.yaml index 7cc94e5957..0ab4ff5a86 100644 --- a/ejb-remote/charts/helm.yaml +++ b/ejb-remote/charts/helm.yaml @@ -1,6 +1,6 @@ build: uri: https://github.com/wildfly/quickstart.git - ref: 31.x + ref: glow-preview contextDir: ejb-remote deploy: replicas: 1 \ No newline at end of file diff --git a/ejb-timer/README.adoc b/ejb-timer/README.adoc index 63bcd28eb6..173f3947ec 100644 --- a/ejb-timer/README.adoc +++ b/ejb-timer/README.adoc @@ -1180,7 +1180,7 @@ ifndef::useHelmChartDir[] ---- build: uri: https://github.com/wildfly/quickstart.git - ref: 31.x + ref: glow-preview contextDir: ejb-timer deploy: replicas: 1 diff --git a/ejb-timer/charts/helm.yaml b/ejb-timer/charts/helm.yaml index 3c5bd7f057..179a1ff9fe 100644 --- a/ejb-timer/charts/helm.yaml +++ b/ejb-timer/charts/helm.yaml @@ -1,6 +1,6 @@ build: uri: https://github.com/wildfly/quickstart.git - ref: 31.x + ref: glow-preview contextDir: ejb-timer deploy: replicas: 1 \ No newline at end of file diff --git a/ejb-txn-remote-call/charts/client.yaml b/ejb-txn-remote-call/charts/client.yaml index 1c807ebf3a..1f7463567e 100644 --- a/ejb-txn-remote-call/charts/client.yaml +++ b/ejb-txn-remote-call/charts/client.yaml @@ -1,6 +1,6 @@ build: uri: https://github.com/wildfly/quickstart.git - ref: 31.x + ref: glow-preview contextDir: ejb-txn-remote-call/client env: - name: MAVEN_ARGS_APPEND diff --git a/ejb-txn-remote-call/charts/server.yaml b/ejb-txn-remote-call/charts/server.yaml index ff3a696f78..f8b486b3f7 100644 --- a/ejb-txn-remote-call/charts/server.yaml +++ b/ejb-txn-remote-call/charts/server.yaml @@ -1,6 +1,6 @@ build: uri: https://github.com/wildfly/quickstart.git - ref: 31.x + ref: glow-preview contextDir: ejb-txn-remote-call/server deploy: enabled: false diff --git a/helloworld-mdb/README.adoc b/helloworld-mdb/README.adoc index b118aa342d..e61f618e8c 100644 --- a/helloworld-mdb/README.adoc +++ b/helloworld-mdb/README.adoc @@ -1176,7 +1176,7 @@ ifndef::useHelmChartDir[] ---- build: uri: https://github.com/wildfly/quickstart.git - ref: 31.x + ref: glow-preview contextDir: helloworld-mdb deploy: replicas: 2 diff --git a/helloworld-mdb/charts/helm.yaml b/helloworld-mdb/charts/helm.yaml index ebdb98a5a3..4f3df9ba57 100644 --- a/helloworld-mdb/charts/helm.yaml +++ b/helloworld-mdb/charts/helm.yaml @@ -1,6 +1,6 @@ build: uri: https://github.com/wildfly/quickstart.git - ref: 31.x + ref: glow-preview contextDir: helloworld-mdb deploy: replicas: 2 \ No newline at end of file diff --git a/helloworld-singleton/README.adoc b/helloworld-singleton/README.adoc index 3af2c4d8cd..7c709c5d4a 100644 --- a/helloworld-singleton/README.adoc +++ b/helloworld-singleton/README.adoc @@ -1138,7 +1138,7 @@ ifndef::useHelmChartDir[] ---- build: uri: https://github.com/wildfly/quickstart.git - ref: 31.x + ref: glow-preview contextDir: helloworld-singleton deploy: replicas: 1 diff --git a/helloworld-singleton/charts/helm.yaml b/helloworld-singleton/charts/helm.yaml index 3cef659fe2..1dbcb894c9 100644 --- a/helloworld-singleton/charts/helm.yaml +++ b/helloworld-singleton/charts/helm.yaml @@ -1,6 +1,6 @@ build: uri: https://github.com/wildfly/quickstart.git - ref: 31.x + ref: glow-preview contextDir: helloworld-singleton deploy: replicas: 1 \ No newline at end of file diff --git a/helloworld-ws/README.adoc b/helloworld-ws/README.adoc index c40f55c9c1..855f1fdfa4 100644 --- a/helloworld-ws/README.adoc +++ b/helloworld-ws/README.adoc @@ -1120,7 +1120,7 @@ ifndef::useHelmChartDir[] ---- build: uri: https://github.com/wildfly/quickstart.git - ref: 31.x + ref: glow-preview contextDir: helloworld-ws deploy: replicas: 1 diff --git a/helloworld-ws/charts/helm.yaml b/helloworld-ws/charts/helm.yaml index b4ba05e719..8239a28eea 100644 --- a/helloworld-ws/charts/helm.yaml +++ b/helloworld-ws/charts/helm.yaml @@ -1,6 +1,6 @@ build: uri: https://github.com/wildfly/quickstart.git - ref: 31.x + ref: glow-preview contextDir: helloworld-ws deploy: replicas: 1 \ No newline at end of file diff --git a/helloworld/README.adoc b/helloworld/README.adoc index d296ae50bb..ea02b25d2a 100644 --- a/helloworld/README.adoc +++ b/helloworld/README.adoc @@ -1131,7 +1131,7 @@ ifndef::useHelmChartDir[] ---- build: uri: https://github.com/wildfly/quickstart.git - ref: 31.x + ref: glow-preview contextDir: helloworld deploy: replicas: 1 diff --git a/helloworld/charts/helm.yaml b/helloworld/charts/helm.yaml index 7cb8467697..c97bdf1f9c 100644 --- a/helloworld/charts/helm.yaml +++ b/helloworld/charts/helm.yaml @@ -1,6 +1,6 @@ build: uri: https://github.com/wildfly/quickstart.git - ref: 31.x + ref: glow-preview contextDir: helloworld deploy: replicas: 1 \ No newline at end of file diff --git a/hibernate/README.adoc b/hibernate/README.adoc index cba8d79acf..4e87f976d2 100644 --- a/hibernate/README.adoc +++ b/hibernate/README.adoc @@ -1446,7 +1446,7 @@ ifndef::useHelmChartDir[] ---- build: uri: https://github.com/wildfly/quickstart.git - ref: 31.x + ref: glow-preview contextDir: hibernate deploy: replicas: 1 diff --git a/hibernate/charts/helm.yaml b/hibernate/charts/helm.yaml index 2ce204cc81..6f8071d77b 100644 --- a/hibernate/charts/helm.yaml +++ b/hibernate/charts/helm.yaml @@ -1,6 +1,6 @@ build: uri: https://github.com/wildfly/quickstart.git - ref: 31.x + ref: glow-preview contextDir: hibernate deploy: replicas: 1 \ No newline at end of file diff --git a/jaxrs-client/README.adoc b/jaxrs-client/README.adoc index b3fa5ff447..76574f21a5 100644 --- a/jaxrs-client/README.adoc +++ b/jaxrs-client/README.adoc @@ -1153,7 +1153,7 @@ ifndef::useHelmChartDir[] ---- build: uri: https://github.com/wildfly/quickstart.git - ref: 31.x + ref: glow-preview contextDir: jaxrs-client deploy: replicas: 1 diff --git a/jaxrs-client/charts/helm.yaml b/jaxrs-client/charts/helm.yaml index 97dc121bb6..41356ef232 100644 --- a/jaxrs-client/charts/helm.yaml +++ b/jaxrs-client/charts/helm.yaml @@ -1,6 +1,6 @@ build: uri: https://github.com/wildfly/quickstart.git - ref: 31.x + ref: glow-preview contextDir: jaxrs-client deploy: replicas: 1 \ No newline at end of file diff --git a/jaxrs-jwt/src/charts/helm.yaml b/jaxrs-jwt/src/charts/helm.yaml index 7049e1f802..732aced77e 100644 --- a/jaxrs-jwt/src/charts/helm.yaml +++ b/jaxrs-jwt/src/charts/helm.yaml @@ -1,6 +1,6 @@ build: uri: https://github.com/wildfly/quickstart.git - ref: 31.x + ref: glow-preview contextDir: jaxrs-jwt deploy: replicas: 1 \ No newline at end of file diff --git a/jaxws-ejb/README.adoc b/jaxws-ejb/README.adoc index 234b2f3dea..64269121a2 100644 --- a/jaxws-ejb/README.adoc +++ b/jaxws-ejb/README.adoc @@ -1136,7 +1136,7 @@ ifndef::useHelmChartDir[] ---- build: uri: https://github.com/wildfly/quickstart.git - ref: 31.x + ref: glow-preview contextDir: jaxws-ejb deploy: replicas: 1 diff --git a/jaxws-ejb/charts/helm.yaml b/jaxws-ejb/charts/helm.yaml index 2903677ac3..11d27a359d 100644 --- a/jaxws-ejb/charts/helm.yaml +++ b/jaxws-ejb/charts/helm.yaml @@ -1,6 +1,6 @@ build: uri: https://github.com/wildfly/quickstart.git - ref: 31.x + ref: glow-preview contextDir: jaxws-ejb deploy: replicas: 1 \ No newline at end of file diff --git a/jaxws-retail/README.adoc b/jaxws-retail/README.adoc index 9fcba57d73..4f9a2b2d83 100644 --- a/jaxws-retail/README.adoc +++ b/jaxws-retail/README.adoc @@ -1133,7 +1133,7 @@ ifndef::useHelmChartDir[] ---- build: uri: https://github.com/wildfly/quickstart.git - ref: 31.x + ref: glow-preview contextDir: jaxws-retail deploy: replicas: 1 diff --git a/jaxws-retail/charts/helm.yaml b/jaxws-retail/charts/helm.yaml index a65b34904e..2e012a3ef7 100644 --- a/jaxws-retail/charts/helm.yaml +++ b/jaxws-retail/charts/helm.yaml @@ -1,6 +1,6 @@ build: uri: https://github.com/wildfly/quickstart.git - ref: 31.x + ref: glow-preview contextDir: jaxws-retail deploy: replicas: 1 \ No newline at end of file diff --git a/jsonp/README.adoc b/jsonp/README.adoc index 4e65b27ac2..1657756305 100644 --- a/jsonp/README.adoc +++ b/jsonp/README.adoc @@ -1089,7 +1089,7 @@ ifndef::useHelmChartDir[] ---- build: uri: https://github.com/wildfly/quickstart.git - ref: 31.x + ref: glow-preview contextDir: jsonp deploy: replicas: 1 diff --git a/jsonp/charts/helm.yaml b/jsonp/charts/helm.yaml index fbff6cd6f9..dc3f87e291 100644 --- a/jsonp/charts/helm.yaml +++ b/jsonp/charts/helm.yaml @@ -1,6 +1,6 @@ build: uri: https://github.com/wildfly/quickstart.git - ref: 31.x + ref: glow-preview contextDir: jsonp deploy: replicas: 1 \ No newline at end of file diff --git a/kitchensink/README.adoc b/kitchensink/README.adoc index 5f2f9261c5..59393830ee 100644 --- a/kitchensink/README.adoc +++ b/kitchensink/README.adoc @@ -1264,7 +1264,7 @@ ifndef::useHelmChartDir[] ---- build: uri: https://github.com/wildfly/quickstart.git - ref: 31.x + ref: glow-preview contextDir: kitchensink deploy: replicas: 1 diff --git a/kitchensink/charts/helm.yaml b/kitchensink/charts/helm.yaml index 7d2fd49968..3bbedc2b5c 100644 --- a/kitchensink/charts/helm.yaml +++ b/kitchensink/charts/helm.yaml @@ -1,6 +1,6 @@ build: uri: https://github.com/wildfly/quickstart.git - ref: 31.x + ref: glow-preview contextDir: kitchensink deploy: replicas: 1 \ No newline at end of file diff --git a/logging/src/charts/helm.yaml b/logging/src/charts/helm.yaml index c411a053e0..1fcc721681 100644 --- a/logging/src/charts/helm.yaml +++ b/logging/src/charts/helm.yaml @@ -1,6 +1,6 @@ build: uri: https://github.com/wildfly/quickstart.git - ref: 31.x + ref: glow-preview contextDir: logging deploy: replicas: 1 \ No newline at end of file diff --git a/micrometer/README.adoc b/micrometer/README.adoc index b99f72c772..d3d53e1e53 100644 --- a/micrometer/README.adoc +++ b/micrometer/README.adoc @@ -1714,7 +1714,7 @@ build: <<<<<<< HEAD ref: main ======= - ref: 31.x + ref: glow-preview >>>>>>> b4ca9a43b66d96aff01d3da9f9714b65b9bb38b0 contextDir: micrometer deploy: diff --git a/micrometer/charts/helm.yaml b/micrometer/charts/helm.yaml index f87a7c0469..41adca9cc4 100644 --- a/micrometer/charts/helm.yaml +++ b/micrometer/charts/helm.yaml @@ -3,7 +3,7 @@ build: <<<<<<< HEAD ref: main ======= - ref: 31.x + ref: glow-preview >>>>>>> b4ca9a43b66d96aff01d3da9f9714b65b9bb38b0 contextDir: micrometer deploy: diff --git a/microprofile-config/README.adoc b/microprofile-config/README.adoc index c63db9eae3..5dd63624c4 100644 --- a/microprofile-config/README.adoc +++ b/microprofile-config/README.adoc @@ -1864,7 +1864,7 @@ ifndef::useHelmChartDir[] ---- build: uri: https://github.com/wildfly/quickstart.git - ref: 31.x + ref: glow-preview contextDir: microprofile-config deploy: replicas: 1 diff --git a/microprofile-config/charts/helm.yaml b/microprofile-config/charts/helm.yaml index 4c84f77028..b2395f0b0d 100644 --- a/microprofile-config/charts/helm.yaml +++ b/microprofile-config/charts/helm.yaml @@ -1,6 +1,6 @@ build: uri: https://github.com/wildfly/quickstart.git - ref: 31.x + ref: glow-preview contextDir: microprofile-config deploy: replicas: 1 \ No newline at end of file diff --git a/microprofile-fault-tolerance/README.adoc b/microprofile-fault-tolerance/README.adoc index 34cf1a795d..728251076d 100644 --- a/microprofile-fault-tolerance/README.adoc +++ b/microprofile-fault-tolerance/README.adoc @@ -1695,7 +1695,7 @@ ifndef::useHelmChartDir[] ---- build: uri: https://github.com/wildfly/quickstart.git - ref: 31.x + ref: glow-preview contextDir: microprofile-fault-tolerance deploy: replicas: 1 diff --git a/microprofile-fault-tolerance/charts/helm.yaml b/microprofile-fault-tolerance/charts/helm.yaml index b52d7ef2fb..0325db3def 100644 --- a/microprofile-fault-tolerance/charts/helm.yaml +++ b/microprofile-fault-tolerance/charts/helm.yaml @@ -1,6 +1,6 @@ build: uri: https://github.com/wildfly/quickstart.git - ref: 31.x + ref: glow-preview contextDir: microprofile-fault-tolerance deploy: replicas: 1 diff --git a/microprofile-health/README.adoc b/microprofile-health/README.adoc index 87a8d02813..92a19dc04e 100644 --- a/microprofile-health/README.adoc +++ b/microprofile-health/README.adoc @@ -1537,7 +1537,7 @@ ifndef::useHelmChartDir[] ---- build: uri: https://github.com/wildfly/quickstart.git - ref: 31.x + ref: glow-preview contextDir: microprofile-health deploy: replicas: 1 diff --git a/microprofile-health/charts/helm.yaml b/microprofile-health/charts/helm.yaml index 36aea2f9d3..85e9ddce5f 100644 --- a/microprofile-health/charts/helm.yaml +++ b/microprofile-health/charts/helm.yaml @@ -1,6 +1,6 @@ build: uri: https://github.com/wildfly/quickstart.git - ref: 31.x + ref: glow-preview contextDir: microprofile-health deploy: replicas: 1 \ No newline at end of file diff --git a/microprofile-jwt/README.adoc b/microprofile-jwt/README.adoc index 454cb44511..fdf78ff4c9 100644 --- a/microprofile-jwt/README.adoc +++ b/microprofile-jwt/README.adoc @@ -1618,7 +1618,7 @@ ifndef::useHelmChartDir[] ---- build: uri: https://github.com/wildfly/quickstart.git - ref: 31.x + ref: glow-preview contextDir: microprofile-jwt deploy: replicas: 1 diff --git a/microprofile-jwt/charts/helm.yaml b/microprofile-jwt/charts/helm.yaml index fe48b8ceaf..9fd808fb94 100644 --- a/microprofile-jwt/charts/helm.yaml +++ b/microprofile-jwt/charts/helm.yaml @@ -1,6 +1,6 @@ build: uri: https://github.com/wildfly/quickstart.git - ref: 31.x + ref: glow-preview contextDir: microprofile-jwt deploy: replicas: 1 \ No newline at end of file diff --git a/microprofile-lra/charts/helm.yaml b/microprofile-lra/charts/helm.yaml index 94906bb652..36843e02e0 100644 --- a/microprofile-lra/charts/helm.yaml +++ b/microprofile-lra/charts/helm.yaml @@ -1,6 +1,6 @@ build: uri: https://github.com/wildfly/quickstart.git - ref: 31.x + ref: glow-preview contextDir: microprofile-lra deploy: replicas: 1 diff --git a/microprofile-openapi/README.adoc b/microprofile-openapi/README.adoc index 79aaa6e784..f5248e8dc5 100644 --- a/microprofile-openapi/README.adoc +++ b/microprofile-openapi/README.adoc @@ -1141,7 +1141,7 @@ ifndef::useHelmChartDir[] ---- build: uri: https://github.com/wildfly/quickstart.git - ref: 31.x + ref: glow-preview contextDir: microprofile-openapi deploy: replicas: 1 diff --git a/microprofile-openapi/charts/helm.yaml b/microprofile-openapi/charts/helm.yaml index a8bf829806..8247e435a8 100644 --- a/microprofile-openapi/charts/helm.yaml +++ b/microprofile-openapi/charts/helm.yaml @@ -1,6 +1,6 @@ build: uri: https://github.com/wildfly/quickstart.git - ref: 31.x + ref: glow-preview contextDir: microprofile-openapi deploy: replicas: 1 \ No newline at end of file diff --git a/microprofile-reactive-messaging-kafka/README.adoc b/microprofile-reactive-messaging-kafka/README.adoc index c1ed6ca4bb..2ac46ca93c 100644 --- a/microprofile-reactive-messaging-kafka/README.adoc +++ b/microprofile-reactive-messaging-kafka/README.adoc @@ -2134,7 +2134,7 @@ ifndef::useHelmChartDir[] # Will need a diff commit in the upstream-to-product repository build: uri: https://github.com/wildfly/quickstart.git - ref: 31.x + ref: glow-preview contextDir: microprofile-reactive-messaging-kafka deploy: replicas: 1 diff --git a/microprofile-reactive-messaging-kafka/charts/helm.yaml b/microprofile-reactive-messaging-kafka/charts/helm.yaml index dd49e31f25..38b3b82b3d 100644 --- a/microprofile-reactive-messaging-kafka/charts/helm.yaml +++ b/microprofile-reactive-messaging-kafka/charts/helm.yaml @@ -2,7 +2,7 @@ # Will need a diff commit in the upstream-to-product repository build: uri: https://github.com/wildfly/quickstart.git - ref: 31.x + ref: glow-preview contextDir: microprofile-reactive-messaging-kafka deploy: replicas: 1 diff --git a/microprofile-rest-client/README.adoc b/microprofile-rest-client/README.adoc index 718c4a2cf8..f6371e3949 100644 --- a/microprofile-rest-client/README.adoc +++ b/microprofile-rest-client/README.adoc @@ -1173,7 +1173,7 @@ ifndef::useHelmChartDir[] ---- build: uri: https://github.com/wildfly/quickstart.git - ref: 31.x + ref: glow-preview contextDir: microprofile-rest-client deploy: replicas: 1 diff --git a/microprofile-rest-client/charts/helm.yaml b/microprofile-rest-client/charts/helm.yaml index 75b14eca27..7fd80555a4 100644 --- a/microprofile-rest-client/charts/helm.yaml +++ b/microprofile-rest-client/charts/helm.yaml @@ -1,6 +1,6 @@ build: uri: https://github.com/wildfly/quickstart.git - ref: 31.x + ref: glow-preview contextDir: microprofile-rest-client deploy: replicas: 1 \ No newline at end of file diff --git a/numberguess/README.adoc b/numberguess/README.adoc index 9fb8773d22..c213c26b18 100644 --- a/numberguess/README.adoc +++ b/numberguess/README.adoc @@ -1132,7 +1132,7 @@ ifndef::useHelmChartDir[] ---- build: uri: https://github.com/wildfly/quickstart.git - ref: 31.x + ref: glow-preview contextDir: numberguess deploy: replicas: 1 diff --git a/numberguess/charts/helm.yaml b/numberguess/charts/helm.yaml index b6c0b22ee7..b2fd611224 100644 --- a/numberguess/charts/helm.yaml +++ b/numberguess/charts/helm.yaml @@ -1,6 +1,6 @@ build: uri: https://github.com/wildfly/quickstart.git - ref: 31.x + ref: glow-preview contextDir: numberguess deploy: replicas: 1 \ No newline at end of file diff --git a/opentelemetry-tracing/README.adoc b/opentelemetry-tracing/README.adoc index 4ded92abd1..92e3acc48d 100644 --- a/opentelemetry-tracing/README.adoc +++ b/opentelemetry-tracing/README.adoc @@ -1737,7 +1737,7 @@ build: <<<<<<< HEAD ref: main ======= - ref: 31.x + ref: glow-preview >>>>>>> b4ca9a43b66d96aff01d3da9f9714b65b9bb38b0 contextDir: opentelemetry-tracing deploy: diff --git a/opentelemetry-tracing/charts/helm.yaml b/opentelemetry-tracing/charts/helm.yaml index 6e044a49fe..01d6c0239c 100644 --- a/opentelemetry-tracing/charts/helm.yaml +++ b/opentelemetry-tracing/charts/helm.yaml @@ -3,7 +3,7 @@ build: <<<<<<< HEAD ref: main ======= - ref: 31.x + ref: glow-preview >>>>>>> b4ca9a43b66d96aff01d3da9f9714b65b9bb38b0 contextDir: opentelemetry-tracing deploy: diff --git a/remote-helloworld-mdb/README.adoc b/remote-helloworld-mdb/README.adoc index 8b0acddeea..53a416f2e6 100644 --- a/remote-helloworld-mdb/README.adoc +++ b/remote-helloworld-mdb/README.adoc @@ -1316,7 +1316,7 @@ ifndef::useHelmChartDir[] ---- build: uri: https://github.com/wildfly/quickstart.git - ref: 31.x + ref: glow-preview contextDir: remote-helloworld-mdb deploy: replicas: 1 @@ -1692,7 +1692,7 @@ ifndef::useHelmChartDir[] ---- build: uri: https://github.com/wildfly/quickstart.git - ref: 31.x + ref: glow-preview contextDir: remote-helloworld-mdb deploy: replicas: 1 diff --git a/remote-helloworld-mdb/charts/helm.yaml b/remote-helloworld-mdb/charts/helm.yaml index 6cb1ee62b9..f30bd5f113 100644 --- a/remote-helloworld-mdb/charts/helm.yaml +++ b/remote-helloworld-mdb/charts/helm.yaml @@ -1,6 +1,6 @@ build: uri: https://github.com/wildfly/quickstart.git - ref: 31.x + ref: glow-preview contextDir: remote-helloworld-mdb deploy: replicas: 1 diff --git a/servlet-async/README.adoc b/servlet-async/README.adoc index 7d3d7cbd87..38c9210c43 100644 --- a/servlet-async/README.adoc +++ b/servlet-async/README.adoc @@ -1136,7 +1136,7 @@ ifndef::useHelmChartDir[] ---- build: uri: https://github.com/wildfly/quickstart.git - ref: 31.x + ref: glow-preview contextDir: servlet-async deploy: replicas: 2 diff --git a/servlet-async/charts/helm.yaml b/servlet-async/charts/helm.yaml index 01fdecbd0a..ddaa67204f 100644 --- a/servlet-async/charts/helm.yaml +++ b/servlet-async/charts/helm.yaml @@ -1,6 +1,6 @@ build: uri: https://github.com/wildfly/quickstart.git - ref: 31.x + ref: glow-preview contextDir: servlet-async deploy: replicas: 2 \ No newline at end of file diff --git a/servlet-filterlistener/README.adoc b/servlet-filterlistener/README.adoc index c5fa706c6b..0c7898610d 100644 --- a/servlet-filterlistener/README.adoc +++ b/servlet-filterlistener/README.adoc @@ -1183,7 +1183,7 @@ ifndef::useHelmChartDir[] ---- build: uri: https://github.com/wildfly/quickstart.git - ref: 31.x + ref: glow-preview contextDir: servlet-filterlistener deploy: replicas: 2 diff --git a/servlet-filterlistener/charts/helm.yaml b/servlet-filterlistener/charts/helm.yaml index fbab31ea12..91b36ba3cb 100644 --- a/servlet-filterlistener/charts/helm.yaml +++ b/servlet-filterlistener/charts/helm.yaml @@ -1,6 +1,6 @@ build: uri: https://github.com/wildfly/quickstart.git - ref: 31.x + ref: glow-preview contextDir: servlet-filterlistener deploy: replicas: 2 \ No newline at end of file diff --git a/servlet-security/README.adoc b/servlet-security/README.adoc index e674d7db5f..1425b42741 100644 --- a/servlet-security/README.adoc +++ b/servlet-security/README.adoc @@ -1527,7 +1527,7 @@ ifndef::useHelmChartDir[] ---- build: uri: https://github.com/wildfly/quickstart.git - ref: 31.x + ref: glow-preview contextDir: servlet-security deploy: replicas: 1 diff --git a/servlet-security/charts/helm.yaml b/servlet-security/charts/helm.yaml index 195afdbcaa..44dadb3464 100644 --- a/servlet-security/charts/helm.yaml +++ b/servlet-security/charts/helm.yaml @@ -1,6 +1,6 @@ build: uri: https://github.com/wildfly/quickstart.git - ref: 31.x + ref: glow-preview contextDir: servlet-security deploy: replicas: 1 diff --git a/shared-doc/attributes.adoc b/shared-doc/attributes.adoc index 056627cb84..634b9059b9 100644 --- a/shared-doc/attributes.adoc +++ b/shared-doc/attributes.adoc @@ -62,7 +62,7 @@ ifndef::ProductRelease,EAPXPRelease[] :productImageVersion: 31.0 :githubRepoUrl: https://github.com/wildfly/quickstart/ :githubRepoCodeUrl: https://github.com/wildfly/quickstart.git -:WildFlyQuickStartRepoTag: 31.0.0.Final +:WildFlyQuickStartRepoTag: 31.0.0.Final-glow-preview :DocInfoProductName: Red Hat JBoss Enterprise Application Platform :DocInfoProductNameURL: red_hat_jboss_enterprise_application_platform // Do not update the following until after the 7.4 docs are published! diff --git a/spring-resteasy/README.adoc b/spring-resteasy/README.adoc index a948000918..14629a3a71 100644 --- a/spring-resteasy/README.adoc +++ b/spring-resteasy/README.adoc @@ -1162,7 +1162,7 @@ ifndef::useHelmChartDir[] ---- build: uri: https://github.com/wildfly/quickstart.git - ref: 31.x + ref: glow-preview contextDir: spring-resteasy deploy: replicas: 1 diff --git a/spring-resteasy/charts/helm.yaml b/spring-resteasy/charts/helm.yaml index 57fa81e435..6f13b03e83 100644 --- a/spring-resteasy/charts/helm.yaml +++ b/spring-resteasy/charts/helm.yaml @@ -1,6 +1,6 @@ build: uri: https://github.com/wildfly/quickstart.git - ref: 31.x + ref: glow-preview contextDir: spring-resteasy deploy: replicas: 1 \ No newline at end of file diff --git a/temperature-converter/README.adoc b/temperature-converter/README.adoc index 94664c7bd2..0b8a4bbcd4 100644 --- a/temperature-converter/README.adoc +++ b/temperature-converter/README.adoc @@ -1146,7 +1146,7 @@ ifndef::useHelmChartDir[] ---- build: uri: https://github.com/wildfly/quickstart.git - ref: 31.x + ref: glow-preview contextDir: temperature-converter deploy: replicas: 1 diff --git a/temperature-converter/charts/helm.yaml b/temperature-converter/charts/helm.yaml index a439698fb9..543894aca3 100644 --- a/temperature-converter/charts/helm.yaml +++ b/temperature-converter/charts/helm.yaml @@ -1,6 +1,6 @@ build: uri: https://github.com/wildfly/quickstart.git - ref: 31.x + ref: glow-preview contextDir: temperature-converter deploy: replicas: 1 \ No newline at end of file diff --git a/thread-racing/README.adoc b/thread-racing/README.adoc index 340aebe6e1..28250ab52f 100644 --- a/thread-racing/README.adoc +++ b/thread-racing/README.adoc @@ -1188,7 +1188,7 @@ ifndef::useHelmChartDir[] ---- build: uri: https://github.com/wildfly/quickstart.git - ref: 31.x + ref: glow-preview contextDir: thread-racing deploy: replicas: 1 diff --git a/thread-racing/charts/helm.yaml b/thread-racing/charts/helm.yaml index e6f316b589..e608ab5d4d 100644 --- a/thread-racing/charts/helm.yaml +++ b/thread-racing/charts/helm.yaml @@ -1,6 +1,6 @@ build: uri: https://github.com/wildfly/quickstart.git - ref: 31.x + ref: glow-preview contextDir: thread-racing deploy: replicas: 1 \ No newline at end of file diff --git a/todo-backend/charts/values.yaml b/todo-backend/charts/values.yaml index 61c45b430c..a428edf88e 100644 --- a/todo-backend/charts/values.yaml +++ b/todo-backend/charts/values.yaml @@ -21,7 +21,7 @@ postgresql: wildfly: build: uri: https://github.com/wildfly/quickstart.git - ref: 31.x + ref: glow-preview contextDir: todo-backend deploy: replicas: 1 diff --git a/websocket-endpoint/README.adoc b/websocket-endpoint/README.adoc index 13a5c24552..dccf72e30d 100644 --- a/websocket-endpoint/README.adoc +++ b/websocket-endpoint/README.adoc @@ -1144,7 +1144,7 @@ ifndef::useHelmChartDir[] ---- build: uri: https://github.com/wildfly/quickstart.git - ref: 31.x + ref: glow-preview contextDir: websocket-endpoint deploy: replicas: 2 diff --git a/websocket-endpoint/charts/helm.yaml b/websocket-endpoint/charts/helm.yaml index 2c62263662..323cfd5684 100644 --- a/websocket-endpoint/charts/helm.yaml +++ b/websocket-endpoint/charts/helm.yaml @@ -1,6 +1,6 @@ build: uri: https://github.com/wildfly/quickstart.git - ref: 31.x + ref: glow-preview contextDir: websocket-endpoint deploy: replicas: 2 \ No newline at end of file diff --git a/websocket-hello/README.adoc b/websocket-hello/README.adoc index f370ddaa24..168fd276d4 100644 --- a/websocket-hello/README.adoc +++ b/websocket-hello/README.adoc @@ -1150,7 +1150,7 @@ ifndef::useHelmChartDir[] ---- build: uri: https://github.com/wildfly/quickstart.git - ref: 31.x + ref: glow-preview contextDir: websocket-hello deploy: replicas: 2 diff --git a/websocket-hello/charts/helm.yaml b/websocket-hello/charts/helm.yaml index 473b08717d..ff17afd98a 100644 --- a/websocket-hello/charts/helm.yaml +++ b/websocket-hello/charts/helm.yaml @@ -1,6 +1,6 @@ build: uri: https://github.com/wildfly/quickstart.git - ref: 31.x + ref: glow-preview contextDir: websocket-hello deploy: replicas: 2 \ No newline at end of file From 37bb37117d11450709a60715145317945e9035cb Mon Sep 17 00:00:00 2001 From: Kabir Khan Date: Fri, 26 Jan 2024 14:58:35 +0000 Subject: [PATCH 16/26] Use 31.x-glow-preview --- batch-processing/README.adoc | 2 +- batch-processing/charts/helm.yaml | 2 +- bmt/README.adoc | 2 +- bmt/charts/helm.yaml | 2 +- cmt/README.adoc | 2 +- cmt/charts/helm.yaml | 2 +- ee-security/README.adoc | 2 +- ee-security/charts/helm.yaml | 2 +- ejb-remote/README.adoc | 2 +- ejb-remote/charts/helm.yaml | 2 +- ejb-timer/README.adoc | 2 +- ejb-timer/charts/helm.yaml | 2 +- ejb-txn-remote-call/charts/client.yaml | 2 +- ejb-txn-remote-call/charts/server.yaml | 2 +- helloworld-mdb/README.adoc | 2 +- helloworld-mdb/charts/helm.yaml | 2 +- helloworld-singleton/README.adoc | 2 +- helloworld-singleton/charts/helm.yaml | 2 +- helloworld-ws/README.adoc | 2 +- helloworld-ws/charts/helm.yaml | 2 +- helloworld/README.adoc | 2 +- helloworld/charts/helm.yaml | 2 +- hibernate/README.adoc | 2 +- hibernate/charts/helm.yaml | 2 +- jaxrs-client/README.adoc | 2 +- jaxrs-client/charts/helm.yaml | 2 +- jaxrs-jwt/src/charts/helm.yaml | 2 +- jaxws-ejb/README.adoc | 2 +- jaxws-ejb/charts/helm.yaml | 2 +- jaxws-retail/README.adoc | 2 +- jaxws-retail/charts/helm.yaml | 2 +- jsonp/README.adoc | 2 +- jsonp/charts/helm.yaml | 2 +- kitchensink/README.adoc | 2 +- kitchensink/charts/helm.yaml | 2 +- logging/src/charts/helm.yaml | 2 +- micrometer/README.adoc | 2 +- micrometer/charts/helm.yaml | 2 +- microprofile-config/README.adoc | 2 +- microprofile-config/charts/helm.yaml | 2 +- microprofile-fault-tolerance/README.adoc | 2 +- microprofile-fault-tolerance/charts/helm.yaml | 2 +- microprofile-health/README.adoc | 2 +- microprofile-health/charts/helm.yaml | 2 +- microprofile-jwt/README.adoc | 2 +- microprofile-jwt/charts/helm.yaml | 2 +- microprofile-lra/charts/helm.yaml | 2 +- microprofile-openapi/README.adoc | 2 +- microprofile-openapi/charts/helm.yaml | 2 +- microprofile-reactive-messaging-kafka/README.adoc | 2 +- microprofile-reactive-messaging-kafka/charts/helm.yaml | 2 +- microprofile-rest-client/README.adoc | 2 +- microprofile-rest-client/charts/helm.yaml | 2 +- numberguess/README.adoc | 2 +- numberguess/charts/helm.yaml | 2 +- opentelemetry-tracing/README.adoc | 2 +- opentelemetry-tracing/charts/helm.yaml | 2 +- remote-helloworld-mdb/README.adoc | 4 ++-- remote-helloworld-mdb/charts/helm.yaml | 2 +- servlet-async/README.adoc | 2 +- servlet-async/charts/helm.yaml | 2 +- servlet-filterlistener/README.adoc | 2 +- servlet-filterlistener/charts/helm.yaml | 2 +- servlet-security/README.adoc | 2 +- servlet-security/charts/helm.yaml | 2 +- spring-resteasy/README.adoc | 2 +- spring-resteasy/charts/helm.yaml | 2 +- temperature-converter/README.adoc | 2 +- temperature-converter/charts/helm.yaml | 2 +- thread-racing/README.adoc | 2 +- thread-racing/charts/helm.yaml | 2 +- todo-backend/charts/values.yaml | 2 +- websocket-endpoint/README.adoc | 2 +- websocket-endpoint/charts/helm.yaml | 2 +- websocket-hello/README.adoc | 2 +- websocket-hello/charts/helm.yaml | 2 +- 76 files changed, 77 insertions(+), 77 deletions(-) diff --git a/batch-processing/README.adoc b/batch-processing/README.adoc index 22b57e3538..9ad23ef87f 100644 --- a/batch-processing/README.adoc +++ b/batch-processing/README.adoc @@ -1258,7 +1258,7 @@ ifndef::useHelmChartDir[] ---- build: uri: https://github.com/wildfly/quickstart.git - ref: glow-preview + ref: 31.x-glow-preview contextDir: batch-processing deploy: replicas: 1 diff --git a/batch-processing/charts/helm.yaml b/batch-processing/charts/helm.yaml index 8d41fa3158..2412f51e61 100644 --- a/batch-processing/charts/helm.yaml +++ b/batch-processing/charts/helm.yaml @@ -1,6 +1,6 @@ build: uri: https://github.com/wildfly/quickstart.git - ref: glow-preview + ref: 31.x-glow-preview contextDir: batch-processing deploy: replicas: 1 \ No newline at end of file diff --git a/bmt/README.adoc b/bmt/README.adoc index 95cca2f4ba..043521c276 100644 --- a/bmt/README.adoc +++ b/bmt/README.adoc @@ -1190,7 +1190,7 @@ ifndef::useHelmChartDir[] ---- build: uri: https://github.com/wildfly/quickstart.git - ref: glow-preview + ref: 31.x-glow-preview contextDir: bmt deploy: replicas: 1 diff --git a/bmt/charts/helm.yaml b/bmt/charts/helm.yaml index 2eee203164..71ac503f40 100644 --- a/bmt/charts/helm.yaml +++ b/bmt/charts/helm.yaml @@ -1,6 +1,6 @@ build: uri: https://github.com/wildfly/quickstart.git - ref: glow-preview + ref: 31.x-glow-preview contextDir: bmt deploy: replicas: 1 \ No newline at end of file diff --git a/cmt/README.adoc b/cmt/README.adoc index 392f2c8dbd..e617d128e2 100644 --- a/cmt/README.adoc +++ b/cmt/README.adoc @@ -1203,7 +1203,7 @@ ifndef::useHelmChartDir[] ---- build: uri: https://github.com/wildfly/quickstart.git - ref: glow-preview + ref: 31.x-glow-preview contextDir: cmt deploy: replicas: 1 diff --git a/cmt/charts/helm.yaml b/cmt/charts/helm.yaml index b63c7752f7..7da950916f 100644 --- a/cmt/charts/helm.yaml +++ b/cmt/charts/helm.yaml @@ -1,6 +1,6 @@ build: uri: https://github.com/wildfly/quickstart.git - ref: glow-preview + ref: 31.x-glow-preview contextDir: cmt deploy: replicas: 1 \ No newline at end of file diff --git a/ee-security/README.adoc b/ee-security/README.adoc index 936be2ca89..7374f6603f 100644 --- a/ee-security/README.adoc +++ b/ee-security/README.adoc @@ -1407,7 +1407,7 @@ ifndef::useHelmChartDir[] ---- build: uri: https://github.com/wildfly/quickstart.git - ref: glow-preview + ref: 31.x-glow-preview contextDir: ee-security deploy: replicas: 1 diff --git a/ee-security/charts/helm.yaml b/ee-security/charts/helm.yaml index c8e82b84e7..62aba45234 100644 --- a/ee-security/charts/helm.yaml +++ b/ee-security/charts/helm.yaml @@ -1,6 +1,6 @@ build: uri: https://github.com/wildfly/quickstart.git - ref: glow-preview + ref: 31.x-glow-preview contextDir: ee-security deploy: replicas: 1 \ No newline at end of file diff --git a/ejb-remote/README.adoc b/ejb-remote/README.adoc index 37fb3ef00f..84c63e8ec9 100644 --- a/ejb-remote/README.adoc +++ b/ejb-remote/README.adoc @@ -1230,7 +1230,7 @@ ifndef::useHelmChartDir[] ---- build: uri: https://github.com/wildfly/quickstart.git - ref: glow-preview + ref: 31.x-glow-preview contextDir: ejb-remote deploy: replicas: 1 diff --git a/ejb-remote/charts/helm.yaml b/ejb-remote/charts/helm.yaml index 0ab4ff5a86..cc91eea6ab 100644 --- a/ejb-remote/charts/helm.yaml +++ b/ejb-remote/charts/helm.yaml @@ -1,6 +1,6 @@ build: uri: https://github.com/wildfly/quickstart.git - ref: glow-preview + ref: 31.x-glow-preview contextDir: ejb-remote deploy: replicas: 1 \ No newline at end of file diff --git a/ejb-timer/README.adoc b/ejb-timer/README.adoc index 173f3947ec..8a64246ddc 100644 --- a/ejb-timer/README.adoc +++ b/ejb-timer/README.adoc @@ -1180,7 +1180,7 @@ ifndef::useHelmChartDir[] ---- build: uri: https://github.com/wildfly/quickstart.git - ref: glow-preview + ref: 31.x-glow-preview contextDir: ejb-timer deploy: replicas: 1 diff --git a/ejb-timer/charts/helm.yaml b/ejb-timer/charts/helm.yaml index 179a1ff9fe..257733e509 100644 --- a/ejb-timer/charts/helm.yaml +++ b/ejb-timer/charts/helm.yaml @@ -1,6 +1,6 @@ build: uri: https://github.com/wildfly/quickstart.git - ref: glow-preview + ref: 31.x-glow-preview contextDir: ejb-timer deploy: replicas: 1 \ No newline at end of file diff --git a/ejb-txn-remote-call/charts/client.yaml b/ejb-txn-remote-call/charts/client.yaml index 1f7463567e..dc34d32db8 100644 --- a/ejb-txn-remote-call/charts/client.yaml +++ b/ejb-txn-remote-call/charts/client.yaml @@ -1,6 +1,6 @@ build: uri: https://github.com/wildfly/quickstart.git - ref: glow-preview + ref: 31.x-glow-preview contextDir: ejb-txn-remote-call/client env: - name: MAVEN_ARGS_APPEND diff --git a/ejb-txn-remote-call/charts/server.yaml b/ejb-txn-remote-call/charts/server.yaml index f8b486b3f7..af7fff38ea 100644 --- a/ejb-txn-remote-call/charts/server.yaml +++ b/ejb-txn-remote-call/charts/server.yaml @@ -1,6 +1,6 @@ build: uri: https://github.com/wildfly/quickstart.git - ref: glow-preview + ref: 31.x-glow-preview contextDir: ejb-txn-remote-call/server deploy: enabled: false diff --git a/helloworld-mdb/README.adoc b/helloworld-mdb/README.adoc index e61f618e8c..6bf842351e 100644 --- a/helloworld-mdb/README.adoc +++ b/helloworld-mdb/README.adoc @@ -1176,7 +1176,7 @@ ifndef::useHelmChartDir[] ---- build: uri: https://github.com/wildfly/quickstart.git - ref: glow-preview + ref: 31.x-glow-preview contextDir: helloworld-mdb deploy: replicas: 2 diff --git a/helloworld-mdb/charts/helm.yaml b/helloworld-mdb/charts/helm.yaml index 4f3df9ba57..3b5bb239ed 100644 --- a/helloworld-mdb/charts/helm.yaml +++ b/helloworld-mdb/charts/helm.yaml @@ -1,6 +1,6 @@ build: uri: https://github.com/wildfly/quickstart.git - ref: glow-preview + ref: 31.x-glow-preview contextDir: helloworld-mdb deploy: replicas: 2 \ No newline at end of file diff --git a/helloworld-singleton/README.adoc b/helloworld-singleton/README.adoc index 7c709c5d4a..0f19eebe33 100644 --- a/helloworld-singleton/README.adoc +++ b/helloworld-singleton/README.adoc @@ -1138,7 +1138,7 @@ ifndef::useHelmChartDir[] ---- build: uri: https://github.com/wildfly/quickstart.git - ref: glow-preview + ref: 31.x-glow-preview contextDir: helloworld-singleton deploy: replicas: 1 diff --git a/helloworld-singleton/charts/helm.yaml b/helloworld-singleton/charts/helm.yaml index 1dbcb894c9..82e70e949b 100644 --- a/helloworld-singleton/charts/helm.yaml +++ b/helloworld-singleton/charts/helm.yaml @@ -1,6 +1,6 @@ build: uri: https://github.com/wildfly/quickstart.git - ref: glow-preview + ref: 31.x-glow-preview contextDir: helloworld-singleton deploy: replicas: 1 \ No newline at end of file diff --git a/helloworld-ws/README.adoc b/helloworld-ws/README.adoc index 855f1fdfa4..5685d03f87 100644 --- a/helloworld-ws/README.adoc +++ b/helloworld-ws/README.adoc @@ -1120,7 +1120,7 @@ ifndef::useHelmChartDir[] ---- build: uri: https://github.com/wildfly/quickstart.git - ref: glow-preview + ref: 31.x-glow-preview contextDir: helloworld-ws deploy: replicas: 1 diff --git a/helloworld-ws/charts/helm.yaml b/helloworld-ws/charts/helm.yaml index 8239a28eea..6c08799cb4 100644 --- a/helloworld-ws/charts/helm.yaml +++ b/helloworld-ws/charts/helm.yaml @@ -1,6 +1,6 @@ build: uri: https://github.com/wildfly/quickstart.git - ref: glow-preview + ref: 31.x-glow-preview contextDir: helloworld-ws deploy: replicas: 1 \ No newline at end of file diff --git a/helloworld/README.adoc b/helloworld/README.adoc index ea02b25d2a..c4a0ac1b4a 100644 --- a/helloworld/README.adoc +++ b/helloworld/README.adoc @@ -1131,7 +1131,7 @@ ifndef::useHelmChartDir[] ---- build: uri: https://github.com/wildfly/quickstart.git - ref: glow-preview + ref: 31.x-glow-preview contextDir: helloworld deploy: replicas: 1 diff --git a/helloworld/charts/helm.yaml b/helloworld/charts/helm.yaml index c97bdf1f9c..4fa0713890 100644 --- a/helloworld/charts/helm.yaml +++ b/helloworld/charts/helm.yaml @@ -1,6 +1,6 @@ build: uri: https://github.com/wildfly/quickstart.git - ref: glow-preview + ref: 31.x-glow-preview contextDir: helloworld deploy: replicas: 1 \ No newline at end of file diff --git a/hibernate/README.adoc b/hibernate/README.adoc index 4e87f976d2..fa2ede4963 100644 --- a/hibernate/README.adoc +++ b/hibernate/README.adoc @@ -1446,7 +1446,7 @@ ifndef::useHelmChartDir[] ---- build: uri: https://github.com/wildfly/quickstart.git - ref: glow-preview + ref: 31.x-glow-preview contextDir: hibernate deploy: replicas: 1 diff --git a/hibernate/charts/helm.yaml b/hibernate/charts/helm.yaml index 6f8071d77b..e2fb2c2362 100644 --- a/hibernate/charts/helm.yaml +++ b/hibernate/charts/helm.yaml @@ -1,6 +1,6 @@ build: uri: https://github.com/wildfly/quickstart.git - ref: glow-preview + ref: 31.x-glow-preview contextDir: hibernate deploy: replicas: 1 \ No newline at end of file diff --git a/jaxrs-client/README.adoc b/jaxrs-client/README.adoc index 76574f21a5..ba8d83dc75 100644 --- a/jaxrs-client/README.adoc +++ b/jaxrs-client/README.adoc @@ -1153,7 +1153,7 @@ ifndef::useHelmChartDir[] ---- build: uri: https://github.com/wildfly/quickstart.git - ref: glow-preview + ref: 31.x-glow-preview contextDir: jaxrs-client deploy: replicas: 1 diff --git a/jaxrs-client/charts/helm.yaml b/jaxrs-client/charts/helm.yaml index 41356ef232..86612b0645 100644 --- a/jaxrs-client/charts/helm.yaml +++ b/jaxrs-client/charts/helm.yaml @@ -1,6 +1,6 @@ build: uri: https://github.com/wildfly/quickstart.git - ref: glow-preview + ref: 31.x-glow-preview contextDir: jaxrs-client deploy: replicas: 1 \ No newline at end of file diff --git a/jaxrs-jwt/src/charts/helm.yaml b/jaxrs-jwt/src/charts/helm.yaml index 732aced77e..c4648f890f 100644 --- a/jaxrs-jwt/src/charts/helm.yaml +++ b/jaxrs-jwt/src/charts/helm.yaml @@ -1,6 +1,6 @@ build: uri: https://github.com/wildfly/quickstart.git - ref: glow-preview + ref: 31.x-glow-preview contextDir: jaxrs-jwt deploy: replicas: 1 \ No newline at end of file diff --git a/jaxws-ejb/README.adoc b/jaxws-ejb/README.adoc index 64269121a2..32bbee261f 100644 --- a/jaxws-ejb/README.adoc +++ b/jaxws-ejb/README.adoc @@ -1136,7 +1136,7 @@ ifndef::useHelmChartDir[] ---- build: uri: https://github.com/wildfly/quickstart.git - ref: glow-preview + ref: 31.x-glow-preview contextDir: jaxws-ejb deploy: replicas: 1 diff --git a/jaxws-ejb/charts/helm.yaml b/jaxws-ejb/charts/helm.yaml index 11d27a359d..027faa3e96 100644 --- a/jaxws-ejb/charts/helm.yaml +++ b/jaxws-ejb/charts/helm.yaml @@ -1,6 +1,6 @@ build: uri: https://github.com/wildfly/quickstart.git - ref: glow-preview + ref: 31.x-glow-preview contextDir: jaxws-ejb deploy: replicas: 1 \ No newline at end of file diff --git a/jaxws-retail/README.adoc b/jaxws-retail/README.adoc index 4f9a2b2d83..989a42b20d 100644 --- a/jaxws-retail/README.adoc +++ b/jaxws-retail/README.adoc @@ -1133,7 +1133,7 @@ ifndef::useHelmChartDir[] ---- build: uri: https://github.com/wildfly/quickstart.git - ref: glow-preview + ref: 31.x-glow-preview contextDir: jaxws-retail deploy: replicas: 1 diff --git a/jaxws-retail/charts/helm.yaml b/jaxws-retail/charts/helm.yaml index 2e012a3ef7..b073c4c992 100644 --- a/jaxws-retail/charts/helm.yaml +++ b/jaxws-retail/charts/helm.yaml @@ -1,6 +1,6 @@ build: uri: https://github.com/wildfly/quickstart.git - ref: glow-preview + ref: 31.x-glow-preview contextDir: jaxws-retail deploy: replicas: 1 \ No newline at end of file diff --git a/jsonp/README.adoc b/jsonp/README.adoc index 1657756305..a599a5d687 100644 --- a/jsonp/README.adoc +++ b/jsonp/README.adoc @@ -1089,7 +1089,7 @@ ifndef::useHelmChartDir[] ---- build: uri: https://github.com/wildfly/quickstart.git - ref: glow-preview + ref: 31.x-glow-preview contextDir: jsonp deploy: replicas: 1 diff --git a/jsonp/charts/helm.yaml b/jsonp/charts/helm.yaml index dc3f87e291..fe786ee926 100644 --- a/jsonp/charts/helm.yaml +++ b/jsonp/charts/helm.yaml @@ -1,6 +1,6 @@ build: uri: https://github.com/wildfly/quickstart.git - ref: glow-preview + ref: 31.x-glow-preview contextDir: jsonp deploy: replicas: 1 \ No newline at end of file diff --git a/kitchensink/README.adoc b/kitchensink/README.adoc index 59393830ee..8491041c23 100644 --- a/kitchensink/README.adoc +++ b/kitchensink/README.adoc @@ -1264,7 +1264,7 @@ ifndef::useHelmChartDir[] ---- build: uri: https://github.com/wildfly/quickstart.git - ref: glow-preview + ref: 31.x-glow-preview contextDir: kitchensink deploy: replicas: 1 diff --git a/kitchensink/charts/helm.yaml b/kitchensink/charts/helm.yaml index 3bbedc2b5c..c88aa79f01 100644 --- a/kitchensink/charts/helm.yaml +++ b/kitchensink/charts/helm.yaml @@ -1,6 +1,6 @@ build: uri: https://github.com/wildfly/quickstart.git - ref: glow-preview + ref: 31.x-glow-preview contextDir: kitchensink deploy: replicas: 1 \ No newline at end of file diff --git a/logging/src/charts/helm.yaml b/logging/src/charts/helm.yaml index 1fcc721681..5e55fc60e8 100644 --- a/logging/src/charts/helm.yaml +++ b/logging/src/charts/helm.yaml @@ -1,6 +1,6 @@ build: uri: https://github.com/wildfly/quickstart.git - ref: glow-preview + ref: 31.x-glow-preview contextDir: logging deploy: replicas: 1 \ No newline at end of file diff --git a/micrometer/README.adoc b/micrometer/README.adoc index d3d53e1e53..d7ca455f67 100644 --- a/micrometer/README.adoc +++ b/micrometer/README.adoc @@ -1714,7 +1714,7 @@ build: <<<<<<< HEAD ref: main ======= - ref: glow-preview + ref: 31.x-glow-preview >>>>>>> b4ca9a43b66d96aff01d3da9f9714b65b9bb38b0 contextDir: micrometer deploy: diff --git a/micrometer/charts/helm.yaml b/micrometer/charts/helm.yaml index 41adca9cc4..5574b0fbb6 100644 --- a/micrometer/charts/helm.yaml +++ b/micrometer/charts/helm.yaml @@ -3,7 +3,7 @@ build: <<<<<<< HEAD ref: main ======= - ref: glow-preview + ref: 31.x-glow-preview >>>>>>> b4ca9a43b66d96aff01d3da9f9714b65b9bb38b0 contextDir: micrometer deploy: diff --git a/microprofile-config/README.adoc b/microprofile-config/README.adoc index 5dd63624c4..17cc930f89 100644 --- a/microprofile-config/README.adoc +++ b/microprofile-config/README.adoc @@ -1864,7 +1864,7 @@ ifndef::useHelmChartDir[] ---- build: uri: https://github.com/wildfly/quickstart.git - ref: glow-preview + ref: 31.x-glow-preview contextDir: microprofile-config deploy: replicas: 1 diff --git a/microprofile-config/charts/helm.yaml b/microprofile-config/charts/helm.yaml index b2395f0b0d..c4e557dce4 100644 --- a/microprofile-config/charts/helm.yaml +++ b/microprofile-config/charts/helm.yaml @@ -1,6 +1,6 @@ build: uri: https://github.com/wildfly/quickstart.git - ref: glow-preview + ref: 31.x-glow-preview contextDir: microprofile-config deploy: replicas: 1 \ No newline at end of file diff --git a/microprofile-fault-tolerance/README.adoc b/microprofile-fault-tolerance/README.adoc index 728251076d..490af9bcb7 100644 --- a/microprofile-fault-tolerance/README.adoc +++ b/microprofile-fault-tolerance/README.adoc @@ -1695,7 +1695,7 @@ ifndef::useHelmChartDir[] ---- build: uri: https://github.com/wildfly/quickstart.git - ref: glow-preview + ref: 31.x-glow-preview contextDir: microprofile-fault-tolerance deploy: replicas: 1 diff --git a/microprofile-fault-tolerance/charts/helm.yaml b/microprofile-fault-tolerance/charts/helm.yaml index 0325db3def..646c06792a 100644 --- a/microprofile-fault-tolerance/charts/helm.yaml +++ b/microprofile-fault-tolerance/charts/helm.yaml @@ -1,6 +1,6 @@ build: uri: https://github.com/wildfly/quickstart.git - ref: glow-preview + ref: 31.x-glow-preview contextDir: microprofile-fault-tolerance deploy: replicas: 1 diff --git a/microprofile-health/README.adoc b/microprofile-health/README.adoc index 92a19dc04e..2b3e30ed56 100644 --- a/microprofile-health/README.adoc +++ b/microprofile-health/README.adoc @@ -1537,7 +1537,7 @@ ifndef::useHelmChartDir[] ---- build: uri: https://github.com/wildfly/quickstart.git - ref: glow-preview + ref: 31.x-glow-preview contextDir: microprofile-health deploy: replicas: 1 diff --git a/microprofile-health/charts/helm.yaml b/microprofile-health/charts/helm.yaml index 85e9ddce5f..2a0e25b79c 100644 --- a/microprofile-health/charts/helm.yaml +++ b/microprofile-health/charts/helm.yaml @@ -1,6 +1,6 @@ build: uri: https://github.com/wildfly/quickstart.git - ref: glow-preview + ref: 31.x-glow-preview contextDir: microprofile-health deploy: replicas: 1 \ No newline at end of file diff --git a/microprofile-jwt/README.adoc b/microprofile-jwt/README.adoc index fdf78ff4c9..38a4c9d966 100644 --- a/microprofile-jwt/README.adoc +++ b/microprofile-jwt/README.adoc @@ -1618,7 +1618,7 @@ ifndef::useHelmChartDir[] ---- build: uri: https://github.com/wildfly/quickstart.git - ref: glow-preview + ref: 31.x-glow-preview contextDir: microprofile-jwt deploy: replicas: 1 diff --git a/microprofile-jwt/charts/helm.yaml b/microprofile-jwt/charts/helm.yaml index 9fd808fb94..c00020fc88 100644 --- a/microprofile-jwt/charts/helm.yaml +++ b/microprofile-jwt/charts/helm.yaml @@ -1,6 +1,6 @@ build: uri: https://github.com/wildfly/quickstart.git - ref: glow-preview + ref: 31.x-glow-preview contextDir: microprofile-jwt deploy: replicas: 1 \ No newline at end of file diff --git a/microprofile-lra/charts/helm.yaml b/microprofile-lra/charts/helm.yaml index 36843e02e0..a25988f5d7 100644 --- a/microprofile-lra/charts/helm.yaml +++ b/microprofile-lra/charts/helm.yaml @@ -1,6 +1,6 @@ build: uri: https://github.com/wildfly/quickstart.git - ref: glow-preview + ref: 31.x-glow-preview contextDir: microprofile-lra deploy: replicas: 1 diff --git a/microprofile-openapi/README.adoc b/microprofile-openapi/README.adoc index f5248e8dc5..df83c0fd4d 100644 --- a/microprofile-openapi/README.adoc +++ b/microprofile-openapi/README.adoc @@ -1141,7 +1141,7 @@ ifndef::useHelmChartDir[] ---- build: uri: https://github.com/wildfly/quickstart.git - ref: glow-preview + ref: 31.x-glow-preview contextDir: microprofile-openapi deploy: replicas: 1 diff --git a/microprofile-openapi/charts/helm.yaml b/microprofile-openapi/charts/helm.yaml index 8247e435a8..553967da2a 100644 --- a/microprofile-openapi/charts/helm.yaml +++ b/microprofile-openapi/charts/helm.yaml @@ -1,6 +1,6 @@ build: uri: https://github.com/wildfly/quickstart.git - ref: glow-preview + ref: 31.x-glow-preview contextDir: microprofile-openapi deploy: replicas: 1 \ No newline at end of file diff --git a/microprofile-reactive-messaging-kafka/README.adoc b/microprofile-reactive-messaging-kafka/README.adoc index 2ac46ca93c..b0806c70a2 100644 --- a/microprofile-reactive-messaging-kafka/README.adoc +++ b/microprofile-reactive-messaging-kafka/README.adoc @@ -2134,7 +2134,7 @@ ifndef::useHelmChartDir[] # Will need a diff commit in the upstream-to-product repository build: uri: https://github.com/wildfly/quickstart.git - ref: glow-preview + ref: 31.x-glow-preview contextDir: microprofile-reactive-messaging-kafka deploy: replicas: 1 diff --git a/microprofile-reactive-messaging-kafka/charts/helm.yaml b/microprofile-reactive-messaging-kafka/charts/helm.yaml index 38b3b82b3d..13e608398c 100644 --- a/microprofile-reactive-messaging-kafka/charts/helm.yaml +++ b/microprofile-reactive-messaging-kafka/charts/helm.yaml @@ -2,7 +2,7 @@ # Will need a diff commit in the upstream-to-product repository build: uri: https://github.com/wildfly/quickstart.git - ref: glow-preview + ref: 31.x-glow-preview contextDir: microprofile-reactive-messaging-kafka deploy: replicas: 1 diff --git a/microprofile-rest-client/README.adoc b/microprofile-rest-client/README.adoc index f6371e3949..e77dbef95e 100644 --- a/microprofile-rest-client/README.adoc +++ b/microprofile-rest-client/README.adoc @@ -1173,7 +1173,7 @@ ifndef::useHelmChartDir[] ---- build: uri: https://github.com/wildfly/quickstart.git - ref: glow-preview + ref: 31.x-glow-preview contextDir: microprofile-rest-client deploy: replicas: 1 diff --git a/microprofile-rest-client/charts/helm.yaml b/microprofile-rest-client/charts/helm.yaml index 7fd80555a4..5c83af2326 100644 --- a/microprofile-rest-client/charts/helm.yaml +++ b/microprofile-rest-client/charts/helm.yaml @@ -1,6 +1,6 @@ build: uri: https://github.com/wildfly/quickstart.git - ref: glow-preview + ref: 31.x-glow-preview contextDir: microprofile-rest-client deploy: replicas: 1 \ No newline at end of file diff --git a/numberguess/README.adoc b/numberguess/README.adoc index c213c26b18..dc76515eea 100644 --- a/numberguess/README.adoc +++ b/numberguess/README.adoc @@ -1132,7 +1132,7 @@ ifndef::useHelmChartDir[] ---- build: uri: https://github.com/wildfly/quickstart.git - ref: glow-preview + ref: 31.x-glow-preview contextDir: numberguess deploy: replicas: 1 diff --git a/numberguess/charts/helm.yaml b/numberguess/charts/helm.yaml index b2fd611224..69134c268f 100644 --- a/numberguess/charts/helm.yaml +++ b/numberguess/charts/helm.yaml @@ -1,6 +1,6 @@ build: uri: https://github.com/wildfly/quickstart.git - ref: glow-preview + ref: 31.x-glow-preview contextDir: numberguess deploy: replicas: 1 \ No newline at end of file diff --git a/opentelemetry-tracing/README.adoc b/opentelemetry-tracing/README.adoc index 92e3acc48d..23e658e72f 100644 --- a/opentelemetry-tracing/README.adoc +++ b/opentelemetry-tracing/README.adoc @@ -1737,7 +1737,7 @@ build: <<<<<<< HEAD ref: main ======= - ref: glow-preview + ref: 31.x-glow-preview >>>>>>> b4ca9a43b66d96aff01d3da9f9714b65b9bb38b0 contextDir: opentelemetry-tracing deploy: diff --git a/opentelemetry-tracing/charts/helm.yaml b/opentelemetry-tracing/charts/helm.yaml index 01d6c0239c..b6df778845 100644 --- a/opentelemetry-tracing/charts/helm.yaml +++ b/opentelemetry-tracing/charts/helm.yaml @@ -3,7 +3,7 @@ build: <<<<<<< HEAD ref: main ======= - ref: glow-preview + ref: 31.x-glow-preview >>>>>>> b4ca9a43b66d96aff01d3da9f9714b65b9bb38b0 contextDir: opentelemetry-tracing deploy: diff --git a/remote-helloworld-mdb/README.adoc b/remote-helloworld-mdb/README.adoc index 53a416f2e6..d9b3963516 100644 --- a/remote-helloworld-mdb/README.adoc +++ b/remote-helloworld-mdb/README.adoc @@ -1316,7 +1316,7 @@ ifndef::useHelmChartDir[] ---- build: uri: https://github.com/wildfly/quickstart.git - ref: glow-preview + ref: 31.x-glow-preview contextDir: remote-helloworld-mdb deploy: replicas: 1 @@ -1692,7 +1692,7 @@ ifndef::useHelmChartDir[] ---- build: uri: https://github.com/wildfly/quickstart.git - ref: glow-preview + ref: 31.x-glow-preview contextDir: remote-helloworld-mdb deploy: replicas: 1 diff --git a/remote-helloworld-mdb/charts/helm.yaml b/remote-helloworld-mdb/charts/helm.yaml index f30bd5f113..e299c30c5e 100644 --- a/remote-helloworld-mdb/charts/helm.yaml +++ b/remote-helloworld-mdb/charts/helm.yaml @@ -1,6 +1,6 @@ build: uri: https://github.com/wildfly/quickstart.git - ref: glow-preview + ref: 31.x-glow-preview contextDir: remote-helloworld-mdb deploy: replicas: 1 diff --git a/servlet-async/README.adoc b/servlet-async/README.adoc index 38c9210c43..db5a2db96c 100644 --- a/servlet-async/README.adoc +++ b/servlet-async/README.adoc @@ -1136,7 +1136,7 @@ ifndef::useHelmChartDir[] ---- build: uri: https://github.com/wildfly/quickstart.git - ref: glow-preview + ref: 31.x-glow-preview contextDir: servlet-async deploy: replicas: 2 diff --git a/servlet-async/charts/helm.yaml b/servlet-async/charts/helm.yaml index ddaa67204f..fd09276aa8 100644 --- a/servlet-async/charts/helm.yaml +++ b/servlet-async/charts/helm.yaml @@ -1,6 +1,6 @@ build: uri: https://github.com/wildfly/quickstart.git - ref: glow-preview + ref: 31.x-glow-preview contextDir: servlet-async deploy: replicas: 2 \ No newline at end of file diff --git a/servlet-filterlistener/README.adoc b/servlet-filterlistener/README.adoc index 0c7898610d..cdde7bb9f7 100644 --- a/servlet-filterlistener/README.adoc +++ b/servlet-filterlistener/README.adoc @@ -1183,7 +1183,7 @@ ifndef::useHelmChartDir[] ---- build: uri: https://github.com/wildfly/quickstart.git - ref: glow-preview + ref: 31.x-glow-preview contextDir: servlet-filterlistener deploy: replicas: 2 diff --git a/servlet-filterlistener/charts/helm.yaml b/servlet-filterlistener/charts/helm.yaml index 91b36ba3cb..eb0736f675 100644 --- a/servlet-filterlistener/charts/helm.yaml +++ b/servlet-filterlistener/charts/helm.yaml @@ -1,6 +1,6 @@ build: uri: https://github.com/wildfly/quickstart.git - ref: glow-preview + ref: 31.x-glow-preview contextDir: servlet-filterlistener deploy: replicas: 2 \ No newline at end of file diff --git a/servlet-security/README.adoc b/servlet-security/README.adoc index 1425b42741..0b9797843d 100644 --- a/servlet-security/README.adoc +++ b/servlet-security/README.adoc @@ -1527,7 +1527,7 @@ ifndef::useHelmChartDir[] ---- build: uri: https://github.com/wildfly/quickstart.git - ref: glow-preview + ref: 31.x-glow-preview contextDir: servlet-security deploy: replicas: 1 diff --git a/servlet-security/charts/helm.yaml b/servlet-security/charts/helm.yaml index 44dadb3464..48e1cdaba6 100644 --- a/servlet-security/charts/helm.yaml +++ b/servlet-security/charts/helm.yaml @@ -1,6 +1,6 @@ build: uri: https://github.com/wildfly/quickstart.git - ref: glow-preview + ref: 31.x-glow-preview contextDir: servlet-security deploy: replicas: 1 diff --git a/spring-resteasy/README.adoc b/spring-resteasy/README.adoc index 14629a3a71..01f6d7bd17 100644 --- a/spring-resteasy/README.adoc +++ b/spring-resteasy/README.adoc @@ -1162,7 +1162,7 @@ ifndef::useHelmChartDir[] ---- build: uri: https://github.com/wildfly/quickstart.git - ref: glow-preview + ref: 31.x-glow-preview contextDir: spring-resteasy deploy: replicas: 1 diff --git a/spring-resteasy/charts/helm.yaml b/spring-resteasy/charts/helm.yaml index 6f13b03e83..776f02f0b2 100644 --- a/spring-resteasy/charts/helm.yaml +++ b/spring-resteasy/charts/helm.yaml @@ -1,6 +1,6 @@ build: uri: https://github.com/wildfly/quickstart.git - ref: glow-preview + ref: 31.x-glow-preview contextDir: spring-resteasy deploy: replicas: 1 \ No newline at end of file diff --git a/temperature-converter/README.adoc b/temperature-converter/README.adoc index 0b8a4bbcd4..873fd6f5a8 100644 --- a/temperature-converter/README.adoc +++ b/temperature-converter/README.adoc @@ -1146,7 +1146,7 @@ ifndef::useHelmChartDir[] ---- build: uri: https://github.com/wildfly/quickstart.git - ref: glow-preview + ref: 31.x-glow-preview contextDir: temperature-converter deploy: replicas: 1 diff --git a/temperature-converter/charts/helm.yaml b/temperature-converter/charts/helm.yaml index 543894aca3..a2ec7ca00b 100644 --- a/temperature-converter/charts/helm.yaml +++ b/temperature-converter/charts/helm.yaml @@ -1,6 +1,6 @@ build: uri: https://github.com/wildfly/quickstart.git - ref: glow-preview + ref: 31.x-glow-preview contextDir: temperature-converter deploy: replicas: 1 \ No newline at end of file diff --git a/thread-racing/README.adoc b/thread-racing/README.adoc index 28250ab52f..95042cc455 100644 --- a/thread-racing/README.adoc +++ b/thread-racing/README.adoc @@ -1188,7 +1188,7 @@ ifndef::useHelmChartDir[] ---- build: uri: https://github.com/wildfly/quickstart.git - ref: glow-preview + ref: 31.x-glow-preview contextDir: thread-racing deploy: replicas: 1 diff --git a/thread-racing/charts/helm.yaml b/thread-racing/charts/helm.yaml index e608ab5d4d..ee0cdb1764 100644 --- a/thread-racing/charts/helm.yaml +++ b/thread-racing/charts/helm.yaml @@ -1,6 +1,6 @@ build: uri: https://github.com/wildfly/quickstart.git - ref: glow-preview + ref: 31.x-glow-preview contextDir: thread-racing deploy: replicas: 1 \ No newline at end of file diff --git a/todo-backend/charts/values.yaml b/todo-backend/charts/values.yaml index a428edf88e..4fa0cbe1e1 100644 --- a/todo-backend/charts/values.yaml +++ b/todo-backend/charts/values.yaml @@ -21,7 +21,7 @@ postgresql: wildfly: build: uri: https://github.com/wildfly/quickstart.git - ref: glow-preview + ref: 31.x-glow-preview contextDir: todo-backend deploy: replicas: 1 diff --git a/websocket-endpoint/README.adoc b/websocket-endpoint/README.adoc index dccf72e30d..fa5b67b2d2 100644 --- a/websocket-endpoint/README.adoc +++ b/websocket-endpoint/README.adoc @@ -1144,7 +1144,7 @@ ifndef::useHelmChartDir[] ---- build: uri: https://github.com/wildfly/quickstart.git - ref: glow-preview + ref: 31.x-glow-preview contextDir: websocket-endpoint deploy: replicas: 2 diff --git a/websocket-endpoint/charts/helm.yaml b/websocket-endpoint/charts/helm.yaml index 323cfd5684..52af5f7ed9 100644 --- a/websocket-endpoint/charts/helm.yaml +++ b/websocket-endpoint/charts/helm.yaml @@ -1,6 +1,6 @@ build: uri: https://github.com/wildfly/quickstart.git - ref: glow-preview + ref: 31.x-glow-preview contextDir: websocket-endpoint deploy: replicas: 2 \ No newline at end of file diff --git a/websocket-hello/README.adoc b/websocket-hello/README.adoc index 168fd276d4..6b8c7470b4 100644 --- a/websocket-hello/README.adoc +++ b/websocket-hello/README.adoc @@ -1150,7 +1150,7 @@ ifndef::useHelmChartDir[] ---- build: uri: https://github.com/wildfly/quickstart.git - ref: glow-preview + ref: 31.x-glow-preview contextDir: websocket-hello deploy: replicas: 2 diff --git a/websocket-hello/charts/helm.yaml b/websocket-hello/charts/helm.yaml index ff17afd98a..d89c2ea347 100644 --- a/websocket-hello/charts/helm.yaml +++ b/websocket-hello/charts/helm.yaml @@ -1,6 +1,6 @@ build: uri: https://github.com/wildfly/quickstart.git - ref: glow-preview + ref: 31.x-glow-preview contextDir: websocket-hello deploy: replicas: 2 \ No newline at end of file From ee920d29cf98c018bdfdc3da302d2037ac741e69 Mon Sep 17 00:00:00 2001 From: kabir Date: Fri, 26 Jan 2024 16:50:25 +0000 Subject: [PATCH 17/26] Commit from GitHub Actions (WildFly Quickstarts Update 'README.adoc's) --- README.adoc | 2 +- batch-processing/README.adoc | 2 +- bmt/README.adoc | 2 +- cmt/README.adoc | 2 +- contacts-jquerymobile/README.adoc | 2 +- ee-security/README.adoc | 2 +- ejb-multi-server/README.adoc | 2 +- ejb-remote/README.adoc | 2 +- ejb-security-context-propagation/README.adoc | 2 +- ejb-security-programmatic-auth/README.adoc | 2 +- ejb-throws-exception/README.adoc | 2 +- ejb-timer/README.adoc | 2 +- ejb-txn-remote-call/README.adoc | 2 +- ha-singleton-deployment/README.adoc | 2 +- ha-singleton-service/README.adoc | 2 +- helloworld-jms/README.adoc | 2 +- helloworld-mdb/README.adoc | 2 +- helloworld-mutual-ssl-secured/README.adoc | 2 +- helloworld-mutual-ssl/README.adoc | 2 +- helloworld-singleton/README.adoc | 2 +- helloworld-ws/README.adoc | 2 +- helloworld/README.adoc | 2 +- hibernate/README.adoc | 2 +- http-custom-mechanism/README.adoc | 2 +- jaxrs-client/README.adoc | 2 +- jaxrs-jwt/README.adoc | 2 +- jaxws-ejb/README.adoc | 2 +- jaxws-retail/README.adoc | 2 +- jsonp/README.adoc | 2 +- jta-crash-rec/README.adoc | 2 +- jts/README.adoc | 2 +- kitchensink/README.adoc | 2 +- logging/README.adoc | 2 +- mail/README.adoc | 2 +- messaging-clustering-singleton/README.adoc | 2 +- micrometer/README.adoc | 2 +- microprofile-config/README.adoc | 2 +- microprofile-fault-tolerance/README.adoc | 2 +- microprofile-health/README.adoc | 2 +- microprofile-jwt/README.adoc | 2 +- microprofile-lra/README.adoc | 2 +- microprofile-openapi/README.adoc | 2 +- microprofile-reactive-messaging-kafka/README.adoc | 2 +- microprofile-rest-client/README.adoc | 2 +- numberguess/README.adoc | 2 +- opentelemetry-tracing/README.adoc | 2 +- remote-helloworld-mdb/README.adoc | 2 +- security-domain-to-domain/README.adoc | 2 +- servlet-async/README.adoc | 2 +- servlet-filterlistener/README.adoc | 2 +- servlet-security/README.adoc | 2 +- spring-resteasy/README.adoc | 2 +- tasks-jsf/README.adoc | 2 +- temperature-converter/README.adoc | 2 +- template/README.adoc | 2 +- thread-racing/README.adoc | 2 +- todo-backend/README.adoc | 2 +- websocket-endpoint/README.adoc | 2 +- websocket-hello/README.adoc | 2 +- wsat-simple/README.adoc | 2 +- wsba-coordinator-completion-simple/README.adoc | 2 +- wsba-participant-completion-simple/README.adoc | 2 +- 62 files changed, 62 insertions(+), 62 deletions(-) diff --git a/README.adoc b/README.adoc index a485d4daad..d3b1a7349c 100644 --- a/README.adoc +++ b/README.adoc @@ -62,7 +62,7 @@ ifndef::ProductRelease,EAPXPRelease[] :productImageVersion: 31.0 :githubRepoUrl: https://github.com/wildfly/quickstart/ :githubRepoCodeUrl: https://github.com/wildfly/quickstart.git -:WildFlyQuickStartRepoTag: 31.0.0.Final +:WildFlyQuickStartRepoTag: 31.0.0.Final-glow-preview :DocInfoProductName: Red Hat JBoss Enterprise Application Platform :DocInfoProductNameURL: red_hat_jboss_enterprise_application_platform // Do not update the following until after the 7.4 docs are published! diff --git a/batch-processing/README.adoc b/batch-processing/README.adoc index 9ad23ef87f..321954f25b 100644 --- a/batch-processing/README.adoc +++ b/batch-processing/README.adoc @@ -66,7 +66,7 @@ ifndef::ProductRelease,EAPXPRelease[] :productImageVersion: 31.0 :githubRepoUrl: https://github.com/wildfly/quickstart/ :githubRepoCodeUrl: https://github.com/wildfly/quickstart.git -:WildFlyQuickStartRepoTag: 31.0.0.Final +:WildFlyQuickStartRepoTag: 31.0.0.Final-glow-preview :DocInfoProductName: Red Hat JBoss Enterprise Application Platform :DocInfoProductNameURL: red_hat_jboss_enterprise_application_platform // Do not update the following until after the 7.4 docs are published! diff --git a/bmt/README.adoc b/bmt/README.adoc index 043521c276..440bdfa7cd 100644 --- a/bmt/README.adoc +++ b/bmt/README.adoc @@ -66,7 +66,7 @@ ifndef::ProductRelease,EAPXPRelease[] :productImageVersion: 31.0 :githubRepoUrl: https://github.com/wildfly/quickstart/ :githubRepoCodeUrl: https://github.com/wildfly/quickstart.git -:WildFlyQuickStartRepoTag: 31.0.0.Final +:WildFlyQuickStartRepoTag: 31.0.0.Final-glow-preview :DocInfoProductName: Red Hat JBoss Enterprise Application Platform :DocInfoProductNameURL: red_hat_jboss_enterprise_application_platform // Do not update the following until after the 7.4 docs are published! diff --git a/cmt/README.adoc b/cmt/README.adoc index e617d128e2..5a59ae6416 100644 --- a/cmt/README.adoc +++ b/cmt/README.adoc @@ -66,7 +66,7 @@ ifndef::ProductRelease,EAPXPRelease[] :productImageVersion: 31.0 :githubRepoUrl: https://github.com/wildfly/quickstart/ :githubRepoCodeUrl: https://github.com/wildfly/quickstart.git -:WildFlyQuickStartRepoTag: 31.0.0.Final +:WildFlyQuickStartRepoTag: 31.0.0.Final-glow-preview :DocInfoProductName: Red Hat JBoss Enterprise Application Platform :DocInfoProductNameURL: red_hat_jboss_enterprise_application_platform // Do not update the following until after the 7.4 docs are published! diff --git a/contacts-jquerymobile/README.adoc b/contacts-jquerymobile/README.adoc index 33e6d998af..ed4b639659 100644 --- a/contacts-jquerymobile/README.adoc +++ b/contacts-jquerymobile/README.adoc @@ -66,7 +66,7 @@ ifndef::ProductRelease,EAPXPRelease[] :productImageVersion: 31.0 :githubRepoUrl: https://github.com/wildfly/quickstart/ :githubRepoCodeUrl: https://github.com/wildfly/quickstart.git -:WildFlyQuickStartRepoTag: 31.0.0.Final +:WildFlyQuickStartRepoTag: 31.0.0.Final-glow-preview :DocInfoProductName: Red Hat JBoss Enterprise Application Platform :DocInfoProductNameURL: red_hat_jboss_enterprise_application_platform // Do not update the following until after the 7.4 docs are published! diff --git a/ee-security/README.adoc b/ee-security/README.adoc index 7374f6603f..ca825589aa 100644 --- a/ee-security/README.adoc +++ b/ee-security/README.adoc @@ -66,7 +66,7 @@ ifndef::ProductRelease,EAPXPRelease[] :productImageVersion: 31.0 :githubRepoUrl: https://github.com/wildfly/quickstart/ :githubRepoCodeUrl: https://github.com/wildfly/quickstart.git -:WildFlyQuickStartRepoTag: 31.0.0.Final +:WildFlyQuickStartRepoTag: 31.0.0.Final-glow-preview :DocInfoProductName: Red Hat JBoss Enterprise Application Platform :DocInfoProductNameURL: red_hat_jboss_enterprise_application_platform // Do not update the following until after the 7.4 docs are published! diff --git a/ejb-multi-server/README.adoc b/ejb-multi-server/README.adoc index caa0e9942e..119082d2a6 100644 --- a/ejb-multi-server/README.adoc +++ b/ejb-multi-server/README.adoc @@ -66,7 +66,7 @@ ifndef::ProductRelease,EAPXPRelease[] :productImageVersion: 31.0 :githubRepoUrl: https://github.com/wildfly/quickstart/ :githubRepoCodeUrl: https://github.com/wildfly/quickstart.git -:WildFlyQuickStartRepoTag: 31.0.0.Final +:WildFlyQuickStartRepoTag: 31.0.0.Final-glow-preview :DocInfoProductName: Red Hat JBoss Enterprise Application Platform :DocInfoProductNameURL: red_hat_jboss_enterprise_application_platform // Do not update the following until after the 7.4 docs are published! diff --git a/ejb-remote/README.adoc b/ejb-remote/README.adoc index 84c63e8ec9..bb3b7aa394 100644 --- a/ejb-remote/README.adoc +++ b/ejb-remote/README.adoc @@ -66,7 +66,7 @@ ifndef::ProductRelease,EAPXPRelease[] :productImageVersion: 31.0 :githubRepoUrl: https://github.com/wildfly/quickstart/ :githubRepoCodeUrl: https://github.com/wildfly/quickstart.git -:WildFlyQuickStartRepoTag: 31.0.0.Final +:WildFlyQuickStartRepoTag: 31.0.0.Final-glow-preview :DocInfoProductName: Red Hat JBoss Enterprise Application Platform :DocInfoProductNameURL: red_hat_jboss_enterprise_application_platform // Do not update the following until after the 7.4 docs are published! diff --git a/ejb-security-context-propagation/README.adoc b/ejb-security-context-propagation/README.adoc index 55ad93744c..a04f344c94 100644 --- a/ejb-security-context-propagation/README.adoc +++ b/ejb-security-context-propagation/README.adoc @@ -66,7 +66,7 @@ ifndef::ProductRelease,EAPXPRelease[] :productImageVersion: 31.0 :githubRepoUrl: https://github.com/wildfly/quickstart/ :githubRepoCodeUrl: https://github.com/wildfly/quickstart.git -:WildFlyQuickStartRepoTag: 31.0.0.Final +:WildFlyQuickStartRepoTag: 31.0.0.Final-glow-preview :DocInfoProductName: Red Hat JBoss Enterprise Application Platform :DocInfoProductNameURL: red_hat_jboss_enterprise_application_platform // Do not update the following until after the 7.4 docs are published! diff --git a/ejb-security-programmatic-auth/README.adoc b/ejb-security-programmatic-auth/README.adoc index 1b2b784f2e..881b7c0cd9 100644 --- a/ejb-security-programmatic-auth/README.adoc +++ b/ejb-security-programmatic-auth/README.adoc @@ -66,7 +66,7 @@ ifndef::ProductRelease,EAPXPRelease[] :productImageVersion: 31.0 :githubRepoUrl: https://github.com/wildfly/quickstart/ :githubRepoCodeUrl: https://github.com/wildfly/quickstart.git -:WildFlyQuickStartRepoTag: 31.0.0.Final +:WildFlyQuickStartRepoTag: 31.0.0.Final-glow-preview :DocInfoProductName: Red Hat JBoss Enterprise Application Platform :DocInfoProductNameURL: red_hat_jboss_enterprise_application_platform // Do not update the following until after the 7.4 docs are published! diff --git a/ejb-throws-exception/README.adoc b/ejb-throws-exception/README.adoc index 78c99c6f80..f114477874 100644 --- a/ejb-throws-exception/README.adoc +++ b/ejb-throws-exception/README.adoc @@ -66,7 +66,7 @@ ifndef::ProductRelease,EAPXPRelease[] :productImageVersion: 31.0 :githubRepoUrl: https://github.com/wildfly/quickstart/ :githubRepoCodeUrl: https://github.com/wildfly/quickstart.git -:WildFlyQuickStartRepoTag: 31.0.0.Final +:WildFlyQuickStartRepoTag: 31.0.0.Final-glow-preview :DocInfoProductName: Red Hat JBoss Enterprise Application Platform :DocInfoProductNameURL: red_hat_jboss_enterprise_application_platform // Do not update the following until after the 7.4 docs are published! diff --git a/ejb-timer/README.adoc b/ejb-timer/README.adoc index 8a64246ddc..d3fd993258 100644 --- a/ejb-timer/README.adoc +++ b/ejb-timer/README.adoc @@ -66,7 +66,7 @@ ifndef::ProductRelease,EAPXPRelease[] :productImageVersion: 31.0 :githubRepoUrl: https://github.com/wildfly/quickstart/ :githubRepoCodeUrl: https://github.com/wildfly/quickstart.git -:WildFlyQuickStartRepoTag: 31.0.0.Final +:WildFlyQuickStartRepoTag: 31.0.0.Final-glow-preview :DocInfoProductName: Red Hat JBoss Enterprise Application Platform :DocInfoProductNameURL: red_hat_jboss_enterprise_application_platform // Do not update the following until after the 7.4 docs are published! diff --git a/ejb-txn-remote-call/README.adoc b/ejb-txn-remote-call/README.adoc index 84fbe91868..e3ddf02f75 100644 --- a/ejb-txn-remote-call/README.adoc +++ b/ejb-txn-remote-call/README.adoc @@ -66,7 +66,7 @@ ifndef::ProductRelease,EAPXPRelease[] :productImageVersion: 31.0 :githubRepoUrl: https://github.com/wildfly/quickstart/ :githubRepoCodeUrl: https://github.com/wildfly/quickstart.git -:WildFlyQuickStartRepoTag: 31.0.0.Final +:WildFlyQuickStartRepoTag: 31.0.0.Final-glow-preview :DocInfoProductName: Red Hat JBoss Enterprise Application Platform :DocInfoProductNameURL: red_hat_jboss_enterprise_application_platform // Do not update the following until after the 7.4 docs are published! diff --git a/ha-singleton-deployment/README.adoc b/ha-singleton-deployment/README.adoc index b45248ebbb..b631f31229 100644 --- a/ha-singleton-deployment/README.adoc +++ b/ha-singleton-deployment/README.adoc @@ -66,7 +66,7 @@ ifndef::ProductRelease,EAPXPRelease[] :productImageVersion: 31.0 :githubRepoUrl: https://github.com/wildfly/quickstart/ :githubRepoCodeUrl: https://github.com/wildfly/quickstart.git -:WildFlyQuickStartRepoTag: 31.0.0.Final +:WildFlyQuickStartRepoTag: 31.0.0.Final-glow-preview :DocInfoProductName: Red Hat JBoss Enterprise Application Platform :DocInfoProductNameURL: red_hat_jboss_enterprise_application_platform // Do not update the following until after the 7.4 docs are published! diff --git a/ha-singleton-service/README.adoc b/ha-singleton-service/README.adoc index 4587bf773d..8bd4611283 100644 --- a/ha-singleton-service/README.adoc +++ b/ha-singleton-service/README.adoc @@ -66,7 +66,7 @@ ifndef::ProductRelease,EAPXPRelease[] :productImageVersion: 31.0 :githubRepoUrl: https://github.com/wildfly/quickstart/ :githubRepoCodeUrl: https://github.com/wildfly/quickstart.git -:WildFlyQuickStartRepoTag: 31.0.0.Final +:WildFlyQuickStartRepoTag: 31.0.0.Final-glow-preview :DocInfoProductName: Red Hat JBoss Enterprise Application Platform :DocInfoProductNameURL: red_hat_jboss_enterprise_application_platform // Do not update the following until after the 7.4 docs are published! diff --git a/helloworld-jms/README.adoc b/helloworld-jms/README.adoc index e5b7edb235..e59ea81f92 100644 --- a/helloworld-jms/README.adoc +++ b/helloworld-jms/README.adoc @@ -66,7 +66,7 @@ ifndef::ProductRelease,EAPXPRelease[] :productImageVersion: 31.0 :githubRepoUrl: https://github.com/wildfly/quickstart/ :githubRepoCodeUrl: https://github.com/wildfly/quickstart.git -:WildFlyQuickStartRepoTag: 31.0.0.Final +:WildFlyQuickStartRepoTag: 31.0.0.Final-glow-preview :DocInfoProductName: Red Hat JBoss Enterprise Application Platform :DocInfoProductNameURL: red_hat_jboss_enterprise_application_platform // Do not update the following until after the 7.4 docs are published! diff --git a/helloworld-mdb/README.adoc b/helloworld-mdb/README.adoc index 6bf842351e..499d658bfd 100644 --- a/helloworld-mdb/README.adoc +++ b/helloworld-mdb/README.adoc @@ -66,7 +66,7 @@ ifndef::ProductRelease,EAPXPRelease[] :productImageVersion: 31.0 :githubRepoUrl: https://github.com/wildfly/quickstart/ :githubRepoCodeUrl: https://github.com/wildfly/quickstart.git -:WildFlyQuickStartRepoTag: 31.0.0.Final +:WildFlyQuickStartRepoTag: 31.0.0.Final-glow-preview :DocInfoProductName: Red Hat JBoss Enterprise Application Platform :DocInfoProductNameURL: red_hat_jboss_enterprise_application_platform // Do not update the following until after the 7.4 docs are published! diff --git a/helloworld-mutual-ssl-secured/README.adoc b/helloworld-mutual-ssl-secured/README.adoc index 3e537909e9..43169bda03 100644 --- a/helloworld-mutual-ssl-secured/README.adoc +++ b/helloworld-mutual-ssl-secured/README.adoc @@ -66,7 +66,7 @@ ifndef::ProductRelease,EAPXPRelease[] :productImageVersion: 31.0 :githubRepoUrl: https://github.com/wildfly/quickstart/ :githubRepoCodeUrl: https://github.com/wildfly/quickstart.git -:WildFlyQuickStartRepoTag: 31.0.0.Final +:WildFlyQuickStartRepoTag: 31.0.0.Final-glow-preview :DocInfoProductName: Red Hat JBoss Enterprise Application Platform :DocInfoProductNameURL: red_hat_jboss_enterprise_application_platform // Do not update the following until after the 7.4 docs are published! diff --git a/helloworld-mutual-ssl/README.adoc b/helloworld-mutual-ssl/README.adoc index f70c1d194e..8e321df7cf 100644 --- a/helloworld-mutual-ssl/README.adoc +++ b/helloworld-mutual-ssl/README.adoc @@ -66,7 +66,7 @@ ifndef::ProductRelease,EAPXPRelease[] :productImageVersion: 31.0 :githubRepoUrl: https://github.com/wildfly/quickstart/ :githubRepoCodeUrl: https://github.com/wildfly/quickstart.git -:WildFlyQuickStartRepoTag: 31.0.0.Final +:WildFlyQuickStartRepoTag: 31.0.0.Final-glow-preview :DocInfoProductName: Red Hat JBoss Enterprise Application Platform :DocInfoProductNameURL: red_hat_jboss_enterprise_application_platform // Do not update the following until after the 7.4 docs are published! diff --git a/helloworld-singleton/README.adoc b/helloworld-singleton/README.adoc index 0f19eebe33..47c4aa28fe 100644 --- a/helloworld-singleton/README.adoc +++ b/helloworld-singleton/README.adoc @@ -66,7 +66,7 @@ ifndef::ProductRelease,EAPXPRelease[] :productImageVersion: 31.0 :githubRepoUrl: https://github.com/wildfly/quickstart/ :githubRepoCodeUrl: https://github.com/wildfly/quickstart.git -:WildFlyQuickStartRepoTag: 31.0.0.Final +:WildFlyQuickStartRepoTag: 31.0.0.Final-glow-preview :DocInfoProductName: Red Hat JBoss Enterprise Application Platform :DocInfoProductNameURL: red_hat_jboss_enterprise_application_platform // Do not update the following until after the 7.4 docs are published! diff --git a/helloworld-ws/README.adoc b/helloworld-ws/README.adoc index 5685d03f87..8f52b57172 100644 --- a/helloworld-ws/README.adoc +++ b/helloworld-ws/README.adoc @@ -66,7 +66,7 @@ ifndef::ProductRelease,EAPXPRelease[] :productImageVersion: 31.0 :githubRepoUrl: https://github.com/wildfly/quickstart/ :githubRepoCodeUrl: https://github.com/wildfly/quickstart.git -:WildFlyQuickStartRepoTag: 31.0.0.Final +:WildFlyQuickStartRepoTag: 31.0.0.Final-glow-preview :DocInfoProductName: Red Hat JBoss Enterprise Application Platform :DocInfoProductNameURL: red_hat_jboss_enterprise_application_platform // Do not update the following until after the 7.4 docs are published! diff --git a/helloworld/README.adoc b/helloworld/README.adoc index c4a0ac1b4a..c757d851ed 100644 --- a/helloworld/README.adoc +++ b/helloworld/README.adoc @@ -66,7 +66,7 @@ ifndef::ProductRelease,EAPXPRelease[] :productImageVersion: 31.0 :githubRepoUrl: https://github.com/wildfly/quickstart/ :githubRepoCodeUrl: https://github.com/wildfly/quickstart.git -:WildFlyQuickStartRepoTag: 31.0.0.Final +:WildFlyQuickStartRepoTag: 31.0.0.Final-glow-preview :DocInfoProductName: Red Hat JBoss Enterprise Application Platform :DocInfoProductNameURL: red_hat_jboss_enterprise_application_platform // Do not update the following until after the 7.4 docs are published! diff --git a/hibernate/README.adoc b/hibernate/README.adoc index fa2ede4963..ed267c5fdf 100644 --- a/hibernate/README.adoc +++ b/hibernate/README.adoc @@ -66,7 +66,7 @@ ifndef::ProductRelease,EAPXPRelease[] :productImageVersion: 31.0 :githubRepoUrl: https://github.com/wildfly/quickstart/ :githubRepoCodeUrl: https://github.com/wildfly/quickstart.git -:WildFlyQuickStartRepoTag: 31.0.0.Final +:WildFlyQuickStartRepoTag: 31.0.0.Final-glow-preview :DocInfoProductName: Red Hat JBoss Enterprise Application Platform :DocInfoProductNameURL: red_hat_jboss_enterprise_application_platform // Do not update the following until after the 7.4 docs are published! diff --git a/http-custom-mechanism/README.adoc b/http-custom-mechanism/README.adoc index 76d3156d17..9b11fe8033 100644 --- a/http-custom-mechanism/README.adoc +++ b/http-custom-mechanism/README.adoc @@ -66,7 +66,7 @@ ifndef::ProductRelease,EAPXPRelease[] :productImageVersion: 31.0 :githubRepoUrl: https://github.com/wildfly/quickstart/ :githubRepoCodeUrl: https://github.com/wildfly/quickstart.git -:WildFlyQuickStartRepoTag: 31.0.0.Final +:WildFlyQuickStartRepoTag: 31.0.0.Final-glow-preview :DocInfoProductName: Red Hat JBoss Enterprise Application Platform :DocInfoProductNameURL: red_hat_jboss_enterprise_application_platform // Do not update the following until after the 7.4 docs are published! diff --git a/jaxrs-client/README.adoc b/jaxrs-client/README.adoc index ba8d83dc75..b8f10a39cc 100644 --- a/jaxrs-client/README.adoc +++ b/jaxrs-client/README.adoc @@ -66,7 +66,7 @@ ifndef::ProductRelease,EAPXPRelease[] :productImageVersion: 31.0 :githubRepoUrl: https://github.com/wildfly/quickstart/ :githubRepoCodeUrl: https://github.com/wildfly/quickstart.git -:WildFlyQuickStartRepoTag: 31.0.0.Final +:WildFlyQuickStartRepoTag: 31.0.0.Final-glow-preview :DocInfoProductName: Red Hat JBoss Enterprise Application Platform :DocInfoProductNameURL: red_hat_jboss_enterprise_application_platform // Do not update the following until after the 7.4 docs are published! diff --git a/jaxrs-jwt/README.adoc b/jaxrs-jwt/README.adoc index 901580ea62..17f3a76111 100644 --- a/jaxrs-jwt/README.adoc +++ b/jaxrs-jwt/README.adoc @@ -66,7 +66,7 @@ ifndef::ProductRelease,EAPXPRelease[] :productImageVersion: 31.0 :githubRepoUrl: https://github.com/wildfly/quickstart/ :githubRepoCodeUrl: https://github.com/wildfly/quickstart.git -:WildFlyQuickStartRepoTag: 31.0.0.Final +:WildFlyQuickStartRepoTag: 31.0.0.Final-glow-preview :DocInfoProductName: Red Hat JBoss Enterprise Application Platform :DocInfoProductNameURL: red_hat_jboss_enterprise_application_platform // Do not update the following until after the 7.4 docs are published! diff --git a/jaxws-ejb/README.adoc b/jaxws-ejb/README.adoc index 32bbee261f..12de93c2f2 100644 --- a/jaxws-ejb/README.adoc +++ b/jaxws-ejb/README.adoc @@ -66,7 +66,7 @@ ifndef::ProductRelease,EAPXPRelease[] :productImageVersion: 31.0 :githubRepoUrl: https://github.com/wildfly/quickstart/ :githubRepoCodeUrl: https://github.com/wildfly/quickstart.git -:WildFlyQuickStartRepoTag: 31.0.0.Final +:WildFlyQuickStartRepoTag: 31.0.0.Final-glow-preview :DocInfoProductName: Red Hat JBoss Enterprise Application Platform :DocInfoProductNameURL: red_hat_jboss_enterprise_application_platform // Do not update the following until after the 7.4 docs are published! diff --git a/jaxws-retail/README.adoc b/jaxws-retail/README.adoc index 989a42b20d..6695c6f7d1 100644 --- a/jaxws-retail/README.adoc +++ b/jaxws-retail/README.adoc @@ -66,7 +66,7 @@ ifndef::ProductRelease,EAPXPRelease[] :productImageVersion: 31.0 :githubRepoUrl: https://github.com/wildfly/quickstart/ :githubRepoCodeUrl: https://github.com/wildfly/quickstart.git -:WildFlyQuickStartRepoTag: 31.0.0.Final +:WildFlyQuickStartRepoTag: 31.0.0.Final-glow-preview :DocInfoProductName: Red Hat JBoss Enterprise Application Platform :DocInfoProductNameURL: red_hat_jboss_enterprise_application_platform // Do not update the following until after the 7.4 docs are published! diff --git a/jsonp/README.adoc b/jsonp/README.adoc index a599a5d687..7f6e4894b6 100644 --- a/jsonp/README.adoc +++ b/jsonp/README.adoc @@ -66,7 +66,7 @@ ifndef::ProductRelease,EAPXPRelease[] :productImageVersion: 31.0 :githubRepoUrl: https://github.com/wildfly/quickstart/ :githubRepoCodeUrl: https://github.com/wildfly/quickstart.git -:WildFlyQuickStartRepoTag: 31.0.0.Final +:WildFlyQuickStartRepoTag: 31.0.0.Final-glow-preview :DocInfoProductName: Red Hat JBoss Enterprise Application Platform :DocInfoProductNameURL: red_hat_jboss_enterprise_application_platform // Do not update the following until after the 7.4 docs are published! diff --git a/jta-crash-rec/README.adoc b/jta-crash-rec/README.adoc index b3251e426a..99c6c7fbae 100644 --- a/jta-crash-rec/README.adoc +++ b/jta-crash-rec/README.adoc @@ -66,7 +66,7 @@ ifndef::ProductRelease,EAPXPRelease[] :productImageVersion: 31.0 :githubRepoUrl: https://github.com/wildfly/quickstart/ :githubRepoCodeUrl: https://github.com/wildfly/quickstart.git -:WildFlyQuickStartRepoTag: 31.0.0.Final +:WildFlyQuickStartRepoTag: 31.0.0.Final-glow-preview :DocInfoProductName: Red Hat JBoss Enterprise Application Platform :DocInfoProductNameURL: red_hat_jboss_enterprise_application_platform // Do not update the following until after the 7.4 docs are published! diff --git a/jts/README.adoc b/jts/README.adoc index db2d3522be..aaa74c65b7 100644 --- a/jts/README.adoc +++ b/jts/README.adoc @@ -66,7 +66,7 @@ ifndef::ProductRelease,EAPXPRelease[] :productImageVersion: 31.0 :githubRepoUrl: https://github.com/wildfly/quickstart/ :githubRepoCodeUrl: https://github.com/wildfly/quickstart.git -:WildFlyQuickStartRepoTag: 31.0.0.Final +:WildFlyQuickStartRepoTag: 31.0.0.Final-glow-preview :DocInfoProductName: Red Hat JBoss Enterprise Application Platform :DocInfoProductNameURL: red_hat_jboss_enterprise_application_platform // Do not update the following until after the 7.4 docs are published! diff --git a/kitchensink/README.adoc b/kitchensink/README.adoc index 8491041c23..2ef07ebbf9 100644 --- a/kitchensink/README.adoc +++ b/kitchensink/README.adoc @@ -66,7 +66,7 @@ ifndef::ProductRelease,EAPXPRelease[] :productImageVersion: 31.0 :githubRepoUrl: https://github.com/wildfly/quickstart/ :githubRepoCodeUrl: https://github.com/wildfly/quickstart.git -:WildFlyQuickStartRepoTag: 31.0.0.Final +:WildFlyQuickStartRepoTag: 31.0.0.Final-glow-preview :DocInfoProductName: Red Hat JBoss Enterprise Application Platform :DocInfoProductNameURL: red_hat_jboss_enterprise_application_platform // Do not update the following until after the 7.4 docs are published! diff --git a/logging/README.adoc b/logging/README.adoc index c77d730301..22ddffbd71 100644 --- a/logging/README.adoc +++ b/logging/README.adoc @@ -66,7 +66,7 @@ ifndef::ProductRelease,EAPXPRelease[] :productImageVersion: 31.0 :githubRepoUrl: https://github.com/wildfly/quickstart/ :githubRepoCodeUrl: https://github.com/wildfly/quickstart.git -:WildFlyQuickStartRepoTag: 31.0.0.Final +:WildFlyQuickStartRepoTag: 31.0.0.Final-glow-preview :DocInfoProductName: Red Hat JBoss Enterprise Application Platform :DocInfoProductNameURL: red_hat_jboss_enterprise_application_platform // Do not update the following until after the 7.4 docs are published! diff --git a/mail/README.adoc b/mail/README.adoc index 311481e0b2..e65210a573 100644 --- a/mail/README.adoc +++ b/mail/README.adoc @@ -66,7 +66,7 @@ ifndef::ProductRelease,EAPXPRelease[] :productImageVersion: 31.0 :githubRepoUrl: https://github.com/wildfly/quickstart/ :githubRepoCodeUrl: https://github.com/wildfly/quickstart.git -:WildFlyQuickStartRepoTag: 31.0.0.Final +:WildFlyQuickStartRepoTag: 31.0.0.Final-glow-preview :DocInfoProductName: Red Hat JBoss Enterprise Application Platform :DocInfoProductNameURL: red_hat_jboss_enterprise_application_platform // Do not update the following until after the 7.4 docs are published! diff --git a/messaging-clustering-singleton/README.adoc b/messaging-clustering-singleton/README.adoc index 15a32d8d86..1908b4da42 100644 --- a/messaging-clustering-singleton/README.adoc +++ b/messaging-clustering-singleton/README.adoc @@ -66,7 +66,7 @@ ifndef::ProductRelease,EAPXPRelease[] :productImageVersion: 31.0 :githubRepoUrl: https://github.com/wildfly/quickstart/ :githubRepoCodeUrl: https://github.com/wildfly/quickstart.git -:WildFlyQuickStartRepoTag: 31.0.0.Final +:WildFlyQuickStartRepoTag: 31.0.0.Final-glow-preview :DocInfoProductName: Red Hat JBoss Enterprise Application Platform :DocInfoProductNameURL: red_hat_jboss_enterprise_application_platform // Do not update the following until after the 7.4 docs are published! diff --git a/micrometer/README.adoc b/micrometer/README.adoc index d7ca455f67..a759a1fefc 100644 --- a/micrometer/README.adoc +++ b/micrometer/README.adoc @@ -66,7 +66,7 @@ ifndef::ProductRelease,EAPXPRelease[] :productImageVersion: 31.0 :githubRepoUrl: https://github.com/wildfly/quickstart/ :githubRepoCodeUrl: https://github.com/wildfly/quickstart.git -:WildFlyQuickStartRepoTag: 31.0.0.Final +:WildFlyQuickStartRepoTag: 31.0.0.Final-glow-preview :DocInfoProductName: Red Hat JBoss Enterprise Application Platform :DocInfoProductNameURL: red_hat_jboss_enterprise_application_platform // Do not update the following until after the 7.4 docs are published! diff --git a/microprofile-config/README.adoc b/microprofile-config/README.adoc index 17cc930f89..7833b1c651 100644 --- a/microprofile-config/README.adoc +++ b/microprofile-config/README.adoc @@ -66,7 +66,7 @@ ifndef::ProductRelease,EAPXPRelease[] :productImageVersion: 31.0 :githubRepoUrl: https://github.com/wildfly/quickstart/ :githubRepoCodeUrl: https://github.com/wildfly/quickstart.git -:WildFlyQuickStartRepoTag: 31.0.0.Final +:WildFlyQuickStartRepoTag: 31.0.0.Final-glow-preview :DocInfoProductName: Red Hat JBoss Enterprise Application Platform :DocInfoProductNameURL: red_hat_jboss_enterprise_application_platform // Do not update the following until after the 7.4 docs are published! diff --git a/microprofile-fault-tolerance/README.adoc b/microprofile-fault-tolerance/README.adoc index 490af9bcb7..8b77073307 100644 --- a/microprofile-fault-tolerance/README.adoc +++ b/microprofile-fault-tolerance/README.adoc @@ -75,7 +75,7 @@ ifndef::ProductRelease,EAPXPRelease[] :productImageVersion: 31.0 :githubRepoUrl: https://github.com/wildfly/quickstart/ :githubRepoCodeUrl: https://github.com/wildfly/quickstart.git -:WildFlyQuickStartRepoTag: 31.0.0.Final +:WildFlyQuickStartRepoTag: 31.0.0.Final-glow-preview :DocInfoProductName: Red Hat JBoss Enterprise Application Platform :DocInfoProductNameURL: red_hat_jboss_enterprise_application_platform // Do not update the following until after the 7.4 docs are published! diff --git a/microprofile-health/README.adoc b/microprofile-health/README.adoc index 2b3e30ed56..f01b15c252 100644 --- a/microprofile-health/README.adoc +++ b/microprofile-health/README.adoc @@ -66,7 +66,7 @@ ifndef::ProductRelease,EAPXPRelease[] :productImageVersion: 31.0 :githubRepoUrl: https://github.com/wildfly/quickstart/ :githubRepoCodeUrl: https://github.com/wildfly/quickstart.git -:WildFlyQuickStartRepoTag: 31.0.0.Final +:WildFlyQuickStartRepoTag: 31.0.0.Final-glow-preview :DocInfoProductName: Red Hat JBoss Enterprise Application Platform :DocInfoProductNameURL: red_hat_jboss_enterprise_application_platform // Do not update the following until after the 7.4 docs are published! diff --git a/microprofile-jwt/README.adoc b/microprofile-jwt/README.adoc index 38a4c9d966..0558fed754 100644 --- a/microprofile-jwt/README.adoc +++ b/microprofile-jwt/README.adoc @@ -66,7 +66,7 @@ ifndef::ProductRelease,EAPXPRelease[] :productImageVersion: 31.0 :githubRepoUrl: https://github.com/wildfly/quickstart/ :githubRepoCodeUrl: https://github.com/wildfly/quickstart.git -:WildFlyQuickStartRepoTag: 31.0.0.Final +:WildFlyQuickStartRepoTag: 31.0.0.Final-glow-preview :DocInfoProductName: Red Hat JBoss Enterprise Application Platform :DocInfoProductNameURL: red_hat_jboss_enterprise_application_platform // Do not update the following until after the 7.4 docs are published! diff --git a/microprofile-lra/README.adoc b/microprofile-lra/README.adoc index 8e49d6ea97..1e5389a52b 100644 --- a/microprofile-lra/README.adoc +++ b/microprofile-lra/README.adoc @@ -66,7 +66,7 @@ ifndef::ProductRelease,EAPXPRelease[] :productImageVersion: 31.0 :githubRepoUrl: https://github.com/wildfly/quickstart/ :githubRepoCodeUrl: https://github.com/wildfly/quickstart.git -:WildFlyQuickStartRepoTag: 31.0.0.Final +:WildFlyQuickStartRepoTag: 31.0.0.Final-glow-preview :DocInfoProductName: Red Hat JBoss Enterprise Application Platform :DocInfoProductNameURL: red_hat_jboss_enterprise_application_platform // Do not update the following until after the 7.4 docs are published! diff --git a/microprofile-openapi/README.adoc b/microprofile-openapi/README.adoc index df83c0fd4d..c29fe428d4 100644 --- a/microprofile-openapi/README.adoc +++ b/microprofile-openapi/README.adoc @@ -66,7 +66,7 @@ ifndef::ProductRelease,EAPXPRelease[] :productImageVersion: 31.0 :githubRepoUrl: https://github.com/wildfly/quickstart/ :githubRepoCodeUrl: https://github.com/wildfly/quickstart.git -:WildFlyQuickStartRepoTag: 31.0.0.Final +:WildFlyQuickStartRepoTag: 31.0.0.Final-glow-preview :DocInfoProductName: Red Hat JBoss Enterprise Application Platform :DocInfoProductNameURL: red_hat_jboss_enterprise_application_platform // Do not update the following until after the 7.4 docs are published! diff --git a/microprofile-reactive-messaging-kafka/README.adoc b/microprofile-reactive-messaging-kafka/README.adoc index b0806c70a2..3ec9cb8a03 100644 --- a/microprofile-reactive-messaging-kafka/README.adoc +++ b/microprofile-reactive-messaging-kafka/README.adoc @@ -66,7 +66,7 @@ ifndef::ProductRelease,EAPXPRelease[] :productImageVersion: 31.0 :githubRepoUrl: https://github.com/wildfly/quickstart/ :githubRepoCodeUrl: https://github.com/wildfly/quickstart.git -:WildFlyQuickStartRepoTag: 31.0.0.Final +:WildFlyQuickStartRepoTag: 31.0.0.Final-glow-preview :DocInfoProductName: Red Hat JBoss Enterprise Application Platform :DocInfoProductNameURL: red_hat_jboss_enterprise_application_platform // Do not update the following until after the 7.4 docs are published! diff --git a/microprofile-rest-client/README.adoc b/microprofile-rest-client/README.adoc index e77dbef95e..24a0132f26 100644 --- a/microprofile-rest-client/README.adoc +++ b/microprofile-rest-client/README.adoc @@ -66,7 +66,7 @@ ifndef::ProductRelease,EAPXPRelease[] :productImageVersion: 31.0 :githubRepoUrl: https://github.com/wildfly/quickstart/ :githubRepoCodeUrl: https://github.com/wildfly/quickstart.git -:WildFlyQuickStartRepoTag: 31.0.0.Final +:WildFlyQuickStartRepoTag: 31.0.0.Final-glow-preview :DocInfoProductName: Red Hat JBoss Enterprise Application Platform :DocInfoProductNameURL: red_hat_jboss_enterprise_application_platform // Do not update the following until after the 7.4 docs are published! diff --git a/numberguess/README.adoc b/numberguess/README.adoc index dc76515eea..8be244e04c 100644 --- a/numberguess/README.adoc +++ b/numberguess/README.adoc @@ -66,7 +66,7 @@ ifndef::ProductRelease,EAPXPRelease[] :productImageVersion: 31.0 :githubRepoUrl: https://github.com/wildfly/quickstart/ :githubRepoCodeUrl: https://github.com/wildfly/quickstart.git -:WildFlyQuickStartRepoTag: 31.0.0.Final +:WildFlyQuickStartRepoTag: 31.0.0.Final-glow-preview :DocInfoProductName: Red Hat JBoss Enterprise Application Platform :DocInfoProductNameURL: red_hat_jboss_enterprise_application_platform // Do not update the following until after the 7.4 docs are published! diff --git a/opentelemetry-tracing/README.adoc b/opentelemetry-tracing/README.adoc index 23e658e72f..0ab17a3498 100644 --- a/opentelemetry-tracing/README.adoc +++ b/opentelemetry-tracing/README.adoc @@ -66,7 +66,7 @@ ifndef::ProductRelease,EAPXPRelease[] :productImageVersion: 31.0 :githubRepoUrl: https://github.com/wildfly/quickstart/ :githubRepoCodeUrl: https://github.com/wildfly/quickstart.git -:WildFlyQuickStartRepoTag: 31.0.0.Final +:WildFlyQuickStartRepoTag: 31.0.0.Final-glow-preview :DocInfoProductName: Red Hat JBoss Enterprise Application Platform :DocInfoProductNameURL: red_hat_jboss_enterprise_application_platform // Do not update the following until after the 7.4 docs are published! diff --git a/remote-helloworld-mdb/README.adoc b/remote-helloworld-mdb/README.adoc index d9b3963516..d6fc534cc5 100644 --- a/remote-helloworld-mdb/README.adoc +++ b/remote-helloworld-mdb/README.adoc @@ -66,7 +66,7 @@ ifndef::ProductRelease,EAPXPRelease[] :productImageVersion: 31.0 :githubRepoUrl: https://github.com/wildfly/quickstart/ :githubRepoCodeUrl: https://github.com/wildfly/quickstart.git -:WildFlyQuickStartRepoTag: 31.0.0.Final +:WildFlyQuickStartRepoTag: 31.0.0.Final-glow-preview :DocInfoProductName: Red Hat JBoss Enterprise Application Platform :DocInfoProductNameURL: red_hat_jboss_enterprise_application_platform // Do not update the following until after the 7.4 docs are published! diff --git a/security-domain-to-domain/README.adoc b/security-domain-to-domain/README.adoc index 195cb8100b..24baa09200 100644 --- a/security-domain-to-domain/README.adoc +++ b/security-domain-to-domain/README.adoc @@ -66,7 +66,7 @@ ifndef::ProductRelease,EAPXPRelease[] :productImageVersion: 31.0 :githubRepoUrl: https://github.com/wildfly/quickstart/ :githubRepoCodeUrl: https://github.com/wildfly/quickstart.git -:WildFlyQuickStartRepoTag: 31.0.0.Final +:WildFlyQuickStartRepoTag: 31.0.0.Final-glow-preview :DocInfoProductName: Red Hat JBoss Enterprise Application Platform :DocInfoProductNameURL: red_hat_jboss_enterprise_application_platform // Do not update the following until after the 7.4 docs are published! diff --git a/servlet-async/README.adoc b/servlet-async/README.adoc index db5a2db96c..fb6c109eda 100644 --- a/servlet-async/README.adoc +++ b/servlet-async/README.adoc @@ -66,7 +66,7 @@ ifndef::ProductRelease,EAPXPRelease[] :productImageVersion: 31.0 :githubRepoUrl: https://github.com/wildfly/quickstart/ :githubRepoCodeUrl: https://github.com/wildfly/quickstart.git -:WildFlyQuickStartRepoTag: 31.0.0.Final +:WildFlyQuickStartRepoTag: 31.0.0.Final-glow-preview :DocInfoProductName: Red Hat JBoss Enterprise Application Platform :DocInfoProductNameURL: red_hat_jboss_enterprise_application_platform // Do not update the following until after the 7.4 docs are published! diff --git a/servlet-filterlistener/README.adoc b/servlet-filterlistener/README.adoc index cdde7bb9f7..960a110846 100644 --- a/servlet-filterlistener/README.adoc +++ b/servlet-filterlistener/README.adoc @@ -66,7 +66,7 @@ ifndef::ProductRelease,EAPXPRelease[] :productImageVersion: 31.0 :githubRepoUrl: https://github.com/wildfly/quickstart/ :githubRepoCodeUrl: https://github.com/wildfly/quickstart.git -:WildFlyQuickStartRepoTag: 31.0.0.Final +:WildFlyQuickStartRepoTag: 31.0.0.Final-glow-preview :DocInfoProductName: Red Hat JBoss Enterprise Application Platform :DocInfoProductNameURL: red_hat_jboss_enterprise_application_platform // Do not update the following until after the 7.4 docs are published! diff --git a/servlet-security/README.adoc b/servlet-security/README.adoc index 0b9797843d..07ea4ad1c3 100644 --- a/servlet-security/README.adoc +++ b/servlet-security/README.adoc @@ -66,7 +66,7 @@ ifndef::ProductRelease,EAPXPRelease[] :productImageVersion: 31.0 :githubRepoUrl: https://github.com/wildfly/quickstart/ :githubRepoCodeUrl: https://github.com/wildfly/quickstart.git -:WildFlyQuickStartRepoTag: 31.0.0.Final +:WildFlyQuickStartRepoTag: 31.0.0.Final-glow-preview :DocInfoProductName: Red Hat JBoss Enterprise Application Platform :DocInfoProductNameURL: red_hat_jboss_enterprise_application_platform // Do not update the following until after the 7.4 docs are published! diff --git a/spring-resteasy/README.adoc b/spring-resteasy/README.adoc index 01f6d7bd17..b7ee7a1c11 100644 --- a/spring-resteasy/README.adoc +++ b/spring-resteasy/README.adoc @@ -66,7 +66,7 @@ ifndef::ProductRelease,EAPXPRelease[] :productImageVersion: 31.0 :githubRepoUrl: https://github.com/wildfly/quickstart/ :githubRepoCodeUrl: https://github.com/wildfly/quickstart.git -:WildFlyQuickStartRepoTag: 31.0.0.Final +:WildFlyQuickStartRepoTag: 31.0.0.Final-glow-preview :DocInfoProductName: Red Hat JBoss Enterprise Application Platform :DocInfoProductNameURL: red_hat_jboss_enterprise_application_platform // Do not update the following until after the 7.4 docs are published! diff --git a/tasks-jsf/README.adoc b/tasks-jsf/README.adoc index 24bcfdd782..fa2fb753f8 100644 --- a/tasks-jsf/README.adoc +++ b/tasks-jsf/README.adoc @@ -66,7 +66,7 @@ ifndef::ProductRelease,EAPXPRelease[] :productImageVersion: 31.0 :githubRepoUrl: https://github.com/wildfly/quickstart/ :githubRepoCodeUrl: https://github.com/wildfly/quickstart.git -:WildFlyQuickStartRepoTag: 31.0.0.Final +:WildFlyQuickStartRepoTag: 31.0.0.Final-glow-preview :DocInfoProductName: Red Hat JBoss Enterprise Application Platform :DocInfoProductNameURL: red_hat_jboss_enterprise_application_platform // Do not update the following until after the 7.4 docs are published! diff --git a/temperature-converter/README.adoc b/temperature-converter/README.adoc index 873fd6f5a8..21fe4823a9 100644 --- a/temperature-converter/README.adoc +++ b/temperature-converter/README.adoc @@ -66,7 +66,7 @@ ifndef::ProductRelease,EAPXPRelease[] :productImageVersion: 31.0 :githubRepoUrl: https://github.com/wildfly/quickstart/ :githubRepoCodeUrl: https://github.com/wildfly/quickstart.git -:WildFlyQuickStartRepoTag: 31.0.0.Final +:WildFlyQuickStartRepoTag: 31.0.0.Final-glow-preview :DocInfoProductName: Red Hat JBoss Enterprise Application Platform :DocInfoProductNameURL: red_hat_jboss_enterprise_application_platform // Do not update the following until after the 7.4 docs are published! diff --git a/template/README.adoc b/template/README.adoc index 096778a15d..d7384dd9b2 100644 --- a/template/README.adoc +++ b/template/README.adoc @@ -66,7 +66,7 @@ ifndef::ProductRelease,EAPXPRelease[] :productImageVersion: 31.0 :githubRepoUrl: https://github.com/wildfly/quickstart/ :githubRepoCodeUrl: https://github.com/wildfly/quickstart.git -:WildFlyQuickStartRepoTag: 31.0.0.Final +:WildFlyQuickStartRepoTag: 31.0.0.Final-glow-preview :DocInfoProductName: Red Hat JBoss Enterprise Application Platform :DocInfoProductNameURL: red_hat_jboss_enterprise_application_platform // Do not update the following until after the 7.4 docs are published! diff --git a/thread-racing/README.adoc b/thread-racing/README.adoc index 95042cc455..a4c4961a1c 100644 --- a/thread-racing/README.adoc +++ b/thread-racing/README.adoc @@ -66,7 +66,7 @@ ifndef::ProductRelease,EAPXPRelease[] :productImageVersion: 31.0 :githubRepoUrl: https://github.com/wildfly/quickstart/ :githubRepoCodeUrl: https://github.com/wildfly/quickstart.git -:WildFlyQuickStartRepoTag: 31.0.0.Final +:WildFlyQuickStartRepoTag: 31.0.0.Final-glow-preview :DocInfoProductName: Red Hat JBoss Enterprise Application Platform :DocInfoProductNameURL: red_hat_jboss_enterprise_application_platform // Do not update the following until after the 7.4 docs are published! diff --git a/todo-backend/README.adoc b/todo-backend/README.adoc index 84637154b9..f49ac6e7e6 100644 --- a/todo-backend/README.adoc +++ b/todo-backend/README.adoc @@ -66,7 +66,7 @@ ifndef::ProductRelease,EAPXPRelease[] :productImageVersion: 31.0 :githubRepoUrl: https://github.com/wildfly/quickstart/ :githubRepoCodeUrl: https://github.com/wildfly/quickstart.git -:WildFlyQuickStartRepoTag: 31.0.0.Final +:WildFlyQuickStartRepoTag: 31.0.0.Final-glow-preview :DocInfoProductName: Red Hat JBoss Enterprise Application Platform :DocInfoProductNameURL: red_hat_jboss_enterprise_application_platform // Do not update the following until after the 7.4 docs are published! diff --git a/websocket-endpoint/README.adoc b/websocket-endpoint/README.adoc index fa5b67b2d2..08d7641f3d 100644 --- a/websocket-endpoint/README.adoc +++ b/websocket-endpoint/README.adoc @@ -66,7 +66,7 @@ ifndef::ProductRelease,EAPXPRelease[] :productImageVersion: 31.0 :githubRepoUrl: https://github.com/wildfly/quickstart/ :githubRepoCodeUrl: https://github.com/wildfly/quickstart.git -:WildFlyQuickStartRepoTag: 31.0.0.Final +:WildFlyQuickStartRepoTag: 31.0.0.Final-glow-preview :DocInfoProductName: Red Hat JBoss Enterprise Application Platform :DocInfoProductNameURL: red_hat_jboss_enterprise_application_platform // Do not update the following until after the 7.4 docs are published! diff --git a/websocket-hello/README.adoc b/websocket-hello/README.adoc index 6b8c7470b4..1c309ef02e 100644 --- a/websocket-hello/README.adoc +++ b/websocket-hello/README.adoc @@ -66,7 +66,7 @@ ifndef::ProductRelease,EAPXPRelease[] :productImageVersion: 31.0 :githubRepoUrl: https://github.com/wildfly/quickstart/ :githubRepoCodeUrl: https://github.com/wildfly/quickstart.git -:WildFlyQuickStartRepoTag: 31.0.0.Final +:WildFlyQuickStartRepoTag: 31.0.0.Final-glow-preview :DocInfoProductName: Red Hat JBoss Enterprise Application Platform :DocInfoProductNameURL: red_hat_jboss_enterprise_application_platform // Do not update the following until after the 7.4 docs are published! diff --git a/wsat-simple/README.adoc b/wsat-simple/README.adoc index 5f7cc74015..16129d2c6d 100644 --- a/wsat-simple/README.adoc +++ b/wsat-simple/README.adoc @@ -66,7 +66,7 @@ ifndef::ProductRelease,EAPXPRelease[] :productImageVersion: 31.0 :githubRepoUrl: https://github.com/wildfly/quickstart/ :githubRepoCodeUrl: https://github.com/wildfly/quickstart.git -:WildFlyQuickStartRepoTag: 31.0.0.Final +:WildFlyQuickStartRepoTag: 31.0.0.Final-glow-preview :DocInfoProductName: Red Hat JBoss Enterprise Application Platform :DocInfoProductNameURL: red_hat_jboss_enterprise_application_platform // Do not update the following until after the 7.4 docs are published! diff --git a/wsba-coordinator-completion-simple/README.adoc b/wsba-coordinator-completion-simple/README.adoc index a576c7a9cf..613abcae4d 100644 --- a/wsba-coordinator-completion-simple/README.adoc +++ b/wsba-coordinator-completion-simple/README.adoc @@ -66,7 +66,7 @@ ifndef::ProductRelease,EAPXPRelease[] :productImageVersion: 31.0 :githubRepoUrl: https://github.com/wildfly/quickstart/ :githubRepoCodeUrl: https://github.com/wildfly/quickstart.git -:WildFlyQuickStartRepoTag: 31.0.0.Final +:WildFlyQuickStartRepoTag: 31.0.0.Final-glow-preview :DocInfoProductName: Red Hat JBoss Enterprise Application Platform :DocInfoProductNameURL: red_hat_jboss_enterprise_application_platform // Do not update the following until after the 7.4 docs are published! diff --git a/wsba-participant-completion-simple/README.adoc b/wsba-participant-completion-simple/README.adoc index 8a9204209d..40f26c0018 100644 --- a/wsba-participant-completion-simple/README.adoc +++ b/wsba-participant-completion-simple/README.adoc @@ -66,7 +66,7 @@ ifndef::ProductRelease,EAPXPRelease[] :productImageVersion: 31.0 :githubRepoUrl: https://github.com/wildfly/quickstart/ :githubRepoCodeUrl: https://github.com/wildfly/quickstart.git -:WildFlyQuickStartRepoTag: 31.0.0.Final +:WildFlyQuickStartRepoTag: 31.0.0.Final-glow-preview :DocInfoProductName: Red Hat JBoss Enterprise Application Platform :DocInfoProductNameURL: red_hat_jboss_enterprise_application_platform // Do not update the following until after the 7.4 docs are published! From 484f280e86ff1e3e7c48ce87769a145fb1fb7ddf Mon Sep 17 00:00:00 2001 From: Kabir Khan Date: Sat, 13 Apr 2024 21:18:24 +0530 Subject: [PATCH 18/26] Remove 'ported-to-glow' conditional rendering --- batch-processing/README-source.adoc | 1 - bmt/README-source.adoc | 1 - ee-security/README-source.adoc | 1 - ...-run-the-quickstart-with-bootable-jar.adoc | 33 --------------- ...he-quickstart-with-provisioned-server.adoc | 37 +---------------- .../build-the-quickstart-for-openshift.adoc | 40 +------------------ 6 files changed, 2 insertions(+), 111 deletions(-) diff --git a/batch-processing/README-source.adoc b/batch-processing/README-source.adoc index 4e85ba3bed..9370abe18d 100644 --- a/batch-processing/README-source.adoc +++ b/batch-processing/README-source.adoc @@ -5,7 +5,6 @@ include::../shared-doc/attributes.adoc[] :level: Intermediate :technologies: CDI, Batch 1.0, JSF :openshift: true -:portedToGlow: true [abstract] The `batch-processing` quickstart shows how to use chunk oriented batch jobs to import a file to a database. diff --git a/bmt/README-source.adoc b/bmt/README-source.adoc index 35bbe7198f..71312609a5 100644 --- a/bmt/README-source.adoc +++ b/bmt/README-source.adoc @@ -5,7 +5,6 @@ include::../shared-doc/attributes.adoc[] :level: Intermediate :technologies: EJB, BMT :openshift: true -:portedToGlow: true [abstract] The `bmt` quickstart demonstrates Bean-Managed Transactions (BMT), showing how to manually manage transaction demarcation while accessing JPA entities. diff --git a/ee-security/README-source.adoc b/ee-security/README-source.adoc index a81eb62ab3..ecd5544742 100644 --- a/ee-security/README-source.adoc +++ b/ee-security/README-source.adoc @@ -5,7 +5,6 @@ include::../shared-doc/attributes.adoc[] :level: Intermediate :technologies: EE Security, Servlet, CDI :openshift: true -:portedToGlow: true [abstract] The `ee-security` quickstart demonstrates Jakarta EE security. diff --git a/shared-doc/build-and-run-the-quickstart-with-bootable-jar.adoc b/shared-doc/build-and-run-the-quickstart-with-bootable-jar.adoc index f7d0f742ac..568cd72427 100644 --- a/shared-doc/build-and-run-the-quickstart-with-bootable-jar.adoc +++ b/shared-doc/build-and-run-the-quickstart-with-bootable-jar.adoc @@ -5,38 +5,6 @@ You can use the WildFly JAR Maven plug-in to build a {productName} bootable JAR The quickstart `pom.xml` file contains a Maven profile named *bootable-jar* which configures the bootable JAR building: -ifndef::portedToGlow[] -[source,xml,subs="attributes+"] ----- - - bootable-jar - - - - org.wildfly.plugins - wildfly-jar-maven-plugin - - wildfly@maven(org.jboss.universe:community-universe)#${version.server} - ... - - true - - - - - - package - - - - - ... - - - ----- -endif::portedToGlow[] -ifdef::portedToGlow[] [source,xml,subs="attributes+"] ---- @@ -84,7 +52,6 @@ If you get an error or the server is missing some functionality which cannot be ---- wildfly-glow show-add-ons ---- -endif::portedToGlow[] .Procedure diff --git a/shared-doc/build-and-run-the-quickstart-with-provisioned-server.adoc b/shared-doc/build-and-run-the-quickstart-with-provisioned-server.adoc index 36e3c0a4ba..28c66e8f70 100644 --- a/shared-doc/build-and-run-the-quickstart-with-provisioned-server.adoc +++ b/shared-doc/build-and-run-the-quickstart-with-provisioned-server.adoc @@ -52,41 +52,7 @@ For Windows, use the `__{jbossHomeName}__\bin\add-user.bat` script. endif::[] The server provisioning functionality is provided by the WildFly Maven Plugin, and you may find its configuration in the quickstart `pom.xml`: -ifndef::portedToGlow[] -[source,xml,subs="attributes+"] ----- - - provisioned-server - - - - org.wildfly.plugins - wildfly-maven-plugin - - - - org.wildfly:wildfly-galleon-pack:${version.server} - - - ... - - ROOT.war - - - - - package - - - - - ... - - - ----- -endif::portedToGlow[] -ifdef::portedToGlow[] + [source,xml,subs="attributes+"] ---- @@ -133,7 +99,6 @@ If you get an error or the server is missing some functionality which cannot be ---- wildfly-glow show-add-ons ---- -endif::portedToGlow[] [NOTE] ==== diff --git a/shared-doc/build-the-quickstart-for-openshift.adoc b/shared-doc/build-the-quickstart-for-openshift.adoc index 8ebbce9510..fdee9c583e 100644 --- a/shared-doc/build-the-quickstart-for-openshift.adoc +++ b/shared-doc/build-the-quickstart-for-openshift.adoc @@ -11,44 +11,7 @@ The server provisioning functionality is provided by the EAP Maven Plugin, and y endif::[] ifndef::ProductRelease,EAPXPRelease[] -ifndef::portedToGlow[] -[source,xml,subs="attributes+"] ----- - - openshift - - - - org.wildfly.plugins - wildfly-maven-plugin - - - - org.wildfly:wildfly-galleon-pack:${version.server} - - - org.wildfly.cloud:wildfly-cloud-galleon-pack:${version.pack.cloud} - - - ... - ROOT.war - - - - - package - - - - - ... - - - ----- -You may note that unlike the `provisioned-server` profile it uses the cloud feature pack which enables a configuration tuned for OpenShift environment. -endif::portedToGlow[] -ifdef::portedToGlow[] + [source,xml,subs="attributes+"] ---- @@ -97,7 +60,6 @@ If you get an error or the server is missing some functionality which cannot be ---- wildfly-glow show-add-ons ---- -endif::portedToGlow[] endif::ProductRelease,EAPXPRelease[] ifdef::ProductRelease,EAPXPRelease[] From 80b4e9a099217001b616270e80e61f7ca3812b0a Mon Sep 17 00:00:00 2001 From: Kabir Khan Date: Tue, 16 Apr 2024 10:54:11 +0530 Subject: [PATCH 19/26] Remove glow-preview workarounds from workflow files --- .github/workflows/project_ci.yml | 5 +---- .github/workflows/quickstart_ci.yml | 4 +--- .github/workflows/quickstart_ejb-txn-remote-call_ci.yml | 6 ++---- .github/workflows/reduce_readme.yml | 2 +- 4 files changed, 5 insertions(+), 12 deletions(-) diff --git a/.github/workflows/project_ci.yml b/.github/workflows/project_ci.yml index 4c258e47f3..3594e675c2 100644 --- a/.github/workflows/project_ci.yml +++ b/.github/workflows/project_ci.yml @@ -44,16 +44,13 @@ jobs: WildFly-build: uses: wildfly/wildfly/.github/workflows/shared-wildfly-build.yml@main with: - # There is no upstream glow-preview branch. The QS glow-preview branch targets WildFLy main - #wildfly-branch: ${{ github.base_ref }} - wildfly-branch: main + wildfly-branch: ${{ github.base_ref }} wildfly-repo: "wildfly/wildfly" Test-build-with-deps-matrix: name: BUILD WITH DEPS - JDK${{ matrix.jdk }} - ${{ matrix.os }} runs-on: ${{ matrix.os }} needs: WildFly-build - if: strategy: fail-fast: false matrix: diff --git a/.github/workflows/quickstart_ci.yml b/.github/workflows/quickstart_ci.yml index 971354862f..2e65986c49 100644 --- a/.github/workflows/quickstart_ci.yml +++ b/.github/workflows/quickstart_ci.yml @@ -171,9 +171,7 @@ jobs: WildFly-build: uses: wildfly/wildfly/.github/workflows/shared-wildfly-build.yml@main with: - # There is no upstream glow-preview branch. The QS glow-preview branch targets WildFLy main - #wildfly-branch: ${{ github.base_ref }} - wildfly-branch: main + wildfly-branch: ${{ github.base_ref }} wildfly-repo: "wildfly/wildfly" Test-build-with-deps-matrix: diff --git a/.github/workflows/quickstart_ejb-txn-remote-call_ci.yml b/.github/workflows/quickstart_ejb-txn-remote-call_ci.yml index cd84547392..e0babd25a6 100644 --- a/.github/workflows/quickstart_ejb-txn-remote-call_ci.yml +++ b/.github/workflows/quickstart_ejb-txn-remote-call_ci.yml @@ -20,7 +20,7 @@ env: MATRIX_JDK: '"11", "17"' MATRIX_OS: '"ubuntu-latest"' SERVER_PROVISIONING_SERVER_HOST: 'http://localhost' - EXTRA_RUN_ARGS: '-Pprovisioned-server -DpostgresqlUsername="test" -DpostgresqlPassword="test"' + EXTRA_RUN_ARGS: '-DpostgresqlUsername="test" -DpostgresqlPassword="test"' WILDFLY_SNAPSHOT_EXTRA_PACKAGE_ARGUMENTS: '-Dwildfly-glow-galleon-feature-packs-url=https://raw.githubusercontent.com/wildfly/wildfly-galleon-feature-packs/main/' jobs: Matrix-Setup: @@ -133,9 +133,7 @@ jobs: WildFly-build: uses: wildfly/wildfly/.github/workflows/shared-wildfly-build.yml@main with: - # There is no upstream glow-preview branch. The QS glow-preview branch targets WildFLy main - #wildfly-branch: ${{ github.base_ref }} - wildfly-branch: main + wildfly-branch: ${{ github.base_ref }} wildfly-repo: "wildfly/wildfly" Test-build-with-deps-matrix: diff --git a/.github/workflows/reduce_readme.yml b/.github/workflows/reduce_readme.yml index 83f4fc0742..8995aa5688 100644 --- a/.github/workflows/reduce_readme.yml +++ b/.github/workflows/reduce_readme.yml @@ -3,7 +3,7 @@ name: WildFly Quickstarts Update 'README.adoc's on: push: branches: - - glow-preview + - main # Only run the latest job concurrency: From 91a82ca61192346c73b63487ae2f9c7be57f42f9 Mon Sep 17 00:00:00 2001 From: Kabir Khan Date: Tue, 16 Apr 2024 11:07:47 +0530 Subject: [PATCH 20/26] README adjustments --- README.adoc | 2 +- .../build-and-run-the-quickstart-with-bootable-jar.adoc | 5 ----- ...build-and-run-the-quickstart-with-provisioned-server.adoc | 5 ----- shared-doc/build-the-quickstart-for-openshift.adoc | 5 ----- 4 files changed, 1 insertion(+), 16 deletions(-) diff --git a/README.adoc b/README.adoc index 4e6d33a306..b9f27b92c4 100644 --- a/README.adoc +++ b/README.adoc @@ -62,7 +62,7 @@ ifndef::ProductRelease,EAPXPRelease[] :productImageVersion: 31.0 :githubRepoUrl: https://github.com/wildfly/quickstart/ :githubRepoCodeUrl: https://github.com/wildfly/quickstart.git -:WildFlyQuickStartRepoTag: 31.0.0.Final-glow-preview +:WildFlyQuickStartRepoTag: 31.0.0.Final :DocInfoProductName: Red Hat JBoss Enterprise Application Platform :DocInfoProductNameURL: red_hat_jboss_enterprise_application_platform :DocInfoProductNumber: 8.0 diff --git a/shared-doc/build-and-run-the-quickstart-with-bootable-jar.adoc b/shared-doc/build-and-run-the-quickstart-with-bootable-jar.adoc index 568cd72427..1ac1fc6c5d 100644 --- a/shared-doc/build-and-run-the-quickstart-with-bootable-jar.adoc +++ b/shared-doc/build-and-run-the-quickstart-with-bootable-jar.adoc @@ -41,11 +41,6 @@ The quickstart `pom.xml` file contains a Maven profile named *bootable-jar* whic ---- The plugin uses https://github.com/wildfly/wildfly-glow[WildFly Glow] to discover the feature packs and layers required to run the application, and provisions a server containing those layers. -[NOTE] -==== -This uses a pre-release of version 5.0.0 of the wildfly-maven-plugin providing the Glow functionality. The version is set in the pom's `pluginManagement` section. -==== - If you get an error or the server is missing some functionality which cannot be auto-discovered, you can download the https://github.com/wildfly/wildfly-glow/releases/tag[WildFly Glow CLI] and run the following command to see more information about what add-ons are available: [source,shell] diff --git a/shared-doc/build-and-run-the-quickstart-with-provisioned-server.adoc b/shared-doc/build-and-run-the-quickstart-with-provisioned-server.adoc index 28c66e8f70..e629caea08 100644 --- a/shared-doc/build-and-run-the-quickstart-with-provisioned-server.adoc +++ b/shared-doc/build-and-run-the-quickstart-with-provisioned-server.adoc @@ -88,11 +88,6 @@ The server provisioning functionality is provided by the WildFly Maven Plugin, a ---- The plugin uses https://github.com/wildfly/wildfly-glow[WildFly Glow] to discover the feature packs and layers required to run the application, and provisions a server containing those layers. -[NOTE] -==== -This uses a pre-release of version 5.0.0 of the wildfly-maven-plugin providing the Glow functionality. The version is set in the pom's `pluginManagement` section. -==== - If you get an error or the server is missing some functionality which cannot be auto-discovered, you can download the https://github.com/wildfly/wildfly-glow/releases/tag[WildFly Glow CLI] and run the following command to see more information about what add-ons are available: [source,shell] diff --git a/shared-doc/build-the-quickstart-for-openshift.adoc b/shared-doc/build-the-quickstart-for-openshift.adoc index fdee9c583e..50ba1441d6 100644 --- a/shared-doc/build-the-quickstart-for-openshift.adoc +++ b/shared-doc/build-the-quickstart-for-openshift.adoc @@ -50,11 +50,6 @@ You may note that unlike the `provisioned-server` profile it uses the cloud cont The plugin uses https://github.com/wildfly/wildfly-glow[WildFly Glow] to discover the feature packs and layers required to run the application, and provisions a server containing those layers. -[NOTE] -==== -This uses a pre-release of version 5.0.0 of the wildfly-maven-plugin providing the Glow functionality. The version is set in the pom's `pluginManagement` section. -==== - If you get an error or the server is missing some functionality which cannot be auto-discovered, you can download the https://github.com/wildfly/wildfly-glow/releases[WildFly Glow CLI] and run the following command to see more information about what add-ons are available: [source,shell] ---- From 2b42b969d8309876ff5d7fce414d73fdf75236f6 Mon Sep 17 00:00:00 2001 From: Kabir Khan Date: Tue, 16 Apr 2024 11:23:27 +0530 Subject: [PATCH 21/26] Point to branch containing featuee packs for snapshots when running tests against built server --- .github/workflows/quickstart_ci.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/quickstart_ci.yml b/.github/workflows/quickstart_ci.yml index 2e65986c49..0fada63be5 100644 --- a/.github/workflows/quickstart_ci.yml +++ b/.github/workflows/quickstart_ci.yml @@ -60,6 +60,7 @@ concurrency: env: WILDFLY_SNAPSHOT_EXTRA_PACKAGE_ARGUMENTS: '-Dwildfly-glow-galleon-feature-packs-url=https://raw.githubusercontent.com/wildfly/wildfly-galleon-feature-packs/main/' + WILDFLY_GLOW_SNAPSHOT_REGISTRY: '-Dwildfly-glow-galleon-feature-packs-url=https://raw.githubusercontent.com/wildfly/wildfly-galleon-feature-packs/main/' jobs: Matrix-Setup: @@ -222,7 +223,7 @@ jobs: cd quickstarts cd ${{ inputs.QUICKSTART_PATH }} echo "Building provisioned server..." - mvn -fae clean ${{ inputs.MVN_COMMAND }} -Pprovisioned-server -Dversion.server=${{ needs.wildfly-build.outputs.wildfly-version }} ${{ env.WILDFLY_SNAPSHOT_EXTRA_PACKAGE_ARGUMENTS }} + mvn -fae clean ${{ inputs.MVN_COMMAND }} -Pprovisioned-server -Dversion.server=${{ needs.wildfly-build.outputs.wildfly-version }} ${{ env.WILDFLY_SNAPSHOT_EXTRA_PACKAGE_ARGUMENTS }} ${{ env.WILDFLY_GLOW_SNAPSHOT_REGISTRY }} if [ -f ${{ inputs.DEPLOYMENT_DIR }}/target/server/bin/add-user.sh ]; then echo "Add quickstartUser..." ${{ inputs.DEPLOYMENT_DIR }}/target/server/bin/add-user.sh -a -u 'quickstartUser' -p 'quickstartPwd1!' -g 'guest,user,JBossAdmin,Users' @@ -242,7 +243,7 @@ jobs: cd quickstarts cd ${{ inputs.QUICKSTART_PATH }} echo "Building bootable jar..." - mvn -fae clean ${{ inputs.MVN_COMMAND }} -Pbootable-jar -Dversion.server=${{ needs.wildfly-build.outputs.wildfly-version }} ${{ env.WILDFLY_SNAPSHOT_EXTRA_PACKAGE_ARGUMENTS }} + mvn -fae clean ${{ inputs.MVN_COMMAND }} -Pbootable-jar -Dversion.server=${{ needs.wildfly-build.outputs.wildfly-version }} ${{ env.WILDFLY_SNAPSHOT_EXTRA_PACKAGE_ARGUMENTS }} ${{ env.WILDFLY_GLOW_SNAPSHOT_REGISTRY }} echo "Starting bootable jar..." mvn -f ${{ inputs.DEPLOYMENT_DIR }}/pom.xml wildfly:start-jar -Dstartup-timeout=120 ${{ inputs.EXTRA_RUN_ARGS }} echo "Testing bootable jar..." @@ -255,7 +256,7 @@ jobs: run: | cd quickstarts cd ${{ inputs.QUICKSTART_PATH }} - mvn -fae clean package -Popenshift -Dversion.server=${{ needs.wildfly-build.outputs.wildfly-version }} ${{ env.WILDFLY_SNAPSHOT_EXTRA_PACKAGE_ARGUMENTS }} + mvn -fae clean package -Popenshift -Dversion.server=${{ needs.wildfly-build.outputs.wildfly-version }} ${{ env.WILDFLY_SNAPSHOT_EXTRA_PACKAGE_ARGUMENTS }} ${{ env.WILDFLY_GLOW_SNAPSHOT_REGISTRY }} shell: bash - name: Run after script env: From 523a2245e69e190fe1d527dcdc63b3b12edd0d81 Mon Sep 17 00:00:00 2001 From: Kabir Khan Date: Tue, 16 Apr 2024 13:01:47 +0530 Subject: [PATCH 22/26] Reset README.adoc files to what was in main --- README.adoc | 3 - batch-processing/README.adoc | 129 +---------- bmt/README.adoc | 129 +---------- cmt/README.adoc | 129 +---------- ee-security/README.adoc | 129 +---------- ejb-multi-server/README.adoc | 5 +- ejb-remote/README.adoc | 129 +---------- ejb-security-context-propagation/README.adoc | 57 +---- ejb-security-programmatic-auth/README.adoc | 57 +---- ejb-throws-exception/README.adoc | 57 +---- ejb-timer/README.adoc | 129 +---------- ejb-txn-remote-call/README.adoc | 6 +- ha-singleton-deployment/README.adoc | 5 +- ha-singleton-service/README.adoc | 5 +- helloworld-jms/README.adoc | 6 +- helloworld-mdb/README.adoc | 129 +---------- helloworld-mutual-ssl-secured/README.adoc | 5 +- helloworld-mutual-ssl/README.adoc | 5 +- helloworld-singleton/README.adoc | 129 +---------- helloworld-ws/README.adoc | 129 +---------- helloworld/README.adoc | 129 +---------- hibernate/README.adoc | 129 +---------- http-custom-mechanism/README.adoc | 57 +---- jaxrs-client/README.adoc | 129 +---------- jaxrs-jwt/README.adoc | 125 +---------- jaxws-ejb/README.adoc | 129 +---------- jaxws-retail/README.adoc | 129 +---------- jsonp/README.adoc | 129 +---------- jta-crash-rec/README.adoc | 5 +- jts/README.adoc | 5 +- kitchensink/README.adoc | 129 +---------- logging/README.adoc | 125 +---------- mail/README.adoc | 57 +---- messaging-clustering-singleton/README.adoc | 5 +- micrometer/README.adoc | 190 +---------------- microprofile-config/README.adoc | 135 +----------- microprofile-fault-tolerance/README.adoc | 135 +----------- microprofile-health/README.adoc | 135 +----------- microprofile-jwt/README.adoc | 135 +----------- microprofile-lra/README.adoc | 131 +----------- microprofile-openapi/README.adoc | 135 +----------- .../README.adoc | 135 +----------- microprofile-rest-client/README.adoc | 135 +----------- numberguess/README.adoc | 129 +---------- opentelemetry-tracing/README.adoc | 193 +---------------- remote-helloworld-mdb/README.adoc | 201 +----------------- security-domain-to-domain/README.adoc | 5 +- servlet-async/README.adoc | 129 +---------- servlet-filterlistener/README.adoc | 129 +---------- servlet-security/README.adoc | 129 +---------- spring-resteasy/README.adoc | 129 +---------- tasks-jsf/README.adoc | 5 +- temperature-converter/README.adoc | 129 +---------- template/README.adoc | 5 +- thread-racing/README.adoc | 129 +---------- todo-backend/README.adoc | 74 +------ websocket-endpoint/README.adoc | 129 +---------- websocket-hello/README.adoc | 129 +---------- 58 files changed, 92 insertions(+), 5472 deletions(-) diff --git a/README.adoc b/README.adoc index b9f27b92c4..b0bf03af95 100644 --- a/README.adoc +++ b/README.adoc @@ -192,9 +192,6 @@ endif::[] :LinkJBDSGettingStarted: https://access.redhat.com/documentation/en-us/red_hat_codeready_studio/{JBDSVersion}/html-single/getting_started_with_codeready_studio_tools/ :JBDSGettingStartedBookName: Getting Started with CodeReady Studio Tools -// Enable Rendering of Glow configuration in plugin examples -:portedToGlow: true - :toc: :toclevels: 4 :numbered: diff --git a/batch-processing/README.adoc b/batch-processing/README.adoc index d4771e9dd5..556454c79d 100644 --- a/batch-processing/README.adoc +++ b/batch-processing/README.adoc @@ -66,7 +66,7 @@ ifndef::ProductRelease,EAPXPRelease[] :productImageVersion: 31.0 :githubRepoUrl: https://github.com/wildfly/quickstart/ :githubRepoCodeUrl: https://github.com/wildfly/quickstart.git -:WildFlyQuickStartRepoTag: 31.0.0.Final-glow-preview +:WildFlyQuickStartRepoTag: 31.0.0.Final :DocInfoProductName: Red Hat JBoss Enterprise Application Platform :DocInfoProductNameURL: red_hat_jboss_enterprise_application_platform :DocInfoProductNumber: 8.0 @@ -196,15 +196,11 @@ endif::[] :LinkJBDSGettingStarted: https://access.redhat.com/documentation/en-us/red_hat_codeready_studio/{JBDSVersion}/html-single/getting_started_with_codeready_studio_tools/ :JBDSGettingStartedBookName: Getting Started with CodeReady Studio Tools -// Enable Rendering of Glow configuration in plugin examples -:portedToGlow: true - = batch-processing: Chunk oriented Batch 1.0 processing :author: Rafael Benevides :level: Intermediate :technologies: CDI, Batch 1.0, JSF :openshift: true -:portedToGlow: true [abstract] The `batch-processing` quickstart shows how to use chunk oriented batch jobs to import a file to a database. @@ -731,7 +727,7 @@ For Windows, use the `__{jbossHomeName}__\bin\add-user.bat` script. endif::[] The server provisioning functionality is provided by the WildFly Maven Plugin, and you may find its configuration in the quickstart `pom.xml`: -ifndef::portedToGlow[] + [source,xml,subs="attributes+"] ---- @@ -764,55 +760,6 @@ ifndef::portedToGlow[] ---- -endif::portedToGlow[] -ifdef::portedToGlow[] -[source,xml,subs="attributes+"] ----- - - provisioned-server - - - - org.wildfly.plugins - wildfly-maven-plugin - - - ${version.server} - - - ROOT.war - ... - - - - - package - - - - - ... - - - ----- -The plugin uses https://github.com/wildfly/wildfly-glow[WildFly Glow] to discover the feature packs and layers required to run the application, and provisions a server containing those layers. - -[NOTE] -==== -This uses a pre-release of version 5.0.0 of the wildfly-maven-plugin providing the Glow functionality. The version is set in the pom's `pluginManagement` section. -==== - -If you get an error or the server is missing some functionality which cannot be auto-discovered, you can download the https://github.com/wildfly/wildfly-glow/releases/tag[WildFly Glow CLI] and run the following command to see more information about what add-ons are available: - -[source,shell] ----- -wildfly-glow show-add-ons ----- -endif::portedToGlow[] [NOTE] ==== @@ -1009,14 +956,9 @@ ifdef::ProductRelease,EAPXPRelease[] The server provisioning functionality is provided by the EAP Maven Plugin, and you may find its configuration in the quickstart `pom.xml`: endif::[] -<<<<<<< HEAD -ifndef::ProductRelease,EAPXPRelease[] -ifndef::portedToGlow[] -======= // Render XML Snippet of openshift Maven profile... ifndef::ProductRelease[] // ... for WildFly ->>>>>>> upstream/main [source,xml,subs="attributes+"] ---- @@ -1051,68 +993,10 @@ ifndef::ProductRelease[] ---- -<<<<<<< HEAD -You may note that unlike the `provisioned-server` profile it uses the cloud feature pack which enables a configuration tuned for OpenShift environment. -endif::portedToGlow[] -ifdef::portedToGlow[] -[source,xml,subs="attributes+"] ----- - - openshift - - - - org.wildfly.plugins - wildfly-maven-plugin - - - ${version.server} - cloud - - - ROOT.war - ... - - - - - package - - - - - ... - - - ----- -You may note that unlike the `provisioned-server` profile it uses the cloud context which enables a configuration tuned for OpenShift environment. - -The plugin uses https://github.com/wildfly/wildfly-glow[WildFly Glow] to discover the feature packs and layers required to run the application, and provisions a server containing those layers. - -[NOTE] -==== -This uses a pre-release of version 5.0.0 of the wildfly-maven-plugin providing the Glow functionality. The version is set in the pom's `pluginManagement` section. -==== - -If you get an error or the server is missing some functionality which cannot be auto-discovered, you can download the https://github.com/wildfly/wildfly-glow/releases[WildFly Glow CLI] and run the following command to see more information about what add-ons are available: -[source,shell] ----- -wildfly-glow show-add-ons ----- -endif::portedToGlow[] -endif::ProductRelease,EAPXPRelease[] - -ifdef::ProductRelease,EAPXPRelease[] -======= endif::[] ifdef::ProductRelease[] ifndef::EAPXPRelease[] // ... for EAP ->>>>>>> upstream/main [source,xml,subs="attributes+"] ---- @@ -1148,9 +1032,6 @@ ifndef::EAPXPRelease[] ---- -<<<<<<< HEAD -You may note that it uses the cloud feature pack which enables a configuration tuned for OpenShift environment. -======= endif::[] ifdef::EAPXPRelease[] // ... for EAP XP @@ -1204,10 +1085,8 @@ ifdef::EAPXPRelease[] ==== Previous {productName} releases used the WildFly JAR Maven Plugin to package the quickstart in a Bootable JAR, when deploying it on OpenShift, and while that's still supported it's no longer recommended. ==== ->>>>>>> upstream/main endif::[] - :leveloffset: 1 // Getting Started with Helm :leveloffset: +1 @@ -1313,11 +1192,7 @@ ifndef::useHelmChartDir[] ---- build: uri: https://github.com/wildfly/quickstart.git -<<<<<<< HEAD - ref: 31.x-glow-preview -======= ref: main ->>>>>>> upstream/main contextDir: batch-processing deploy: replicas: 1 diff --git a/bmt/README.adoc b/bmt/README.adoc index d84b51bf47..efa5bb417e 100644 --- a/bmt/README.adoc +++ b/bmt/README.adoc @@ -66,7 +66,7 @@ ifndef::ProductRelease,EAPXPRelease[] :productImageVersion: 31.0 :githubRepoUrl: https://github.com/wildfly/quickstart/ :githubRepoCodeUrl: https://github.com/wildfly/quickstart.git -:WildFlyQuickStartRepoTag: 31.0.0.Final-glow-preview +:WildFlyQuickStartRepoTag: 31.0.0.Final :DocInfoProductName: Red Hat JBoss Enterprise Application Platform :DocInfoProductNameURL: red_hat_jboss_enterprise_application_platform :DocInfoProductNumber: 8.0 @@ -196,15 +196,11 @@ endif::[] :LinkJBDSGettingStarted: https://access.redhat.com/documentation/en-us/red_hat_codeready_studio/{JBDSVersion}/html-single/getting_started_with_codeready_studio_tools/ :JBDSGettingStartedBookName: Getting Started with CodeReady Studio Tools -// Enable Rendering of Glow configuration in plugin examples -:portedToGlow: true - = bmt: Bean Managed Transactions with JPA and JTA :author: Mike Musgrove :level: Intermediate :technologies: EJB, BMT :openshift: true -:portedToGlow: true [abstract] The `bmt` quickstart demonstrates Bean-Managed Transactions (BMT), showing how to manually manage transaction demarcation while accessing JPA entities. @@ -663,7 +659,7 @@ For Windows, use the `__{jbossHomeName}__\bin\add-user.bat` script. endif::[] The server provisioning functionality is provided by the WildFly Maven Plugin, and you may find its configuration in the quickstart `pom.xml`: -ifndef::portedToGlow[] + [source,xml,subs="attributes+"] ---- @@ -696,55 +692,6 @@ ifndef::portedToGlow[] ---- -endif::portedToGlow[] -ifdef::portedToGlow[] -[source,xml,subs="attributes+"] ----- - - provisioned-server - - - - org.wildfly.plugins - wildfly-maven-plugin - - - ${version.server} - - - ROOT.war - ... - - - - - package - - - - - ... - - - ----- -The plugin uses https://github.com/wildfly/wildfly-glow[WildFly Glow] to discover the feature packs and layers required to run the application, and provisions a server containing those layers. - -[NOTE] -==== -This uses a pre-release of version 5.0.0 of the wildfly-maven-plugin providing the Glow functionality. The version is set in the pom's `pluginManagement` section. -==== - -If you get an error or the server is missing some functionality which cannot be auto-discovered, you can download the https://github.com/wildfly/wildfly-glow/releases/tag[WildFly Glow CLI] and run the following command to see more information about what add-ons are available: - -[source,shell] ----- -wildfly-glow show-add-ons ----- -endif::portedToGlow[] [NOTE] ==== @@ -941,14 +888,9 @@ ifdef::ProductRelease,EAPXPRelease[] The server provisioning functionality is provided by the EAP Maven Plugin, and you may find its configuration in the quickstart `pom.xml`: endif::[] -<<<<<<< HEAD -ifndef::ProductRelease,EAPXPRelease[] -ifndef::portedToGlow[] -======= // Render XML Snippet of openshift Maven profile... ifndef::ProductRelease[] // ... for WildFly ->>>>>>> upstream/main [source,xml,subs="attributes+"] ---- @@ -983,68 +925,10 @@ ifndef::ProductRelease[] ---- -<<<<<<< HEAD -You may note that unlike the `provisioned-server` profile it uses the cloud feature pack which enables a configuration tuned for OpenShift environment. -endif::portedToGlow[] -ifdef::portedToGlow[] -[source,xml,subs="attributes+"] ----- - - openshift - - - - org.wildfly.plugins - wildfly-maven-plugin - - - ${version.server} - cloud - - - ROOT.war - ... - - - - - package - - - - - ... - - - ----- -You may note that unlike the `provisioned-server` profile it uses the cloud context which enables a configuration tuned for OpenShift environment. - -The plugin uses https://github.com/wildfly/wildfly-glow[WildFly Glow] to discover the feature packs and layers required to run the application, and provisions a server containing those layers. - -[NOTE] -==== -This uses a pre-release of version 5.0.0 of the wildfly-maven-plugin providing the Glow functionality. The version is set in the pom's `pluginManagement` section. -==== - -If you get an error or the server is missing some functionality which cannot be auto-discovered, you can download the https://github.com/wildfly/wildfly-glow/releases[WildFly Glow CLI] and run the following command to see more information about what add-ons are available: -[source,shell] ----- -wildfly-glow show-add-ons ----- -endif::portedToGlow[] -endif::ProductRelease,EAPXPRelease[] - -ifdef::ProductRelease,EAPXPRelease[] -======= endif::[] ifdef::ProductRelease[] ifndef::EAPXPRelease[] // ... for EAP ->>>>>>> upstream/main [source,xml,subs="attributes+"] ---- @@ -1080,9 +964,6 @@ ifndef::EAPXPRelease[] ---- -<<<<<<< HEAD -You may note that it uses the cloud feature pack which enables a configuration tuned for OpenShift environment. -======= endif::[] ifdef::EAPXPRelease[] // ... for EAP XP @@ -1136,10 +1017,8 @@ ifdef::EAPXPRelease[] ==== Previous {productName} releases used the WildFly JAR Maven Plugin to package the quickstart in a Bootable JAR, when deploying it on OpenShift, and while that's still supported it's no longer recommended. ==== ->>>>>>> upstream/main endif::[] - :leveloffset: 1 // Getting Started with Helm :leveloffset: +1 @@ -1245,11 +1124,7 @@ ifndef::useHelmChartDir[] ---- build: uri: https://github.com/wildfly/quickstart.git -<<<<<<< HEAD - ref: 31.x-glow-preview -======= ref: main ->>>>>>> upstream/main contextDir: bmt deploy: replicas: 1 diff --git a/cmt/README.adoc b/cmt/README.adoc index 31821dbcdb..ae4d6f39f5 100644 --- a/cmt/README.adoc +++ b/cmt/README.adoc @@ -66,7 +66,7 @@ ifndef::ProductRelease,EAPXPRelease[] :productImageVersion: 31.0 :githubRepoUrl: https://github.com/wildfly/quickstart/ :githubRepoCodeUrl: https://github.com/wildfly/quickstart.git -:WildFlyQuickStartRepoTag: 31.0.0.Final-glow-preview +:WildFlyQuickStartRepoTag: 31.0.0.Final :DocInfoProductName: Red Hat JBoss Enterprise Application Platform :DocInfoProductNameURL: red_hat_jboss_enterprise_application_platform :DocInfoProductNumber: 8.0 @@ -196,15 +196,11 @@ endif::[] :LinkJBDSGettingStarted: https://access.redhat.com/documentation/en-us/red_hat_codeready_studio/{JBDSVersion}/html-single/getting_started_with_codeready_studio_tools/ :JBDSGettingStartedBookName: Getting Started with CodeReady Studio Tools -// Enable Rendering of Glow configuration in plugin examples -:portedToGlow: true - = cmt: Container Managed Transactions (CMT) :author: Tom Jenkinson :level: Intermediate :technologies: EJB, CMT, JMS :openshift: true -:portedToGlow: true [abstract] The `cmt` quickstart demonstrates Container-Managed Transactions (CMT), showing how to use transactions managed by the container. @@ -676,7 +672,7 @@ For Windows, use the `__{jbossHomeName}__\bin\add-user.bat` script. endif::[] The server provisioning functionality is provided by the WildFly Maven Plugin, and you may find its configuration in the quickstart `pom.xml`: -ifndef::portedToGlow[] + [source,xml,subs="attributes+"] ---- @@ -709,55 +705,6 @@ ifndef::portedToGlow[] ---- -endif::portedToGlow[] -ifdef::portedToGlow[] -[source,xml,subs="attributes+"] ----- - - provisioned-server - - - - org.wildfly.plugins - wildfly-maven-plugin - - - ${version.server} - - - ROOT.war - ... - - - - - package - - - - - ... - - - ----- -The plugin uses https://github.com/wildfly/wildfly-glow[WildFly Glow] to discover the feature packs and layers required to run the application, and provisions a server containing those layers. - -[NOTE] -==== -This uses a pre-release of version 5.0.0 of the wildfly-maven-plugin providing the Glow functionality. The version is set in the pom's `pluginManagement` section. -==== - -If you get an error or the server is missing some functionality which cannot be auto-discovered, you can download the https://github.com/wildfly/wildfly-glow/releases/tag[WildFly Glow CLI] and run the following command to see more information about what add-ons are available: - -[source,shell] ----- -wildfly-glow show-add-ons ----- -endif::portedToGlow[] [NOTE] ==== @@ -954,14 +901,9 @@ ifdef::ProductRelease,EAPXPRelease[] The server provisioning functionality is provided by the EAP Maven Plugin, and you may find its configuration in the quickstart `pom.xml`: endif::[] -<<<<<<< HEAD -ifndef::ProductRelease,EAPXPRelease[] -ifndef::portedToGlow[] -======= // Render XML Snippet of openshift Maven profile... ifndef::ProductRelease[] // ... for WildFly ->>>>>>> upstream/main [source,xml,subs="attributes+"] ---- @@ -996,68 +938,10 @@ ifndef::ProductRelease[] ---- -<<<<<<< HEAD -You may note that unlike the `provisioned-server` profile it uses the cloud feature pack which enables a configuration tuned for OpenShift environment. -endif::portedToGlow[] -ifdef::portedToGlow[] -[source,xml,subs="attributes+"] ----- - - openshift - - - - org.wildfly.plugins - wildfly-maven-plugin - - - ${version.server} - cloud - - - ROOT.war - ... - - - - - package - - - - - ... - - - ----- -You may note that unlike the `provisioned-server` profile it uses the cloud context which enables a configuration tuned for OpenShift environment. - -The plugin uses https://github.com/wildfly/wildfly-glow[WildFly Glow] to discover the feature packs and layers required to run the application, and provisions a server containing those layers. - -[NOTE] -==== -This uses a pre-release of version 5.0.0 of the wildfly-maven-plugin providing the Glow functionality. The version is set in the pom's `pluginManagement` section. -==== - -If you get an error or the server is missing some functionality which cannot be auto-discovered, you can download the https://github.com/wildfly/wildfly-glow/releases[WildFly Glow CLI] and run the following command to see more information about what add-ons are available: -[source,shell] ----- -wildfly-glow show-add-ons ----- -endif::portedToGlow[] -endif::ProductRelease,EAPXPRelease[] - -ifdef::ProductRelease,EAPXPRelease[] -======= endif::[] ifdef::ProductRelease[] ifndef::EAPXPRelease[] // ... for EAP ->>>>>>> upstream/main [source,xml,subs="attributes+"] ---- @@ -1093,9 +977,6 @@ ifndef::EAPXPRelease[] ---- -<<<<<<< HEAD -You may note that it uses the cloud feature pack which enables a configuration tuned for OpenShift environment. -======= endif::[] ifdef::EAPXPRelease[] // ... for EAP XP @@ -1149,10 +1030,8 @@ ifdef::EAPXPRelease[] ==== Previous {productName} releases used the WildFly JAR Maven Plugin to package the quickstart in a Bootable JAR, when deploying it on OpenShift, and while that's still supported it's no longer recommended. ==== ->>>>>>> upstream/main endif::[] - :leveloffset: 1 // Getting Started with Helm :leveloffset: +1 @@ -1258,11 +1137,7 @@ ifndef::useHelmChartDir[] ---- build: uri: https://github.com/wildfly/quickstart.git -<<<<<<< HEAD - ref: 31.x-glow-preview -======= ref: main ->>>>>>> upstream/main contextDir: cmt deploy: replicas: 1 diff --git a/ee-security/README.adoc b/ee-security/README.adoc index d3b237c1ad..091aa1ad40 100644 --- a/ee-security/README.adoc +++ b/ee-security/README.adoc @@ -66,7 +66,7 @@ ifndef::ProductRelease,EAPXPRelease[] :productImageVersion: 31.0 :githubRepoUrl: https://github.com/wildfly/quickstart/ :githubRepoCodeUrl: https://github.com/wildfly/quickstart.git -:WildFlyQuickStartRepoTag: 31.0.0.Final-glow-preview +:WildFlyQuickStartRepoTag: 31.0.0.Final :DocInfoProductName: Red Hat JBoss Enterprise Application Platform :DocInfoProductNameURL: red_hat_jboss_enterprise_application_platform :DocInfoProductNumber: 8.0 @@ -196,15 +196,11 @@ endif::[] :LinkJBDSGettingStarted: https://access.redhat.com/documentation/en-us/red_hat_codeready_studio/{JBDSVersion}/html-single/getting_started_with_codeready_studio_tools/ :JBDSGettingStartedBookName: Getting Started with CodeReady Studio Tools -// Enable Rendering of Glow configuration in plugin examples -:portedToGlow: true - = ee-security: Using Jakarta EE Security :author: Darran Lofthouse :level: Intermediate :technologies: EE Security, Servlet, CDI :openshift: true -:portedToGlow: true [abstract] The `ee-security` quickstart demonstrates Jakarta EE security. @@ -880,7 +876,7 @@ For Windows, use the `__{jbossHomeName}__\bin\add-user.bat` script. endif::[] The server provisioning functionality is provided by the WildFly Maven Plugin, and you may find its configuration in the quickstart `pom.xml`: -ifndef::portedToGlow[] + [source,xml,subs="attributes+"] ---- @@ -913,55 +909,6 @@ ifndef::portedToGlow[] ---- -endif::portedToGlow[] -ifdef::portedToGlow[] -[source,xml,subs="attributes+"] ----- - - provisioned-server - - - - org.wildfly.plugins - wildfly-maven-plugin - - - ${version.server} - - - ROOT.war - ... - - - - - package - - - - - ... - - - ----- -The plugin uses https://github.com/wildfly/wildfly-glow[WildFly Glow] to discover the feature packs and layers required to run the application, and provisions a server containing those layers. - -[NOTE] -==== -This uses a pre-release of version 5.0.0 of the wildfly-maven-plugin providing the Glow functionality. The version is set in the pom's `pluginManagement` section. -==== - -If you get an error or the server is missing some functionality which cannot be auto-discovered, you can download the https://github.com/wildfly/wildfly-glow/releases/tag[WildFly Glow CLI] and run the following command to see more information about what add-ons are available: - -[source,shell] ----- -wildfly-glow show-add-ons ----- -endif::portedToGlow[] [NOTE] ==== @@ -1158,14 +1105,9 @@ ifdef::ProductRelease,EAPXPRelease[] The server provisioning functionality is provided by the EAP Maven Plugin, and you may find its configuration in the quickstart `pom.xml`: endif::[] -<<<<<<< HEAD -ifndef::ProductRelease,EAPXPRelease[] -ifndef::portedToGlow[] -======= // Render XML Snippet of openshift Maven profile... ifndef::ProductRelease[] // ... for WildFly ->>>>>>> upstream/main [source,xml,subs="attributes+"] ---- @@ -1200,68 +1142,10 @@ ifndef::ProductRelease[] ---- -<<<<<<< HEAD -You may note that unlike the `provisioned-server` profile it uses the cloud feature pack which enables a configuration tuned for OpenShift environment. -endif::portedToGlow[] -ifdef::portedToGlow[] -[source,xml,subs="attributes+"] ----- - - openshift - - - - org.wildfly.plugins - wildfly-maven-plugin - - - ${version.server} - cloud - - - ROOT.war - ... - - - - - package - - - - - ... - - - ----- -You may note that unlike the `provisioned-server` profile it uses the cloud context which enables a configuration tuned for OpenShift environment. - -The plugin uses https://github.com/wildfly/wildfly-glow[WildFly Glow] to discover the feature packs and layers required to run the application, and provisions a server containing those layers. - -[NOTE] -==== -This uses a pre-release of version 5.0.0 of the wildfly-maven-plugin providing the Glow functionality. The version is set in the pom's `pluginManagement` section. -==== - -If you get an error or the server is missing some functionality which cannot be auto-discovered, you can download the https://github.com/wildfly/wildfly-glow/releases[WildFly Glow CLI] and run the following command to see more information about what add-ons are available: -[source,shell] ----- -wildfly-glow show-add-ons ----- -endif::portedToGlow[] -endif::ProductRelease,EAPXPRelease[] - -ifdef::ProductRelease,EAPXPRelease[] -======= endif::[] ifdef::ProductRelease[] ifndef::EAPXPRelease[] // ... for EAP ->>>>>>> upstream/main [source,xml,subs="attributes+"] ---- @@ -1297,9 +1181,6 @@ ifndef::EAPXPRelease[] ---- -<<<<<<< HEAD -You may note that it uses the cloud feature pack which enables a configuration tuned for OpenShift environment. -======= endif::[] ifdef::EAPXPRelease[] // ... for EAP XP @@ -1353,10 +1234,8 @@ ifdef::EAPXPRelease[] ==== Previous {productName} releases used the WildFly JAR Maven Plugin to package the quickstart in a Bootable JAR, when deploying it on OpenShift, and while that's still supported it's no longer recommended. ==== ->>>>>>> upstream/main endif::[] - :leveloffset: 1 // Getting Started with Helm :leveloffset: +1 @@ -1462,11 +1341,7 @@ ifndef::useHelmChartDir[] ---- build: uri: https://github.com/wildfly/quickstart.git -<<<<<<< HEAD - ref: 31.x-glow-preview -======= ref: main ->>>>>>> upstream/main contextDir: ee-security deploy: replicas: 1 diff --git a/ejb-multi-server/README.adoc b/ejb-multi-server/README.adoc index f5bf85c5c7..12de65f67e 100644 --- a/ejb-multi-server/README.adoc +++ b/ejb-multi-server/README.adoc @@ -66,7 +66,7 @@ ifndef::ProductRelease,EAPXPRelease[] :productImageVersion: 31.0 :githubRepoUrl: https://github.com/wildfly/quickstart/ :githubRepoCodeUrl: https://github.com/wildfly/quickstart.git -:WildFlyQuickStartRepoTag: 31.0.0.Final-glow-preview +:WildFlyQuickStartRepoTag: 31.0.0.Final :DocInfoProductName: Red Hat JBoss Enterprise Application Platform :DocInfoProductNameURL: red_hat_jboss_enterprise_application_platform :DocInfoProductNumber: 8.0 @@ -196,9 +196,6 @@ endif::[] :LinkJBDSGettingStarted: https://access.redhat.com/documentation/en-us/red_hat_codeready_studio/{JBDSVersion}/html-single/getting_started_with_codeready_studio_tools/ :JBDSGettingStartedBookName: Getting Started with CodeReady Studio Tools -// Enable Rendering of Glow configuration in plugin examples -:portedToGlow: true - = ejb-multi-server: EJB Communication Across Servers :author: Wolf-Dieter Fink :level: Advanced diff --git a/ejb-remote/README.adoc b/ejb-remote/README.adoc index d94f86b5e9..5749452e7f 100644 --- a/ejb-remote/README.adoc +++ b/ejb-remote/README.adoc @@ -66,7 +66,7 @@ ifndef::ProductRelease,EAPXPRelease[] :productImageVersion: 31.0 :githubRepoUrl: https://github.com/wildfly/quickstart/ :githubRepoCodeUrl: https://github.com/wildfly/quickstart.git -:WildFlyQuickStartRepoTag: 31.0.0.Final-glow-preview +:WildFlyQuickStartRepoTag: 31.0.0.Final :DocInfoProductName: Red Hat JBoss Enterprise Application Platform :DocInfoProductNameURL: red_hat_jboss_enterprise_application_platform :DocInfoProductNumber: 8.0 @@ -196,15 +196,11 @@ endif::[] :LinkJBDSGettingStarted: https://access.redhat.com/documentation/en-us/red_hat_codeready_studio/{JBDSVersion}/html-single/getting_started_with_codeready_studio_tools/ :JBDSGettingStartedBookName: Getting Started with CodeReady Studio Tools -// Enable Rendering of Glow configuration in plugin examples -:portedToGlow: true - = ejb-remote: Remote EJB Client Example :author: Jaikiran Pai, Mike Musgrove :level: Intermediate :technologies: EJB, JNDI :openshift: true -:portedToGlow: true [abstract] The `ejb-remote` quickstart uses EJB and JNDI to demonstrate how to access an EJB, deployed to {productName}, from a remote Java client application. @@ -703,7 +699,7 @@ For Windows, use the `__{jbossHomeName}__\bin\add-user.bat` script. endif::[] The server provisioning functionality is provided by the WildFly Maven Plugin, and you may find its configuration in the quickstart `pom.xml`: -ifndef::portedToGlow[] + [source,xml,subs="attributes+"] ---- @@ -736,55 +732,6 @@ ifndef::portedToGlow[] ---- -endif::portedToGlow[] -ifdef::portedToGlow[] -[source,xml,subs="attributes+"] ----- - - provisioned-server - - - - org.wildfly.plugins - wildfly-maven-plugin - - - ${version.server} - - - ROOT.war - ... - - - - - package - - - - - ... - - - ----- -The plugin uses https://github.com/wildfly/wildfly-glow[WildFly Glow] to discover the feature packs and layers required to run the application, and provisions a server containing those layers. - -[NOTE] -==== -This uses a pre-release of version 5.0.0 of the wildfly-maven-plugin providing the Glow functionality. The version is set in the pom's `pluginManagement` section. -==== - -If you get an error or the server is missing some functionality which cannot be auto-discovered, you can download the https://github.com/wildfly/wildfly-glow/releases/tag[WildFly Glow CLI] and run the following command to see more information about what add-ons are available: - -[source,shell] ----- -wildfly-glow show-add-ons ----- -endif::portedToGlow[] [NOTE] ==== @@ -981,14 +928,9 @@ ifdef::ProductRelease,EAPXPRelease[] The server provisioning functionality is provided by the EAP Maven Plugin, and you may find its configuration in the quickstart `pom.xml`: endif::[] -<<<<<<< HEAD -ifndef::ProductRelease,EAPXPRelease[] -ifndef::portedToGlow[] -======= // Render XML Snippet of openshift Maven profile... ifndef::ProductRelease[] // ... for WildFly ->>>>>>> upstream/main [source,xml,subs="attributes+"] ---- @@ -1023,68 +965,10 @@ ifndef::ProductRelease[] ---- -<<<<<<< HEAD -You may note that unlike the `provisioned-server` profile it uses the cloud feature pack which enables a configuration tuned for OpenShift environment. -endif::portedToGlow[] -ifdef::portedToGlow[] -[source,xml,subs="attributes+"] ----- - - openshift - - - - org.wildfly.plugins - wildfly-maven-plugin - - - ${version.server} - cloud - - - ROOT.war - ... - - - - - package - - - - - ... - - - ----- -You may note that unlike the `provisioned-server` profile it uses the cloud context which enables a configuration tuned for OpenShift environment. - -The plugin uses https://github.com/wildfly/wildfly-glow[WildFly Glow] to discover the feature packs and layers required to run the application, and provisions a server containing those layers. - -[NOTE] -==== -This uses a pre-release of version 5.0.0 of the wildfly-maven-plugin providing the Glow functionality. The version is set in the pom's `pluginManagement` section. -==== - -If you get an error or the server is missing some functionality which cannot be auto-discovered, you can download the https://github.com/wildfly/wildfly-glow/releases[WildFly Glow CLI] and run the following command to see more information about what add-ons are available: -[source,shell] ----- -wildfly-glow show-add-ons ----- -endif::portedToGlow[] -endif::ProductRelease,EAPXPRelease[] - -ifdef::ProductRelease,EAPXPRelease[] -======= endif::[] ifdef::ProductRelease[] ifndef::EAPXPRelease[] // ... for EAP ->>>>>>> upstream/main [source,xml,subs="attributes+"] ---- @@ -1120,9 +1004,6 @@ ifndef::EAPXPRelease[] ---- -<<<<<<< HEAD -You may note that it uses the cloud feature pack which enables a configuration tuned for OpenShift environment. -======= endif::[] ifdef::EAPXPRelease[] // ... for EAP XP @@ -1176,10 +1057,8 @@ ifdef::EAPXPRelease[] ==== Previous {productName} releases used the WildFly JAR Maven Plugin to package the quickstart in a Bootable JAR, when deploying it on OpenShift, and while that's still supported it's no longer recommended. ==== ->>>>>>> upstream/main endif::[] - :leveloffset: 1 // Getting Started with Helm :leveloffset: +1 @@ -1285,11 +1164,7 @@ ifndef::useHelmChartDir[] ---- build: uri: https://github.com/wildfly/quickstart.git -<<<<<<< HEAD - ref: 31.x-glow-preview -======= ref: main ->>>>>>> upstream/main contextDir: ejb-remote deploy: replicas: 1 diff --git a/ejb-security-context-propagation/README.adoc b/ejb-security-context-propagation/README.adoc index 490f783f18..c618beb97c 100644 --- a/ejb-security-context-propagation/README.adoc +++ b/ejb-security-context-propagation/README.adoc @@ -66,7 +66,7 @@ ifndef::ProductRelease,EAPXPRelease[] :productImageVersion: 31.0 :githubRepoUrl: https://github.com/wildfly/quickstart/ :githubRepoCodeUrl: https://github.com/wildfly/quickstart.git -:WildFlyQuickStartRepoTag: 31.0.0.Final-glow-preview +:WildFlyQuickStartRepoTag: 31.0.0.Final :DocInfoProductName: Red Hat JBoss Enterprise Application Platform :DocInfoProductNameURL: red_hat_jboss_enterprise_application_platform :DocInfoProductNumber: 8.0 @@ -196,14 +196,10 @@ endif::[] :LinkJBDSGettingStarted: https://access.redhat.com/documentation/en-us/red_hat_codeready_studio/{JBDSVersion}/html-single/getting_started_with_codeready_studio_tools/ :JBDSGettingStartedBookName: Getting Started with CodeReady Studio Tools -// Enable Rendering of Glow configuration in plugin examples -:portedToGlow: true - = ejb-security-context-propagation: Demonstrate security context propagation in EJB to remote EJB calls :author: Stefan Guilhen :level: Advanced :technologies: EJB, Security -:portedToGlow: true [abstract] The `ejb-security-context-propagation` quickstart demonstrates how the security context can be propagated to a remote EJB using a remote outbound connection configuration @@ -1130,7 +1126,7 @@ For Windows, use the `__{jbossHomeName}__\bin\add-user.bat` script. endif::[] The server provisioning functionality is provided by the WildFly Maven Plugin, and you may find its configuration in the quickstart `pom.xml`: -ifndef::portedToGlow[] + [source,xml,subs="attributes+"] ---- @@ -1163,55 +1159,6 @@ ifndef::portedToGlow[] ---- -endif::portedToGlow[] -ifdef::portedToGlow[] -[source,xml,subs="attributes+"] ----- - - provisioned-server - - - - org.wildfly.plugins - wildfly-maven-plugin - - - ${version.server} - - - ROOT.war - ... - - - - - package - - - - - ... - - - ----- -The plugin uses https://github.com/wildfly/wildfly-glow[WildFly Glow] to discover the feature packs and layers required to run the application, and provisions a server containing those layers. - -[NOTE] -==== -This uses a pre-release of version 5.0.0 of the wildfly-maven-plugin providing the Glow functionality. The version is set in the pom's `pluginManagement` section. -==== - -If you get an error or the server is missing some functionality which cannot be auto-discovered, you can download the https://github.com/wildfly/wildfly-glow/releases/tag[WildFly Glow CLI] and run the following command to see more information about what add-ons are available: - -[source,shell] ----- -wildfly-glow show-add-ons ----- -endif::portedToGlow[] [NOTE] ==== diff --git a/ejb-security-programmatic-auth/README.adoc b/ejb-security-programmatic-auth/README.adoc index a5c5e81dfc..05d7a2acf7 100644 --- a/ejb-security-programmatic-auth/README.adoc +++ b/ejb-security-programmatic-auth/README.adoc @@ -66,7 +66,7 @@ ifndef::ProductRelease,EAPXPRelease[] :productImageVersion: 31.0 :githubRepoUrl: https://github.com/wildfly/quickstart/ :githubRepoCodeUrl: https://github.com/wildfly/quickstart.git -:WildFlyQuickStartRepoTag: 31.0.0.Final-glow-preview +:WildFlyQuickStartRepoTag: 31.0.0.Final :DocInfoProductName: Red Hat JBoss Enterprise Application Platform :DocInfoProductNameURL: red_hat_jboss_enterprise_application_platform :DocInfoProductNumber: 8.0 @@ -196,14 +196,10 @@ endif::[] :LinkJBDSGettingStarted: https://access.redhat.com/documentation/en-us/red_hat_codeready_studio/{JBDSVersion}/html-single/getting_started_with_codeready_studio_tools/ :JBDSGettingStartedBookName: Getting Started with CodeReady Studio Tools -// Enable Rendering of Glow configuration in plugin examples -:portedToGlow: true - = ejb-security-programmatic-auth: Using the programmatic API to invoke a remote EJB using different identities :author: Stefan Guilhen :level: Intermediate :technologies: EJB, Security -:portedToGlow: true [abstract] The `ejb-security-programmatic-auth` quickstart demonstrates how to programmatically setup different identities when invoking a remote secured EJB. @@ -1025,7 +1021,7 @@ For Windows, use the `__{jbossHomeName}__\bin\add-user.bat` script. endif::[] The server provisioning functionality is provided by the WildFly Maven Plugin, and you may find its configuration in the quickstart `pom.xml`: -ifndef::portedToGlow[] + [source,xml,subs="attributes+"] ---- @@ -1058,55 +1054,6 @@ ifndef::portedToGlow[] ---- -endif::portedToGlow[] -ifdef::portedToGlow[] -[source,xml,subs="attributes+"] ----- - - provisioned-server - - - - org.wildfly.plugins - wildfly-maven-plugin - - - ${version.server} - - - ROOT.war - ... - - - - - package - - - - - ... - - - ----- -The plugin uses https://github.com/wildfly/wildfly-glow[WildFly Glow] to discover the feature packs and layers required to run the application, and provisions a server containing those layers. - -[NOTE] -==== -This uses a pre-release of version 5.0.0 of the wildfly-maven-plugin providing the Glow functionality. The version is set in the pom's `pluginManagement` section. -==== - -If you get an error or the server is missing some functionality which cannot be auto-discovered, you can download the https://github.com/wildfly/wildfly-glow/releases/tag[WildFly Glow CLI] and run the following command to see more information about what add-ons are available: - -[source,shell] ----- -wildfly-glow show-add-ons ----- -endif::portedToGlow[] [NOTE] ==== diff --git a/ejb-throws-exception/README.adoc b/ejb-throws-exception/README.adoc index 9369c576ae..8b0da1a304 100644 --- a/ejb-throws-exception/README.adoc +++ b/ejb-throws-exception/README.adoc @@ -66,7 +66,7 @@ ifndef::ProductRelease,EAPXPRelease[] :productImageVersion: 31.0 :githubRepoUrl: https://github.com/wildfly/quickstart/ :githubRepoCodeUrl: https://github.com/wildfly/quickstart.git -:WildFlyQuickStartRepoTag: 31.0.0.Final-glow-preview +:WildFlyQuickStartRepoTag: 31.0.0.Final :DocInfoProductName: Red Hat JBoss Enterprise Application Platform :DocInfoProductNameURL: red_hat_jboss_enterprise_application_platform :DocInfoProductNumber: 8.0 @@ -196,15 +196,11 @@ endif::[] :LinkJBDSGettingStarted: https://access.redhat.com/documentation/en-us/red_hat_codeready_studio/{JBDSVersion}/html-single/getting_started_with_codeready_studio_tools/ :JBDSGettingStartedBookName: Getting Started with CodeReady Studio Tools -// Enable Rendering of Glow configuration in plugin examples -:portedToGlow: true - = ejb-throws-exception: Handle Exceptions across JARs in an EAR :author: Brad Maxwell :level: Intermediate :technologies: EJB, EAR :deploymentDir: ear -:portedToGlow: true [abstract] The `ejb-throws-exception` quickstart demonstrates how to throw and handle exceptions across JARs in an EAR. @@ -650,7 +646,7 @@ For Windows, use the `__{jbossHomeName}__\bin\add-user.bat` script. endif::[] The server provisioning functionality is provided by the WildFly Maven Plugin, and you may find its configuration in the quickstart `pom.xml`: -ifndef::portedToGlow[] + [source,xml,subs="attributes+"] ---- @@ -683,55 +679,6 @@ ifndef::portedToGlow[] ---- -endif::portedToGlow[] -ifdef::portedToGlow[] -[source,xml,subs="attributes+"] ----- - - provisioned-server - - - - org.wildfly.plugins - wildfly-maven-plugin - - - ${version.server} - - - ROOT.war - ... - - - - - package - - - - - ... - - - ----- -The plugin uses https://github.com/wildfly/wildfly-glow[WildFly Glow] to discover the feature packs and layers required to run the application, and provisions a server containing those layers. - -[NOTE] -==== -This uses a pre-release of version 5.0.0 of the wildfly-maven-plugin providing the Glow functionality. The version is set in the pom's `pluginManagement` section. -==== - -If you get an error or the server is missing some functionality which cannot be auto-discovered, you can download the https://github.com/wildfly/wildfly-glow/releases/tag[WildFly Glow CLI] and run the following command to see more information about what add-ons are available: - -[source,shell] ----- -wildfly-glow show-add-ons ----- -endif::portedToGlow[] [NOTE] ==== diff --git a/ejb-timer/README.adoc b/ejb-timer/README.adoc index 485a530392..4e9e3ea344 100644 --- a/ejb-timer/README.adoc +++ b/ejb-timer/README.adoc @@ -66,7 +66,7 @@ ifndef::ProductRelease,EAPXPRelease[] :productImageVersion: 31.0 :githubRepoUrl: https://github.com/wildfly/quickstart/ :githubRepoCodeUrl: https://github.com/wildfly/quickstart.git -:WildFlyQuickStartRepoTag: 31.0.0.Final-glow-preview +:WildFlyQuickStartRepoTag: 31.0.0.Final :DocInfoProductName: Red Hat JBoss Enterprise Application Platform :DocInfoProductNameURL: red_hat_jboss_enterprise_application_platform :DocInfoProductNumber: 8.0 @@ -196,15 +196,11 @@ endif::[] :LinkJBDSGettingStarted: https://access.redhat.com/documentation/en-us/red_hat_codeready_studio/{JBDSVersion}/html-single/getting_started_with_codeready_studio_tools/ :JBDSGettingStartedBookName: Getting Started with CodeReady Studio Tools -// Enable Rendering of Glow configuration in plugin examples -:portedToGlow: true - = ejb-timer: Example of Jakarta Enterprise Bean Timer Service - @Schedule and @Timeout :author: Ondrej Zizka :level: Beginner :technologies: EJB Timer :openshift: true -:portedToGlow: true [abstract] The `ejb-timer` quickstart demonstrates how to use the Jakarta Enterprise Bean timer service `@Schedule` and `@Timeout` annotations with {productName}. @@ -653,7 +649,7 @@ For Windows, use the `__{jbossHomeName}__\bin\add-user.bat` script. endif::[] The server provisioning functionality is provided by the WildFly Maven Plugin, and you may find its configuration in the quickstart `pom.xml`: -ifndef::portedToGlow[] + [source,xml,subs="attributes+"] ---- @@ -686,55 +682,6 @@ ifndef::portedToGlow[] ---- -endif::portedToGlow[] -ifdef::portedToGlow[] -[source,xml,subs="attributes+"] ----- - - provisioned-server - - - - org.wildfly.plugins - wildfly-maven-plugin - - - ${version.server} - - - ROOT.war - ... - - - - - package - - - - - ... - - - ----- -The plugin uses https://github.com/wildfly/wildfly-glow[WildFly Glow] to discover the feature packs and layers required to run the application, and provisions a server containing those layers. - -[NOTE] -==== -This uses a pre-release of version 5.0.0 of the wildfly-maven-plugin providing the Glow functionality. The version is set in the pom's `pluginManagement` section. -==== - -If you get an error or the server is missing some functionality which cannot be auto-discovered, you can download the https://github.com/wildfly/wildfly-glow/releases/tag[WildFly Glow CLI] and run the following command to see more information about what add-ons are available: - -[source,shell] ----- -wildfly-glow show-add-ons ----- -endif::portedToGlow[] [NOTE] ==== @@ -931,14 +878,9 @@ ifdef::ProductRelease,EAPXPRelease[] The server provisioning functionality is provided by the EAP Maven Plugin, and you may find its configuration in the quickstart `pom.xml`: endif::[] -<<<<<<< HEAD -ifndef::ProductRelease,EAPXPRelease[] -ifndef::portedToGlow[] -======= // Render XML Snippet of openshift Maven profile... ifndef::ProductRelease[] // ... for WildFly ->>>>>>> upstream/main [source,xml,subs="attributes+"] ---- @@ -973,68 +915,10 @@ ifndef::ProductRelease[] ---- -<<<<<<< HEAD -You may note that unlike the `provisioned-server` profile it uses the cloud feature pack which enables a configuration tuned for OpenShift environment. -endif::portedToGlow[] -ifdef::portedToGlow[] -[source,xml,subs="attributes+"] ----- - - openshift - - - - org.wildfly.plugins - wildfly-maven-plugin - - - ${version.server} - cloud - - - ROOT.war - ... - - - - - package - - - - - ... - - - ----- -You may note that unlike the `provisioned-server` profile it uses the cloud context which enables a configuration tuned for OpenShift environment. - -The plugin uses https://github.com/wildfly/wildfly-glow[WildFly Glow] to discover the feature packs and layers required to run the application, and provisions a server containing those layers. - -[NOTE] -==== -This uses a pre-release of version 5.0.0 of the wildfly-maven-plugin providing the Glow functionality. The version is set in the pom's `pluginManagement` section. -==== - -If you get an error or the server is missing some functionality which cannot be auto-discovered, you can download the https://github.com/wildfly/wildfly-glow/releases[WildFly Glow CLI] and run the following command to see more information about what add-ons are available: -[source,shell] ----- -wildfly-glow show-add-ons ----- -endif::portedToGlow[] -endif::ProductRelease,EAPXPRelease[] - -ifdef::ProductRelease,EAPXPRelease[] -======= endif::[] ifdef::ProductRelease[] ifndef::EAPXPRelease[] // ... for EAP ->>>>>>> upstream/main [source,xml,subs="attributes+"] ---- @@ -1070,9 +954,6 @@ ifndef::EAPXPRelease[] ---- -<<<<<<< HEAD -You may note that it uses the cloud feature pack which enables a configuration tuned for OpenShift environment. -======= endif::[] ifdef::EAPXPRelease[] // ... for EAP XP @@ -1126,10 +1007,8 @@ ifdef::EAPXPRelease[] ==== Previous {productName} releases used the WildFly JAR Maven Plugin to package the quickstart in a Bootable JAR, when deploying it on OpenShift, and while that's still supported it's no longer recommended. ==== ->>>>>>> upstream/main endif::[] - :leveloffset: 1 // Getting Started with Helm :leveloffset: +1 @@ -1235,11 +1114,7 @@ ifndef::useHelmChartDir[] ---- build: uri: https://github.com/wildfly/quickstart.git -<<<<<<< HEAD - ref: 31.x-glow-preview -======= ref: main ->>>>>>> upstream/main contextDir: ejb-timer deploy: replicas: 1 diff --git a/ejb-txn-remote-call/README.adoc b/ejb-txn-remote-call/README.adoc index 3b530a64d6..39c2448414 100644 --- a/ejb-txn-remote-call/README.adoc +++ b/ejb-txn-remote-call/README.adoc @@ -66,7 +66,7 @@ ifndef::ProductRelease,EAPXPRelease[] :productImageVersion: 31.0 :githubRepoUrl: https://github.com/wildfly/quickstart/ :githubRepoCodeUrl: https://github.com/wildfly/quickstart.git -:WildFlyQuickStartRepoTag: 31.0.0.Final-glow-preview +:WildFlyQuickStartRepoTag: 31.0.0.Final :DocInfoProductName: Red Hat JBoss Enterprise Application Platform :DocInfoProductNameURL: red_hat_jboss_enterprise_application_platform :DocInfoProductNumber: 8.0 @@ -196,15 +196,11 @@ endif::[] :LinkJBDSGettingStarted: https://access.redhat.com/documentation/en-us/red_hat_codeready_studio/{JBDSVersion}/html-single/getting_started_with_codeready_studio_tools/ :JBDSGettingStartedBookName: Getting Started with CodeReady Studio Tools -// Enable Rendering of Glow configuration in plugin examples -:portedToGlow: true - = ejb-txn-remote-call: Demonstrates remote EJB calls and transaction propagation :author: Ondra Chaloupka :level: Intermediate :technologies: EJB, JTA, Clustering :openshift: true -:portedToGlow: true [abstract] The `ejb-txn-remote-call` quickstart demonstrates remote transactional EJB calls over two application servers of {productName}. diff --git a/ha-singleton-deployment/README.adoc b/ha-singleton-deployment/README.adoc index b241e50640..3845d82006 100644 --- a/ha-singleton-deployment/README.adoc +++ b/ha-singleton-deployment/README.adoc @@ -66,7 +66,7 @@ ifndef::ProductRelease,EAPXPRelease[] :productImageVersion: 31.0 :githubRepoUrl: https://github.com/wildfly/quickstart/ :githubRepoCodeUrl: https://github.com/wildfly/quickstart.git -:WildFlyQuickStartRepoTag: 31.0.0.Final-glow-preview +:WildFlyQuickStartRepoTag: 31.0.0.Final :DocInfoProductName: Red Hat JBoss Enterprise Application Platform :DocInfoProductNameURL: red_hat_jboss_enterprise_application_platform :DocInfoProductNumber: 8.0 @@ -196,9 +196,6 @@ endif::[] :LinkJBDSGettingStarted: https://access.redhat.com/documentation/en-us/red_hat_codeready_studio/{JBDSVersion}/html-single/getting_started_with_codeready_studio_tools/ :JBDSGettingStartedBookName: Getting Started with CodeReady Studio Tools -// Enable Rendering of Glow configuration in plugin examples -:portedToGlow: true - = ha-singleton-deployment: Deploying Cluster-wide Singleton Services Using Singleton Deployments :author: Radoslav Husar :level: Advanced diff --git a/ha-singleton-service/README.adoc b/ha-singleton-service/README.adoc index c872c24e2e..e17f468206 100644 --- a/ha-singleton-service/README.adoc +++ b/ha-singleton-service/README.adoc @@ -66,7 +66,7 @@ ifndef::ProductRelease,EAPXPRelease[] :productImageVersion: 31.0 :githubRepoUrl: https://github.com/wildfly/quickstart/ :githubRepoCodeUrl: https://github.com/wildfly/quickstart.git -:WildFlyQuickStartRepoTag: 31.0.0.Final-glow-preview +:WildFlyQuickStartRepoTag: 31.0.0.Final :DocInfoProductName: Red Hat JBoss Enterprise Application Platform :DocInfoProductNameURL: red_hat_jboss_enterprise_application_platform :DocInfoProductNumber: 8.0 @@ -196,9 +196,6 @@ endif::[] :LinkJBDSGettingStarted: https://access.redhat.com/documentation/en-us/red_hat_codeready_studio/{JBDSVersion}/html-single/getting_started_with_codeready_studio_tools/ :JBDSGettingStartedBookName: Getting Started with CodeReady Studio Tools -// Enable Rendering of Glow configuration in plugin examples -:portedToGlow: true - = ha-singleton-service: Deploying Cluster-wide Singleton MSC Services :author: Radoslav Husar :level: Advanced diff --git a/helloworld-jms/README.adoc b/helloworld-jms/README.adoc index 584918f022..9f663105eb 100644 --- a/helloworld-jms/README.adoc +++ b/helloworld-jms/README.adoc @@ -66,7 +66,7 @@ ifndef::ProductRelease,EAPXPRelease[] :productImageVersion: 31.0 :githubRepoUrl: https://github.com/wildfly/quickstart/ :githubRepoCodeUrl: https://github.com/wildfly/quickstart.git -:WildFlyQuickStartRepoTag: 31.0.0.Final-glow-preview +:WildFlyQuickStartRepoTag: 31.0.0.Final :DocInfoProductName: Red Hat JBoss Enterprise Application Platform :DocInfoProductNameURL: red_hat_jboss_enterprise_application_platform :DocInfoProductNumber: 8.0 @@ -196,14 +196,10 @@ endif::[] :LinkJBDSGettingStarted: https://access.redhat.com/documentation/en-us/red_hat_codeready_studio/{JBDSVersion}/html-single/getting_started_with_codeready_studio_tools/ :JBDSGettingStartedBookName: Getting Started with CodeReady Studio Tools -// Enable Rendering of Glow configuration in plugin examples -:portedToGlow: true - = helloworld-jms: Helloworld JMS Example :author: Weston Price :level: Intermediate :technologies: JMS -:portedToGlow: true [abstract] The `helloworld-jms` quickstart demonstrates the use of external JMS clients with {productName}. diff --git a/helloworld-mdb/README.adoc b/helloworld-mdb/README.adoc index 8f5a0f9a2a..544283e0af 100644 --- a/helloworld-mdb/README.adoc +++ b/helloworld-mdb/README.adoc @@ -66,7 +66,7 @@ ifndef::ProductRelease,EAPXPRelease[] :productImageVersion: 31.0 :githubRepoUrl: https://github.com/wildfly/quickstart/ :githubRepoCodeUrl: https://github.com/wildfly/quickstart.git -:WildFlyQuickStartRepoTag: 31.0.0.Final-glow-preview +:WildFlyQuickStartRepoTag: 31.0.0.Final :DocInfoProductName: Red Hat JBoss Enterprise Application Platform :DocInfoProductNameURL: red_hat_jboss_enterprise_application_platform :DocInfoProductNumber: 8.0 @@ -196,15 +196,11 @@ endif::[] :LinkJBDSGettingStarted: https://access.redhat.com/documentation/en-us/red_hat_codeready_studio/{JBDSVersion}/html-single/getting_started_with_codeready_studio_tools/ :JBDSGettingStartedBookName: Getting Started with CodeReady Studio Tools -// Enable Rendering of Glow configuration in plugin examples -:portedToGlow: true - = helloworld-mdb: Helloworld Using an MDB (Message-Driven Bean) :author: Serge Pagop, Andy Taylor, Jeff Mesnil :level: Intermediate :technologies: JMS, EJB, MDB :openshift: true -:portedToGlow: true [abstract] The `helloworld-mdb` quickstart uses JMS and EJB Message-Driven Bean (MDB) to create and deploy JMS topic and queue resources in {productName}. @@ -649,7 +645,7 @@ For Windows, use the `__{jbossHomeName}__\bin\add-user.bat` script. endif::[] The server provisioning functionality is provided by the WildFly Maven Plugin, and you may find its configuration in the quickstart `pom.xml`: -ifndef::portedToGlow[] + [source,xml,subs="attributes+"] ---- @@ -682,55 +678,6 @@ ifndef::portedToGlow[] ---- -endif::portedToGlow[] -ifdef::portedToGlow[] -[source,xml,subs="attributes+"] ----- - - provisioned-server - - - - org.wildfly.plugins - wildfly-maven-plugin - - - ${version.server} - - - ROOT.war - ... - - - - - package - - - - - ... - - - ----- -The plugin uses https://github.com/wildfly/wildfly-glow[WildFly Glow] to discover the feature packs and layers required to run the application, and provisions a server containing those layers. - -[NOTE] -==== -This uses a pre-release of version 5.0.0 of the wildfly-maven-plugin providing the Glow functionality. The version is set in the pom's `pluginManagement` section. -==== - -If you get an error or the server is missing some functionality which cannot be auto-discovered, you can download the https://github.com/wildfly/wildfly-glow/releases/tag[WildFly Glow CLI] and run the following command to see more information about what add-ons are available: - -[source,shell] ----- -wildfly-glow show-add-ons ----- -endif::portedToGlow[] [NOTE] ==== @@ -927,14 +874,9 @@ ifdef::ProductRelease,EAPXPRelease[] The server provisioning functionality is provided by the EAP Maven Plugin, and you may find its configuration in the quickstart `pom.xml`: endif::[] -<<<<<<< HEAD -ifndef::ProductRelease,EAPXPRelease[] -ifndef::portedToGlow[] -======= // Render XML Snippet of openshift Maven profile... ifndef::ProductRelease[] // ... for WildFly ->>>>>>> upstream/main [source,xml,subs="attributes+"] ---- @@ -969,68 +911,10 @@ ifndef::ProductRelease[] ---- -<<<<<<< HEAD -You may note that unlike the `provisioned-server` profile it uses the cloud feature pack which enables a configuration tuned for OpenShift environment. -endif::portedToGlow[] -ifdef::portedToGlow[] -[source,xml,subs="attributes+"] ----- - - openshift - - - - org.wildfly.plugins - wildfly-maven-plugin - - - ${version.server} - cloud - - - ROOT.war - ... - - - - - package - - - - - ... - - - ----- -You may note that unlike the `provisioned-server` profile it uses the cloud context which enables a configuration tuned for OpenShift environment. - -The plugin uses https://github.com/wildfly/wildfly-glow[WildFly Glow] to discover the feature packs and layers required to run the application, and provisions a server containing those layers. - -[NOTE] -==== -This uses a pre-release of version 5.0.0 of the wildfly-maven-plugin providing the Glow functionality. The version is set in the pom's `pluginManagement` section. -==== - -If you get an error or the server is missing some functionality which cannot be auto-discovered, you can download the https://github.com/wildfly/wildfly-glow/releases[WildFly Glow CLI] and run the following command to see more information about what add-ons are available: -[source,shell] ----- -wildfly-glow show-add-ons ----- -endif::portedToGlow[] -endif::ProductRelease,EAPXPRelease[] - -ifdef::ProductRelease,EAPXPRelease[] -======= endif::[] ifdef::ProductRelease[] ifndef::EAPXPRelease[] // ... for EAP ->>>>>>> upstream/main [source,xml,subs="attributes+"] ---- @@ -1066,9 +950,6 @@ ifndef::EAPXPRelease[] ---- -<<<<<<< HEAD -You may note that it uses the cloud feature pack which enables a configuration tuned for OpenShift environment. -======= endif::[] ifdef::EAPXPRelease[] // ... for EAP XP @@ -1122,10 +1003,8 @@ ifdef::EAPXPRelease[] ==== Previous {productName} releases used the WildFly JAR Maven Plugin to package the quickstart in a Bootable JAR, when deploying it on OpenShift, and while that's still supported it's no longer recommended. ==== ->>>>>>> upstream/main endif::[] - :leveloffset: 1 // Getting Started with Helm :leveloffset: +1 @@ -1231,11 +1110,7 @@ ifndef::useHelmChartDir[] ---- build: uri: https://github.com/wildfly/quickstart.git -<<<<<<< HEAD - ref: 31.x-glow-preview -======= ref: main ->>>>>>> upstream/main contextDir: helloworld-mdb deploy: replicas: 2 diff --git a/helloworld-mutual-ssl-secured/README.adoc b/helloworld-mutual-ssl-secured/README.adoc index e42fc5efa8..cf2fe63ba6 100644 --- a/helloworld-mutual-ssl-secured/README.adoc +++ b/helloworld-mutual-ssl-secured/README.adoc @@ -66,7 +66,7 @@ ifndef::ProductRelease,EAPXPRelease[] :productImageVersion: 31.0 :githubRepoUrl: https://github.com/wildfly/quickstart/ :githubRepoCodeUrl: https://github.com/wildfly/quickstart.git -:WildFlyQuickStartRepoTag: 31.0.0.Final-glow-preview +:WildFlyQuickStartRepoTag: 31.0.0.Final :DocInfoProductName: Red Hat JBoss Enterprise Application Platform :DocInfoProductNameURL: red_hat_jboss_enterprise_application_platform :DocInfoProductNumber: 8.0 @@ -196,9 +196,6 @@ endif::[] :LinkJBDSGettingStarted: https://access.redhat.com/documentation/en-us/red_hat_codeready_studio/{JBDSVersion}/html-single/getting_started_with_codeready_studio_tools/ :JBDSGettingStartedBookName: Getting Started with CodeReady Studio Tools -// Enable Rendering of Glow configuration in plugin examples -:portedToGlow: true - = helloworld-mutual-ssl-secured: Securing a Web Application with Mutual (two-way) TLS Configuration and Role-based Access Control :author: Giriraj Sharma, Stefan Guilhen :level: Intermediate diff --git a/helloworld-mutual-ssl/README.adoc b/helloworld-mutual-ssl/README.adoc index 5f65f6b8a7..88dcd3475c 100644 --- a/helloworld-mutual-ssl/README.adoc +++ b/helloworld-mutual-ssl/README.adoc @@ -66,7 +66,7 @@ ifndef::ProductRelease,EAPXPRelease[] :productImageVersion: 31.0 :githubRepoUrl: https://github.com/wildfly/quickstart/ :githubRepoCodeUrl: https://github.com/wildfly/quickstart.git -:WildFlyQuickStartRepoTag: 31.0.0.Final-glow-preview +:WildFlyQuickStartRepoTag: 31.0.0.Final :DocInfoProductName: Red Hat JBoss Enterprise Application Platform :DocInfoProductNameURL: red_hat_jboss_enterprise_application_platform :DocInfoProductNumber: 8.0 @@ -196,9 +196,6 @@ endif::[] :LinkJBDSGettingStarted: https://access.redhat.com/documentation/en-us/red_hat_codeready_studio/{JBDSVersion}/html-single/getting_started_with_codeready_studio_tools/ :JBDSGettingStartedBookName: Getting Started with CodeReady Studio Tools -// Enable Rendering of Glow configuration in plugin examples -:portedToGlow: true - = helloworld-mutual-ssl: {productName} Mutual TLS(two-way) Configuration Example :author: Giriraj Sharma, Stefan Guilhen :level: Intermediate diff --git a/helloworld-singleton/README.adoc b/helloworld-singleton/README.adoc index 9f89d96999..d95c46f4eb 100644 --- a/helloworld-singleton/README.adoc +++ b/helloworld-singleton/README.adoc @@ -66,7 +66,7 @@ ifndef::ProductRelease,EAPXPRelease[] :productImageVersion: 31.0 :githubRepoUrl: https://github.com/wildfly/quickstart/ :githubRepoCodeUrl: https://github.com/wildfly/quickstart.git -:WildFlyQuickStartRepoTag: 31.0.0.Final-glow-preview +:WildFlyQuickStartRepoTag: 31.0.0.Final :DocInfoProductName: Red Hat JBoss Enterprise Application Platform :DocInfoProductNameURL: red_hat_jboss_enterprise_application_platform :DocInfoProductNumber: 8.0 @@ -196,15 +196,11 @@ endif::[] :LinkJBDSGettingStarted: https://access.redhat.com/documentation/en-us/red_hat_codeready_studio/{JBDSVersion}/html-single/getting_started_with_codeready_studio_tools/ :JBDSGettingStartedBookName: Getting Started with CodeReady Studio Tools -// Enable Rendering of Glow configuration in plugin examples -:portedToGlow: true - = helloworld-singleton: Helloworld Using a Singleton EJB :author: Serge Pagop :level: Beginner :technologies: EJB, Singleton :openshift: true -:portedToGlow: true [abstract] The `helloworld-singleton` quickstart demonstrates an EJB Singleton Bean that is instantiated once and maintains state for the life of the session. @@ -611,7 +607,7 @@ For Windows, use the `__{jbossHomeName}__\bin\add-user.bat` script. endif::[] The server provisioning functionality is provided by the WildFly Maven Plugin, and you may find its configuration in the quickstart `pom.xml`: -ifndef::portedToGlow[] + [source,xml,subs="attributes+"] ---- @@ -644,55 +640,6 @@ ifndef::portedToGlow[] ---- -endif::portedToGlow[] -ifdef::portedToGlow[] -[source,xml,subs="attributes+"] ----- - - provisioned-server - - - - org.wildfly.plugins - wildfly-maven-plugin - - - ${version.server} - - - ROOT.war - ... - - - - - package - - - - - ... - - - ----- -The plugin uses https://github.com/wildfly/wildfly-glow[WildFly Glow] to discover the feature packs and layers required to run the application, and provisions a server containing those layers. - -[NOTE] -==== -This uses a pre-release of version 5.0.0 of the wildfly-maven-plugin providing the Glow functionality. The version is set in the pom's `pluginManagement` section. -==== - -If you get an error or the server is missing some functionality which cannot be auto-discovered, you can download the https://github.com/wildfly/wildfly-glow/releases/tag[WildFly Glow CLI] and run the following command to see more information about what add-ons are available: - -[source,shell] ----- -wildfly-glow show-add-ons ----- -endif::portedToGlow[] [NOTE] ==== @@ -889,14 +836,9 @@ ifdef::ProductRelease,EAPXPRelease[] The server provisioning functionality is provided by the EAP Maven Plugin, and you may find its configuration in the quickstart `pom.xml`: endif::[] -<<<<<<< HEAD -ifndef::ProductRelease,EAPXPRelease[] -ifndef::portedToGlow[] -======= // Render XML Snippet of openshift Maven profile... ifndef::ProductRelease[] // ... for WildFly ->>>>>>> upstream/main [source,xml,subs="attributes+"] ---- @@ -931,68 +873,10 @@ ifndef::ProductRelease[] ---- -<<<<<<< HEAD -You may note that unlike the `provisioned-server` profile it uses the cloud feature pack which enables a configuration tuned for OpenShift environment. -endif::portedToGlow[] -ifdef::portedToGlow[] -[source,xml,subs="attributes+"] ----- - - openshift - - - - org.wildfly.plugins - wildfly-maven-plugin - - - ${version.server} - cloud - - - ROOT.war - ... - - - - - package - - - - - ... - - - ----- -You may note that unlike the `provisioned-server` profile it uses the cloud context which enables a configuration tuned for OpenShift environment. - -The plugin uses https://github.com/wildfly/wildfly-glow[WildFly Glow] to discover the feature packs and layers required to run the application, and provisions a server containing those layers. - -[NOTE] -==== -This uses a pre-release of version 5.0.0 of the wildfly-maven-plugin providing the Glow functionality. The version is set in the pom's `pluginManagement` section. -==== - -If you get an error or the server is missing some functionality which cannot be auto-discovered, you can download the https://github.com/wildfly/wildfly-glow/releases[WildFly Glow CLI] and run the following command to see more information about what add-ons are available: -[source,shell] ----- -wildfly-glow show-add-ons ----- -endif::portedToGlow[] -endif::ProductRelease,EAPXPRelease[] - -ifdef::ProductRelease,EAPXPRelease[] -======= endif::[] ifdef::ProductRelease[] ifndef::EAPXPRelease[] // ... for EAP ->>>>>>> upstream/main [source,xml,subs="attributes+"] ---- @@ -1028,9 +912,6 @@ ifndef::EAPXPRelease[] ---- -<<<<<<< HEAD -You may note that it uses the cloud feature pack which enables a configuration tuned for OpenShift environment. -======= endif::[] ifdef::EAPXPRelease[] // ... for EAP XP @@ -1084,10 +965,8 @@ ifdef::EAPXPRelease[] ==== Previous {productName} releases used the WildFly JAR Maven Plugin to package the quickstart in a Bootable JAR, when deploying it on OpenShift, and while that's still supported it's no longer recommended. ==== ->>>>>>> upstream/main endif::[] - :leveloffset: 1 // Getting Started with Helm :leveloffset: +1 @@ -1193,11 +1072,7 @@ ifndef::useHelmChartDir[] ---- build: uri: https://github.com/wildfly/quickstart.git -<<<<<<< HEAD - ref: 31.x-glow-preview -======= ref: main ->>>>>>> upstream/main contextDir: helloworld-singleton deploy: replicas: 1 diff --git a/helloworld-ws/README.adoc b/helloworld-ws/README.adoc index 64b3bda0ed..19d45a4ead 100644 --- a/helloworld-ws/README.adoc +++ b/helloworld-ws/README.adoc @@ -66,7 +66,7 @@ ifndef::ProductRelease,EAPXPRelease[] :productImageVersion: 31.0 :githubRepoUrl: https://github.com/wildfly/quickstart/ :githubRepoCodeUrl: https://github.com/wildfly/quickstart.git -:WildFlyQuickStartRepoTag: 31.0.0.Final-glow-preview +:WildFlyQuickStartRepoTag: 31.0.0.Final :DocInfoProductName: Red Hat JBoss Enterprise Application Platform :DocInfoProductNameURL: red_hat_jboss_enterprise_application_platform :DocInfoProductNumber: 8.0 @@ -196,15 +196,11 @@ endif::[] :LinkJBDSGettingStarted: https://access.redhat.com/documentation/en-us/red_hat_codeready_studio/{JBDSVersion}/html-single/getting_started_with_codeready_studio_tools/ :JBDSGettingStartedBookName: Getting Started with CodeReady Studio Tools -// Enable Rendering of Glow configuration in plugin examples -:portedToGlow: true - = helloworld-ws: Hello World JAX-WS Web Service :author: Lee Newson :level: Beginner :technologies: JAX-WS :openshift: true -:portedToGlow: true [abstract] The `helloworld-ws` quickstart demonstrates a simple Hello World application, bundled and deployed as a WAR, that uses JAX-WS to say Hello. @@ -597,7 +593,7 @@ For Windows, use the `__{jbossHomeName}__\bin\add-user.bat` script. endif::[] The server provisioning functionality is provided by the WildFly Maven Plugin, and you may find its configuration in the quickstart `pom.xml`: -ifndef::portedToGlow[] + [source,xml,subs="attributes+"] ---- @@ -630,55 +626,6 @@ ifndef::portedToGlow[] ---- -endif::portedToGlow[] -ifdef::portedToGlow[] -[source,xml,subs="attributes+"] ----- - - provisioned-server - - - - org.wildfly.plugins - wildfly-maven-plugin - - - ${version.server} - - - ROOT.war - ... - - - - - package - - - - - ... - - - ----- -The plugin uses https://github.com/wildfly/wildfly-glow[WildFly Glow] to discover the feature packs and layers required to run the application, and provisions a server containing those layers. - -[NOTE] -==== -This uses a pre-release of version 5.0.0 of the wildfly-maven-plugin providing the Glow functionality. The version is set in the pom's `pluginManagement` section. -==== - -If you get an error or the server is missing some functionality which cannot be auto-discovered, you can download the https://github.com/wildfly/wildfly-glow/releases/tag[WildFly Glow CLI] and run the following command to see more information about what add-ons are available: - -[source,shell] ----- -wildfly-glow show-add-ons ----- -endif::portedToGlow[] [NOTE] ==== @@ -875,14 +822,9 @@ ifdef::ProductRelease,EAPXPRelease[] The server provisioning functionality is provided by the EAP Maven Plugin, and you may find its configuration in the quickstart `pom.xml`: endif::[] -<<<<<<< HEAD -ifndef::ProductRelease,EAPXPRelease[] -ifndef::portedToGlow[] -======= // Render XML Snippet of openshift Maven profile... ifndef::ProductRelease[] // ... for WildFly ->>>>>>> upstream/main [source,xml,subs="attributes+"] ---- @@ -917,68 +859,10 @@ ifndef::ProductRelease[] ---- -<<<<<<< HEAD -You may note that unlike the `provisioned-server` profile it uses the cloud feature pack which enables a configuration tuned for OpenShift environment. -endif::portedToGlow[] -ifdef::portedToGlow[] -[source,xml,subs="attributes+"] ----- - - openshift - - - - org.wildfly.plugins - wildfly-maven-plugin - - - ${version.server} - cloud - - - ROOT.war - ... - - - - - package - - - - - ... - - - ----- -You may note that unlike the `provisioned-server` profile it uses the cloud context which enables a configuration tuned for OpenShift environment. - -The plugin uses https://github.com/wildfly/wildfly-glow[WildFly Glow] to discover the feature packs and layers required to run the application, and provisions a server containing those layers. - -[NOTE] -==== -This uses a pre-release of version 5.0.0 of the wildfly-maven-plugin providing the Glow functionality. The version is set in the pom's `pluginManagement` section. -==== - -If you get an error or the server is missing some functionality which cannot be auto-discovered, you can download the https://github.com/wildfly/wildfly-glow/releases[WildFly Glow CLI] and run the following command to see more information about what add-ons are available: -[source,shell] ----- -wildfly-glow show-add-ons ----- -endif::portedToGlow[] -endif::ProductRelease,EAPXPRelease[] - -ifdef::ProductRelease,EAPXPRelease[] -======= endif::[] ifdef::ProductRelease[] ifndef::EAPXPRelease[] // ... for EAP ->>>>>>> upstream/main [source,xml,subs="attributes+"] ---- @@ -1014,9 +898,6 @@ ifndef::EAPXPRelease[] ---- -<<<<<<< HEAD -You may note that it uses the cloud feature pack which enables a configuration tuned for OpenShift environment. -======= endif::[] ifdef::EAPXPRelease[] // ... for EAP XP @@ -1070,10 +951,8 @@ ifdef::EAPXPRelease[] ==== Previous {productName} releases used the WildFly JAR Maven Plugin to package the quickstart in a Bootable JAR, when deploying it on OpenShift, and while that's still supported it's no longer recommended. ==== ->>>>>>> upstream/main endif::[] - :leveloffset: 1 // Getting Started with Helm :leveloffset: +1 @@ -1179,11 +1058,7 @@ ifndef::useHelmChartDir[] ---- build: uri: https://github.com/wildfly/quickstart.git -<<<<<<< HEAD - ref: 31.x-glow-preview -======= ref: main ->>>>>>> upstream/main contextDir: helloworld-ws deploy: replicas: 1 diff --git a/helloworld/README.adoc b/helloworld/README.adoc index 34c8c549fe..84acfaf9a0 100644 --- a/helloworld/README.adoc +++ b/helloworld/README.adoc @@ -66,7 +66,7 @@ ifndef::ProductRelease,EAPXPRelease[] :productImageVersion: 31.0 :githubRepoUrl: https://github.com/wildfly/quickstart/ :githubRepoCodeUrl: https://github.com/wildfly/quickstart.git -:WildFlyQuickStartRepoTag: 31.0.0.Final-glow-preview +:WildFlyQuickStartRepoTag: 31.0.0.Final :DocInfoProductName: Red Hat JBoss Enterprise Application Platform :DocInfoProductNameURL: red_hat_jboss_enterprise_application_platform :DocInfoProductNumber: 8.0 @@ -196,15 +196,11 @@ endif::[] :LinkJBDSGettingStarted: https://access.redhat.com/documentation/en-us/red_hat_codeready_studio/{JBDSVersion}/html-single/getting_started_with_codeready_studio_tools/ :JBDSGettingStartedBookName: Getting Started with CodeReady Studio Tools -// Enable Rendering of Glow configuration in plugin examples -:portedToGlow: true - = helloworld: Helloworld Example :author: Pete Muir :level: Beginner :technologies: Servlet :openshift: true -:portedToGlow: true [abstract] The `helloworld` quickstart demonstrates the use of Servlet 6 and is a good starting point to verify {productName} is configured correctly. @@ -604,7 +600,7 @@ For Windows, use the `__{jbossHomeName}__\bin\add-user.bat` script. endif::[] The server provisioning functionality is provided by the WildFly Maven Plugin, and you may find its configuration in the quickstart `pom.xml`: -ifndef::portedToGlow[] + [source,xml,subs="attributes+"] ---- @@ -637,55 +633,6 @@ ifndef::portedToGlow[] ---- -endif::portedToGlow[] -ifdef::portedToGlow[] -[source,xml,subs="attributes+"] ----- - - provisioned-server - - - - org.wildfly.plugins - wildfly-maven-plugin - - - ${version.server} - - - ROOT.war - ... - - - - - package - - - - - ... - - - ----- -The plugin uses https://github.com/wildfly/wildfly-glow[WildFly Glow] to discover the feature packs and layers required to run the application, and provisions a server containing those layers. - -[NOTE] -==== -This uses a pre-release of version 5.0.0 of the wildfly-maven-plugin providing the Glow functionality. The version is set in the pom's `pluginManagement` section. -==== - -If you get an error or the server is missing some functionality which cannot be auto-discovered, you can download the https://github.com/wildfly/wildfly-glow/releases/tag[WildFly Glow CLI] and run the following command to see more information about what add-ons are available: - -[source,shell] ----- -wildfly-glow show-add-ons ----- -endif::portedToGlow[] [NOTE] ==== @@ -882,14 +829,9 @@ ifdef::ProductRelease,EAPXPRelease[] The server provisioning functionality is provided by the EAP Maven Plugin, and you may find its configuration in the quickstart `pom.xml`: endif::[] -<<<<<<< HEAD -ifndef::ProductRelease,EAPXPRelease[] -ifndef::portedToGlow[] -======= // Render XML Snippet of openshift Maven profile... ifndef::ProductRelease[] // ... for WildFly ->>>>>>> upstream/main [source,xml,subs="attributes+"] ---- @@ -924,68 +866,10 @@ ifndef::ProductRelease[] ---- -<<<<<<< HEAD -You may note that unlike the `provisioned-server` profile it uses the cloud feature pack which enables a configuration tuned for OpenShift environment. -endif::portedToGlow[] -ifdef::portedToGlow[] -[source,xml,subs="attributes+"] ----- - - openshift - - - - org.wildfly.plugins - wildfly-maven-plugin - - - ${version.server} - cloud - - - ROOT.war - ... - - - - - package - - - - - ... - - - ----- -You may note that unlike the `provisioned-server` profile it uses the cloud context which enables a configuration tuned for OpenShift environment. - -The plugin uses https://github.com/wildfly/wildfly-glow[WildFly Glow] to discover the feature packs and layers required to run the application, and provisions a server containing those layers. - -[NOTE] -==== -This uses a pre-release of version 5.0.0 of the wildfly-maven-plugin providing the Glow functionality. The version is set in the pom's `pluginManagement` section. -==== - -If you get an error or the server is missing some functionality which cannot be auto-discovered, you can download the https://github.com/wildfly/wildfly-glow/releases[WildFly Glow CLI] and run the following command to see more information about what add-ons are available: -[source,shell] ----- -wildfly-glow show-add-ons ----- -endif::portedToGlow[] -endif::ProductRelease,EAPXPRelease[] - -ifdef::ProductRelease,EAPXPRelease[] -======= endif::[] ifdef::ProductRelease[] ifndef::EAPXPRelease[] // ... for EAP ->>>>>>> upstream/main [source,xml,subs="attributes+"] ---- @@ -1021,9 +905,6 @@ ifndef::EAPXPRelease[] ---- -<<<<<<< HEAD -You may note that it uses the cloud feature pack which enables a configuration tuned for OpenShift environment. -======= endif::[] ifdef::EAPXPRelease[] // ... for EAP XP @@ -1077,10 +958,8 @@ ifdef::EAPXPRelease[] ==== Previous {productName} releases used the WildFly JAR Maven Plugin to package the quickstart in a Bootable JAR, when deploying it on OpenShift, and while that's still supported it's no longer recommended. ==== ->>>>>>> upstream/main endif::[] - :leveloffset: 1 // Getting Started with Helm :leveloffset: +1 @@ -1186,11 +1065,7 @@ ifndef::useHelmChartDir[] ---- build: uri: https://github.com/wildfly/quickstart.git -<<<<<<< HEAD - ref: 31.x-glow-preview -======= ref: main ->>>>>>> upstream/main contextDir: helloworld deploy: replicas: 1 diff --git a/hibernate/README.adoc b/hibernate/README.adoc index 4936bc9e2e..f3d7929ec8 100644 --- a/hibernate/README.adoc +++ b/hibernate/README.adoc @@ -66,7 +66,7 @@ ifndef::ProductRelease,EAPXPRelease[] :productImageVersion: 31.0 :githubRepoUrl: https://github.com/wildfly/quickstart/ :githubRepoCodeUrl: https://github.com/wildfly/quickstart.git -:WildFlyQuickStartRepoTag: 31.0.0.Final-glow-preview +:WildFlyQuickStartRepoTag: 31.0.0.Final :DocInfoProductName: Red Hat JBoss Enterprise Application Platform :DocInfoProductNameURL: red_hat_jboss_enterprise_application_platform :DocInfoProductNumber: 8.0 @@ -196,15 +196,11 @@ endif::[] :LinkJBDSGettingStarted: https://access.redhat.com/documentation/en-us/red_hat_codeready_studio/{JBDSVersion}/html-single/getting_started_with_codeready_studio_tools/ :JBDSGettingStartedBookName: Getting Started with CodeReady Studio Tools -// Enable Rendering of Glow configuration in plugin examples -:portedToGlow: true - = hibernate: How to Use Hibernate in an Application :author: Madhumita Sadhukhan :level: Intermediate :technologies: Hibernate :openshift: true -:portedToGlow: true [abstract] The `hibernate` quickstart demonstrates how to use Hibernate ORM 6 over Persistence, using Bean Validation, and Enterprise Beans. @@ -919,7 +915,7 @@ For Windows, use the `__{jbossHomeName}__\bin\add-user.bat` script. endif::[] The server provisioning functionality is provided by the WildFly Maven Plugin, and you may find its configuration in the quickstart `pom.xml`: -ifndef::portedToGlow[] + [source,xml,subs="attributes+"] ---- @@ -952,55 +948,6 @@ ifndef::portedToGlow[] ---- -endif::portedToGlow[] -ifdef::portedToGlow[] -[source,xml,subs="attributes+"] ----- - - provisioned-server - - - - org.wildfly.plugins - wildfly-maven-plugin - - - ${version.server} - - - ROOT.war - ... - - - - - package - - - - - ... - - - ----- -The plugin uses https://github.com/wildfly/wildfly-glow[WildFly Glow] to discover the feature packs and layers required to run the application, and provisions a server containing those layers. - -[NOTE] -==== -This uses a pre-release of version 5.0.0 of the wildfly-maven-plugin providing the Glow functionality. The version is set in the pom's `pluginManagement` section. -==== - -If you get an error or the server is missing some functionality which cannot be auto-discovered, you can download the https://github.com/wildfly/wildfly-glow/releases/tag[WildFly Glow CLI] and run the following command to see more information about what add-ons are available: - -[source,shell] ----- -wildfly-glow show-add-ons ----- -endif::portedToGlow[] [NOTE] ==== @@ -1197,14 +1144,9 @@ ifdef::ProductRelease,EAPXPRelease[] The server provisioning functionality is provided by the EAP Maven Plugin, and you may find its configuration in the quickstart `pom.xml`: endif::[] -<<<<<<< HEAD -ifndef::ProductRelease,EAPXPRelease[] -ifndef::portedToGlow[] -======= // Render XML Snippet of openshift Maven profile... ifndef::ProductRelease[] // ... for WildFly ->>>>>>> upstream/main [source,xml,subs="attributes+"] ---- @@ -1239,68 +1181,10 @@ ifndef::ProductRelease[] ---- -<<<<<<< HEAD -You may note that unlike the `provisioned-server` profile it uses the cloud feature pack which enables a configuration tuned for OpenShift environment. -endif::portedToGlow[] -ifdef::portedToGlow[] -[source,xml,subs="attributes+"] ----- - - openshift - - - - org.wildfly.plugins - wildfly-maven-plugin - - - ${version.server} - cloud - - - ROOT.war - ... - - - - - package - - - - - ... - - - ----- -You may note that unlike the `provisioned-server` profile it uses the cloud context which enables a configuration tuned for OpenShift environment. - -The plugin uses https://github.com/wildfly/wildfly-glow[WildFly Glow] to discover the feature packs and layers required to run the application, and provisions a server containing those layers. - -[NOTE] -==== -This uses a pre-release of version 5.0.0 of the wildfly-maven-plugin providing the Glow functionality. The version is set in the pom's `pluginManagement` section. -==== - -If you get an error or the server is missing some functionality which cannot be auto-discovered, you can download the https://github.com/wildfly/wildfly-glow/releases[WildFly Glow CLI] and run the following command to see more information about what add-ons are available: -[source,shell] ----- -wildfly-glow show-add-ons ----- -endif::portedToGlow[] -endif::ProductRelease,EAPXPRelease[] - -ifdef::ProductRelease,EAPXPRelease[] -======= endif::[] ifdef::ProductRelease[] ifndef::EAPXPRelease[] // ... for EAP ->>>>>>> upstream/main [source,xml,subs="attributes+"] ---- @@ -1336,9 +1220,6 @@ ifndef::EAPXPRelease[] ---- -<<<<<<< HEAD -You may note that it uses the cloud feature pack which enables a configuration tuned for OpenShift environment. -======= endif::[] ifdef::EAPXPRelease[] // ... for EAP XP @@ -1392,10 +1273,8 @@ ifdef::EAPXPRelease[] ==== Previous {productName} releases used the WildFly JAR Maven Plugin to package the quickstart in a Bootable JAR, when deploying it on OpenShift, and while that's still supported it's no longer recommended. ==== ->>>>>>> upstream/main endif::[] - :leveloffset: 1 // Getting Started with Helm :leveloffset: +1 @@ -1501,11 +1380,7 @@ ifndef::useHelmChartDir[] ---- build: uri: https://github.com/wildfly/quickstart.git -<<<<<<< HEAD - ref: 31.x-glow-preview -======= ref: main ->>>>>>> upstream/main contextDir: hibernate deploy: replicas: 1 diff --git a/http-custom-mechanism/README.adoc b/http-custom-mechanism/README.adoc index 41b09f5665..c61dee8f77 100644 --- a/http-custom-mechanism/README.adoc +++ b/http-custom-mechanism/README.adoc @@ -66,7 +66,7 @@ ifndef::ProductRelease,EAPXPRelease[] :productImageVersion: 31.0 :githubRepoUrl: https://github.com/wildfly/quickstart/ :githubRepoCodeUrl: https://github.com/wildfly/quickstart.git -:WildFlyQuickStartRepoTag: 31.0.0.Final-glow-preview +:WildFlyQuickStartRepoTag: 31.0.0.Final :DocInfoProductName: Red Hat JBoss Enterprise Application Platform :DocInfoProductNameURL: red_hat_jboss_enterprise_application_platform :DocInfoProductNumber: 8.0 @@ -196,14 +196,10 @@ endif::[] :LinkJBDSGettingStarted: https://access.redhat.com/documentation/en-us/red_hat_codeready_studio/{JBDSVersion}/html-single/getting_started_with_codeready_studio_tools/ :JBDSGettingStartedBookName: Getting Started with CodeReady Studio Tools -// Enable Rendering of Glow configuration in plugin examples -:portedToGlow: true - = http-custom-mechanism: Create a custom HTTP authorization mechanism :author: Darran Lofthouse :level: Intermediate :technologies: EJB, Security -:portedToGlow: true [abstract] The `http-custom-mechanism` quickstart demonstrates how to implement a custom HTTP authentication mechanism that can be registered with Elytron. @@ -1054,7 +1050,7 @@ For Windows, use the `__{jbossHomeName}__\bin\add-user.bat` script. endif::[] The server provisioning functionality is provided by the WildFly Maven Plugin, and you may find its configuration in the quickstart `pom.xml`: -ifndef::portedToGlow[] + [source,xml,subs="attributes+"] ---- @@ -1087,55 +1083,6 @@ ifndef::portedToGlow[] ---- -endif::portedToGlow[] -ifdef::portedToGlow[] -[source,xml,subs="attributes+"] ----- - - provisioned-server - - - - org.wildfly.plugins - wildfly-maven-plugin - - - ${version.server} - - - ROOT.war - ... - - - - - package - - - - - ... - - - ----- -The plugin uses https://github.com/wildfly/wildfly-glow[WildFly Glow] to discover the feature packs and layers required to run the application, and provisions a server containing those layers. - -[NOTE] -==== -This uses a pre-release of version 5.0.0 of the wildfly-maven-plugin providing the Glow functionality. The version is set in the pom's `pluginManagement` section. -==== - -If you get an error or the server is missing some functionality which cannot be auto-discovered, you can download the https://github.com/wildfly/wildfly-glow/releases/tag[WildFly Glow CLI] and run the following command to see more information about what add-ons are available: - -[source,shell] ----- -wildfly-glow show-add-ons ----- -endif::portedToGlow[] [NOTE] ==== diff --git a/jaxrs-client/README.adoc b/jaxrs-client/README.adoc index 9fa14f669e..5585af75dd 100644 --- a/jaxrs-client/README.adoc +++ b/jaxrs-client/README.adoc @@ -66,7 +66,7 @@ ifndef::ProductRelease,EAPXPRelease[] :productImageVersion: 31.0 :githubRepoUrl: https://github.com/wildfly/quickstart/ :githubRepoCodeUrl: https://github.com/wildfly/quickstart.git -:WildFlyQuickStartRepoTag: 31.0.0.Final-glow-preview +:WildFlyQuickStartRepoTag: 31.0.0.Final :DocInfoProductName: Red Hat JBoss Enterprise Application Platform :DocInfoProductNameURL: red_hat_jboss_enterprise_application_platform :DocInfoProductNumber: 8.0 @@ -196,15 +196,11 @@ endif::[] :LinkJBDSGettingStarted: https://access.redhat.com/documentation/en-us/red_hat_codeready_studio/{JBDSVersion}/html-single/getting_started_with_codeready_studio_tools/ :JBDSGettingStartedBookName: Getting Started with CodeReady Studio Tools -// Enable Rendering of Glow configuration in plugin examples -:portedToGlow: true - = jaxrs-client: Jakarta REST Client API example :author: Rafael Benevides :level: Beginner :technologies: JAX-RS :openshift: true -:portedToGlow: true [abstract] The `jaxrs-client` quickstart demonstrates Jakarta REST Client API, which interacts with a Jakarta REST Web service that runs on {productName}. @@ -626,7 +622,7 @@ For Windows, use the `__{jbossHomeName}__\bin\add-user.bat` script. endif::[] The server provisioning functionality is provided by the WildFly Maven Plugin, and you may find its configuration in the quickstart `pom.xml`: -ifndef::portedToGlow[] + [source,xml,subs="attributes+"] ---- @@ -659,55 +655,6 @@ ifndef::portedToGlow[] ---- -endif::portedToGlow[] -ifdef::portedToGlow[] -[source,xml,subs="attributes+"] ----- - - provisioned-server - - - - org.wildfly.plugins - wildfly-maven-plugin - - - ${version.server} - - - ROOT.war - ... - - - - - package - - - - - ... - - - ----- -The plugin uses https://github.com/wildfly/wildfly-glow[WildFly Glow] to discover the feature packs and layers required to run the application, and provisions a server containing those layers. - -[NOTE] -==== -This uses a pre-release of version 5.0.0 of the wildfly-maven-plugin providing the Glow functionality. The version is set in the pom's `pluginManagement` section. -==== - -If you get an error or the server is missing some functionality which cannot be auto-discovered, you can download the https://github.com/wildfly/wildfly-glow/releases/tag[WildFly Glow CLI] and run the following command to see more information about what add-ons are available: - -[source,shell] ----- -wildfly-glow show-add-ons ----- -endif::portedToGlow[] [NOTE] ==== @@ -904,14 +851,9 @@ ifdef::ProductRelease,EAPXPRelease[] The server provisioning functionality is provided by the EAP Maven Plugin, and you may find its configuration in the quickstart `pom.xml`: endif::[] -<<<<<<< HEAD -ifndef::ProductRelease,EAPXPRelease[] -ifndef::portedToGlow[] -======= // Render XML Snippet of openshift Maven profile... ifndef::ProductRelease[] // ... for WildFly ->>>>>>> upstream/main [source,xml,subs="attributes+"] ---- @@ -946,68 +888,10 @@ ifndef::ProductRelease[] ---- -<<<<<<< HEAD -You may note that unlike the `provisioned-server` profile it uses the cloud feature pack which enables a configuration tuned for OpenShift environment. -endif::portedToGlow[] -ifdef::portedToGlow[] -[source,xml,subs="attributes+"] ----- - - openshift - - - - org.wildfly.plugins - wildfly-maven-plugin - - - ${version.server} - cloud - - - ROOT.war - ... - - - - - package - - - - - ... - - - ----- -You may note that unlike the `provisioned-server` profile it uses the cloud context which enables a configuration tuned for OpenShift environment. - -The plugin uses https://github.com/wildfly/wildfly-glow[WildFly Glow] to discover the feature packs and layers required to run the application, and provisions a server containing those layers. - -[NOTE] -==== -This uses a pre-release of version 5.0.0 of the wildfly-maven-plugin providing the Glow functionality. The version is set in the pom's `pluginManagement` section. -==== - -If you get an error or the server is missing some functionality which cannot be auto-discovered, you can download the https://github.com/wildfly/wildfly-glow/releases[WildFly Glow CLI] and run the following command to see more information about what add-ons are available: -[source,shell] ----- -wildfly-glow show-add-ons ----- -endif::portedToGlow[] -endif::ProductRelease,EAPXPRelease[] - -ifdef::ProductRelease,EAPXPRelease[] -======= endif::[] ifdef::ProductRelease[] ifndef::EAPXPRelease[] // ... for EAP ->>>>>>> upstream/main [source,xml,subs="attributes+"] ---- @@ -1043,9 +927,6 @@ ifndef::EAPXPRelease[] ---- -<<<<<<< HEAD -You may note that it uses the cloud feature pack which enables a configuration tuned for OpenShift environment. -======= endif::[] ifdef::EAPXPRelease[] // ... for EAP XP @@ -1099,10 +980,8 @@ ifdef::EAPXPRelease[] ==== Previous {productName} releases used the WildFly JAR Maven Plugin to package the quickstart in a Bootable JAR, when deploying it on OpenShift, and while that's still supported it's no longer recommended. ==== ->>>>>>> upstream/main endif::[] - :leveloffset: 1 // Getting Started with Helm :leveloffset: +1 @@ -1208,11 +1087,7 @@ ifndef::useHelmChartDir[] ---- build: uri: https://github.com/wildfly/quickstart.git -<<<<<<< HEAD - ref: 31.x-glow-preview -======= ref: main ->>>>>>> upstream/main contextDir: jaxrs-client deploy: replicas: 1 diff --git a/jaxrs-jwt/README.adoc b/jaxrs-jwt/README.adoc index 6465460b7b..ef459c01c6 100644 --- a/jaxrs-jwt/README.adoc +++ b/jaxrs-jwt/README.adoc @@ -66,7 +66,7 @@ ifndef::ProductRelease,EAPXPRelease[] :productImageVersion: 31.0 :githubRepoUrl: https://github.com/wildfly/quickstart/ :githubRepoCodeUrl: https://github.com/wildfly/quickstart.git -:WildFlyQuickStartRepoTag: 31.0.0.Final-glow-preview +:WildFlyQuickStartRepoTag: 31.0.0.Final :DocInfoProductName: Red Hat JBoss Enterprise Application Platform :DocInfoProductNameURL: red_hat_jboss_enterprise_application_platform :DocInfoProductNumber: 8.0 @@ -196,14 +196,10 @@ endif::[] :LinkJBDSGettingStarted: https://access.redhat.com/documentation/en-us/red_hat_codeready_studio/{JBDSVersion}/html-single/getting_started_with_codeready_studio_tools/ :JBDSGettingStartedBookName: Getting Started with CodeReady Studio Tools -// Enable Rendering of Glow configuration in plugin examples -:portedToGlow: true - = jaxrs-jwt: Jakarta REST secured using JSON Web Tokens (JWTs) :author: Martin Mazanek :level: Intermediate :technologies: JAX-RS, Security -:portedToGlow: true [abstract] The `jaxrs-jwt` quickstart demonstrates a Jakarta REST secured application using JSON Web Tokens (JWT) with Elytron. @@ -927,7 +923,7 @@ For Windows, use the `__{jbossHomeName}__\bin\add-user.bat` script. endif::[] The server provisioning functionality is provided by the WildFly Maven Plugin, and you may find its configuration in the quickstart `pom.xml`: -ifndef::portedToGlow[] + [source,xml,subs="attributes+"] ---- @@ -960,55 +956,6 @@ ifndef::portedToGlow[] ---- -endif::portedToGlow[] -ifdef::portedToGlow[] -[source,xml,subs="attributes+"] ----- - - provisioned-server - - - - org.wildfly.plugins - wildfly-maven-plugin - - - ${version.server} - - - ROOT.war - ... - - - - - package - - - - - ... - - - ----- -The plugin uses https://github.com/wildfly/wildfly-glow[WildFly Glow] to discover the feature packs and layers required to run the application, and provisions a server containing those layers. - -[NOTE] -==== -This uses a pre-release of version 5.0.0 of the wildfly-maven-plugin providing the Glow functionality. The version is set in the pom's `pluginManagement` section. -==== - -If you get an error or the server is missing some functionality which cannot be auto-discovered, you can download the https://github.com/wildfly/wildfly-glow/releases/tag[WildFly Glow CLI] and run the following command to see more information about what add-ons are available: - -[source,shell] ----- -wildfly-glow show-add-ons ----- -endif::portedToGlow[] [NOTE] ==== @@ -1206,14 +1153,9 @@ ifdef::ProductRelease,EAPXPRelease[] The server provisioning functionality is provided by the EAP Maven Plugin, and you may find its configuration in the quickstart `pom.xml`: endif::[] -<<<<<<< HEAD -ifndef::ProductRelease,EAPXPRelease[] -ifndef::portedToGlow[] -======= // Render XML Snippet of openshift Maven profile... ifndef::ProductRelease[] // ... for WildFly ->>>>>>> upstream/main [source,xml,subs="attributes+"] ---- @@ -1248,68 +1190,10 @@ ifndef::ProductRelease[] ---- -<<<<<<< HEAD -You may note that unlike the `provisioned-server` profile it uses the cloud feature pack which enables a configuration tuned for OpenShift environment. -endif::portedToGlow[] -ifdef::portedToGlow[] -[source,xml,subs="attributes+"] ----- - - openshift - - - - org.wildfly.plugins - wildfly-maven-plugin - - - ${version.server} - cloud - - - ROOT.war - ... - - - - - package - - - - - ... - - - ----- -You may note that unlike the `provisioned-server` profile it uses the cloud context which enables a configuration tuned for OpenShift environment. - -The plugin uses https://github.com/wildfly/wildfly-glow[WildFly Glow] to discover the feature packs and layers required to run the application, and provisions a server containing those layers. - -[NOTE] -==== -This uses a pre-release of version 5.0.0 of the wildfly-maven-plugin providing the Glow functionality. The version is set in the pom's `pluginManagement` section. -==== - -If you get an error or the server is missing some functionality which cannot be auto-discovered, you can download the https://github.com/wildfly/wildfly-glow/releases[WildFly Glow CLI] and run the following command to see more information about what add-ons are available: -[source,shell] ----- -wildfly-glow show-add-ons ----- -endif::portedToGlow[] -endif::ProductRelease,EAPXPRelease[] - -ifdef::ProductRelease,EAPXPRelease[] -======= endif::[] ifdef::ProductRelease[] ifndef::EAPXPRelease[] // ... for EAP ->>>>>>> upstream/main [source,xml,subs="attributes+"] ---- @@ -1345,9 +1229,6 @@ ifndef::EAPXPRelease[] ---- -<<<<<<< HEAD -You may note that it uses the cloud feature pack which enables a configuration tuned for OpenShift environment. -======= endif::[] ifdef::EAPXPRelease[] // ... for EAP XP @@ -1401,10 +1282,8 @@ ifdef::EAPXPRelease[] ==== Previous {productName} releases used the WildFly JAR Maven Plugin to package the quickstart in a Bootable JAR, when deploying it on OpenShift, and while that's still supported it's no longer recommended. ==== ->>>>>>> upstream/main endif::[] - :leveloffset: 1 // Getting Started with Helm :leveloffset: +1 diff --git a/jaxws-ejb/README.adoc b/jaxws-ejb/README.adoc index de069272c5..55e61c22ae 100644 --- a/jaxws-ejb/README.adoc +++ b/jaxws-ejb/README.adoc @@ -66,7 +66,7 @@ ifndef::ProductRelease,EAPXPRelease[] :productImageVersion: 31.0 :githubRepoUrl: https://github.com/wildfly/quickstart/ :githubRepoCodeUrl: https://github.com/wildfly/quickstart.git -:WildFlyQuickStartRepoTag: 31.0.0.Final-glow-preview +:WildFlyQuickStartRepoTag: 31.0.0.Final :DocInfoProductName: Red Hat JBoss Enterprise Application Platform :DocInfoProductNameURL: red_hat_jboss_enterprise_application_platform :DocInfoProductNumber: 8.0 @@ -196,14 +196,10 @@ endif::[] :LinkJBDSGettingStarted: https://access.redhat.com/documentation/en-us/red_hat_codeready_studio/{JBDSVersion}/html-single/getting_started_with_codeready_studio_tools/ :JBDSGettingStartedBookName: Getting Started with CodeReady Studio Tools -// Enable Rendering of Glow configuration in plugin examples -:portedToGlow: true - = jaxws-ejb: An EJB JAX-WS Web Service :author: R Searls :level: Beginner :technologies: JAX-WS -:portedToGlow: true [abstract] The `jaxws-ejb` quickstart is a working example of the web service endpoint created from an EJB. @@ -609,7 +605,7 @@ For Windows, use the `__{jbossHomeName}__\bin\add-user.bat` script. endif::[] The server provisioning functionality is provided by the WildFly Maven Plugin, and you may find its configuration in the quickstart `pom.xml`: -ifndef::portedToGlow[] + [source,xml,subs="attributes+"] ---- @@ -642,55 +638,6 @@ ifndef::portedToGlow[] ---- -endif::portedToGlow[] -ifdef::portedToGlow[] -[source,xml,subs="attributes+"] ----- - - provisioned-server - - - - org.wildfly.plugins - wildfly-maven-plugin - - - ${version.server} - - - ROOT.war - ... - - - - - package - - - - - ... - - - ----- -The plugin uses https://github.com/wildfly/wildfly-glow[WildFly Glow] to discover the feature packs and layers required to run the application, and provisions a server containing those layers. - -[NOTE] -==== -This uses a pre-release of version 5.0.0 of the wildfly-maven-plugin providing the Glow functionality. The version is set in the pom's `pluginManagement` section. -==== - -If you get an error or the server is missing some functionality which cannot be auto-discovered, you can download the https://github.com/wildfly/wildfly-glow/releases/tag[WildFly Glow CLI] and run the following command to see more information about what add-ons are available: - -[source,shell] ----- -wildfly-glow show-add-ons ----- -endif::portedToGlow[] [NOTE] ==== @@ -887,14 +834,9 @@ ifdef::ProductRelease,EAPXPRelease[] The server provisioning functionality is provided by the EAP Maven Plugin, and you may find its configuration in the quickstart `pom.xml`: endif::[] -<<<<<<< HEAD -ifndef::ProductRelease,EAPXPRelease[] -ifndef::portedToGlow[] -======= // Render XML Snippet of openshift Maven profile... ifndef::ProductRelease[] // ... for WildFly ->>>>>>> upstream/main [source,xml,subs="attributes+"] ---- @@ -929,68 +871,10 @@ ifndef::ProductRelease[] ---- -<<<<<<< HEAD -You may note that unlike the `provisioned-server` profile it uses the cloud feature pack which enables a configuration tuned for OpenShift environment. -endif::portedToGlow[] -ifdef::portedToGlow[] -[source,xml,subs="attributes+"] ----- - - openshift - - - - org.wildfly.plugins - wildfly-maven-plugin - - - ${version.server} - cloud - - - ROOT.war - ... - - - - - package - - - - - ... - - - ----- -You may note that unlike the `provisioned-server` profile it uses the cloud context which enables a configuration tuned for OpenShift environment. - -The plugin uses https://github.com/wildfly/wildfly-glow[WildFly Glow] to discover the feature packs and layers required to run the application, and provisions a server containing those layers. - -[NOTE] -==== -This uses a pre-release of version 5.0.0 of the wildfly-maven-plugin providing the Glow functionality. The version is set in the pom's `pluginManagement` section. -==== - -If you get an error or the server is missing some functionality which cannot be auto-discovered, you can download the https://github.com/wildfly/wildfly-glow/releases[WildFly Glow CLI] and run the following command to see more information about what add-ons are available: -[source,shell] ----- -wildfly-glow show-add-ons ----- -endif::portedToGlow[] -endif::ProductRelease,EAPXPRelease[] - -ifdef::ProductRelease,EAPXPRelease[] -======= endif::[] ifdef::ProductRelease[] ifndef::EAPXPRelease[] // ... for EAP ->>>>>>> upstream/main [source,xml,subs="attributes+"] ---- @@ -1026,9 +910,6 @@ ifndef::EAPXPRelease[] ---- -<<<<<<< HEAD -You may note that it uses the cloud feature pack which enables a configuration tuned for OpenShift environment. -======= endif::[] ifdef::EAPXPRelease[] // ... for EAP XP @@ -1082,10 +963,8 @@ ifdef::EAPXPRelease[] ==== Previous {productName} releases used the WildFly JAR Maven Plugin to package the quickstart in a Bootable JAR, when deploying it on OpenShift, and while that's still supported it's no longer recommended. ==== ->>>>>>> upstream/main endif::[] - :leveloffset: 1 // Getting Started with Helm :leveloffset: +1 @@ -1191,11 +1070,7 @@ ifndef::useHelmChartDir[] ---- build: uri: https://github.com/wildfly/quickstart.git -<<<<<<< HEAD - ref: 31.x-glow-preview -======= ref: main ->>>>>>> upstream/main contextDir: jaxws-ejb deploy: replicas: 1 diff --git a/jaxws-retail/README.adoc b/jaxws-retail/README.adoc index 245d3ccaed..7452fc0401 100644 --- a/jaxws-retail/README.adoc +++ b/jaxws-retail/README.adoc @@ -66,7 +66,7 @@ ifndef::ProductRelease,EAPXPRelease[] :productImageVersion: 31.0 :githubRepoUrl: https://github.com/wildfly/quickstart/ :githubRepoCodeUrl: https://github.com/wildfly/quickstart.git -:WildFlyQuickStartRepoTag: 31.0.0.Final-glow-preview +:WildFlyQuickStartRepoTag: 31.0.0.Final :DocInfoProductName: Red Hat JBoss Enterprise Application Platform :DocInfoProductNameURL: red_hat_jboss_enterprise_application_platform :DocInfoProductNumber: 8.0 @@ -196,14 +196,10 @@ endif::[] :LinkJBDSGettingStarted: https://access.redhat.com/documentation/en-us/red_hat_codeready_studio/{JBDSVersion}/html-single/getting_started_with_codeready_studio_tools/ :JBDSGettingStartedBookName: Getting Started with CodeReady Studio Tools -// Enable Rendering of Glow configuration in plugin examples -:portedToGlow: true - = jaxws-retail: A Retail JAX-WS Web Service :author: R Searls :level: Beginner :technologies: JAX-WS -:portedToGlow: true [abstract] The `jaxws-retail` quickstart is a working example of a simple web service endpoint. @@ -606,7 +602,7 @@ For Windows, use the `__{jbossHomeName}__\bin\add-user.bat` script. endif::[] The server provisioning functionality is provided by the WildFly Maven Plugin, and you may find its configuration in the quickstart `pom.xml`: -ifndef::portedToGlow[] + [source,xml,subs="attributes+"] ---- @@ -639,55 +635,6 @@ ifndef::portedToGlow[] ---- -endif::portedToGlow[] -ifdef::portedToGlow[] -[source,xml,subs="attributes+"] ----- - - provisioned-server - - - - org.wildfly.plugins - wildfly-maven-plugin - - - ${version.server} - - - ROOT.war - ... - - - - - package - - - - - ... - - - ----- -The plugin uses https://github.com/wildfly/wildfly-glow[WildFly Glow] to discover the feature packs and layers required to run the application, and provisions a server containing those layers. - -[NOTE] -==== -This uses a pre-release of version 5.0.0 of the wildfly-maven-plugin providing the Glow functionality. The version is set in the pom's `pluginManagement` section. -==== - -If you get an error or the server is missing some functionality which cannot be auto-discovered, you can download the https://github.com/wildfly/wildfly-glow/releases/tag[WildFly Glow CLI] and run the following command to see more information about what add-ons are available: - -[source,shell] ----- -wildfly-glow show-add-ons ----- -endif::portedToGlow[] [NOTE] ==== @@ -884,14 +831,9 @@ ifdef::ProductRelease,EAPXPRelease[] The server provisioning functionality is provided by the EAP Maven Plugin, and you may find its configuration in the quickstart `pom.xml`: endif::[] -<<<<<<< HEAD -ifndef::ProductRelease,EAPXPRelease[] -ifndef::portedToGlow[] -======= // Render XML Snippet of openshift Maven profile... ifndef::ProductRelease[] // ... for WildFly ->>>>>>> upstream/main [source,xml,subs="attributes+"] ---- @@ -926,68 +868,10 @@ ifndef::ProductRelease[] ---- -<<<<<<< HEAD -You may note that unlike the `provisioned-server` profile it uses the cloud feature pack which enables a configuration tuned for OpenShift environment. -endif::portedToGlow[] -ifdef::portedToGlow[] -[source,xml,subs="attributes+"] ----- - - openshift - - - - org.wildfly.plugins - wildfly-maven-plugin - - - ${version.server} - cloud - - - ROOT.war - ... - - - - - package - - - - - ... - - - ----- -You may note that unlike the `provisioned-server` profile it uses the cloud context which enables a configuration tuned for OpenShift environment. - -The plugin uses https://github.com/wildfly/wildfly-glow[WildFly Glow] to discover the feature packs and layers required to run the application, and provisions a server containing those layers. - -[NOTE] -==== -This uses a pre-release of version 5.0.0 of the wildfly-maven-plugin providing the Glow functionality. The version is set in the pom's `pluginManagement` section. -==== - -If you get an error or the server is missing some functionality which cannot be auto-discovered, you can download the https://github.com/wildfly/wildfly-glow/releases[WildFly Glow CLI] and run the following command to see more information about what add-ons are available: -[source,shell] ----- -wildfly-glow show-add-ons ----- -endif::portedToGlow[] -endif::ProductRelease,EAPXPRelease[] - -ifdef::ProductRelease,EAPXPRelease[] -======= endif::[] ifdef::ProductRelease[] ifndef::EAPXPRelease[] // ... for EAP ->>>>>>> upstream/main [source,xml,subs="attributes+"] ---- @@ -1023,9 +907,6 @@ ifndef::EAPXPRelease[] ---- -<<<<<<< HEAD -You may note that it uses the cloud feature pack which enables a configuration tuned for OpenShift environment. -======= endif::[] ifdef::EAPXPRelease[] // ... for EAP XP @@ -1079,10 +960,8 @@ ifdef::EAPXPRelease[] ==== Previous {productName} releases used the WildFly JAR Maven Plugin to package the quickstart in a Bootable JAR, when deploying it on OpenShift, and while that's still supported it's no longer recommended. ==== ->>>>>>> upstream/main endif::[] - :leveloffset: 1 // Getting Started with Helm :leveloffset: +1 @@ -1188,11 +1067,7 @@ ifndef::useHelmChartDir[] ---- build: uri: https://github.com/wildfly/quickstart.git -<<<<<<< HEAD - ref: 31.x-glow-preview -======= ref: main ->>>>>>> upstream/main contextDir: jaxws-retail deploy: replicas: 1 diff --git a/jsonp/README.adoc b/jsonp/README.adoc index 59beb27cb6..f121bbb8cd 100644 --- a/jsonp/README.adoc +++ b/jsonp/README.adoc @@ -66,7 +66,7 @@ ifndef::ProductRelease,EAPXPRelease[] :productImageVersion: 31.0 :githubRepoUrl: https://github.com/wildfly/quickstart/ :githubRepoCodeUrl: https://github.com/wildfly/quickstart.git -:WildFlyQuickStartRepoTag: 31.0.0.Final-glow-preview +:WildFlyQuickStartRepoTag: 31.0.0.Final :DocInfoProductName: Red Hat JBoss Enterprise Application Platform :DocInfoProductNameURL: red_hat_jboss_enterprise_application_platform :DocInfoProductNumber: 8.0 @@ -196,15 +196,11 @@ endif::[] :LinkJBDSGettingStarted: https://access.redhat.com/documentation/en-us/red_hat_codeready_studio/{JBDSVersion}/html-single/getting_started_with_codeready_studio_tools/ :JBDSGettingStartedBookName: Getting Started with CodeReady Studio Tools -// Enable Rendering of Glow configuration in plugin examples -:portedToGlow: true - = jsonp: JSON-P Object-based JSON generation and Stream-based JSON consuming :author: Rafael Benevides :level: Beginner :technologies: CDI, JSF, JSON-P :openshift: true -:portedToGlow: true [abstract] The `jsonp` quickstart demonstrates how to use the JSON-P API to produce object-based structures and then parse and consume them as stream-based JSON strings. @@ -562,7 +558,7 @@ For Windows, use the `__{jbossHomeName}__\bin\add-user.bat` script. endif::[] The server provisioning functionality is provided by the WildFly Maven Plugin, and you may find its configuration in the quickstart `pom.xml`: -ifndef::portedToGlow[] + [source,xml,subs="attributes+"] ---- @@ -595,55 +591,6 @@ ifndef::portedToGlow[] ---- -endif::portedToGlow[] -ifdef::portedToGlow[] -[source,xml,subs="attributes+"] ----- - - provisioned-server - - - - org.wildfly.plugins - wildfly-maven-plugin - - - ${version.server} - - - ROOT.war - ... - - - - - package - - - - - ... - - - ----- -The plugin uses https://github.com/wildfly/wildfly-glow[WildFly Glow] to discover the feature packs and layers required to run the application, and provisions a server containing those layers. - -[NOTE] -==== -This uses a pre-release of version 5.0.0 of the wildfly-maven-plugin providing the Glow functionality. The version is set in the pom's `pluginManagement` section. -==== - -If you get an error or the server is missing some functionality which cannot be auto-discovered, you can download the https://github.com/wildfly/wildfly-glow/releases/tag[WildFly Glow CLI] and run the following command to see more information about what add-ons are available: - -[source,shell] ----- -wildfly-glow show-add-ons ----- -endif::portedToGlow[] [NOTE] ==== @@ -840,14 +787,9 @@ ifdef::ProductRelease,EAPXPRelease[] The server provisioning functionality is provided by the EAP Maven Plugin, and you may find its configuration in the quickstart `pom.xml`: endif::[] -<<<<<<< HEAD -ifndef::ProductRelease,EAPXPRelease[] -ifndef::portedToGlow[] -======= // Render XML Snippet of openshift Maven profile... ifndef::ProductRelease[] // ... for WildFly ->>>>>>> upstream/main [source,xml,subs="attributes+"] ---- @@ -882,68 +824,10 @@ ifndef::ProductRelease[] ---- -<<<<<<< HEAD -You may note that unlike the `provisioned-server` profile it uses the cloud feature pack which enables a configuration tuned for OpenShift environment. -endif::portedToGlow[] -ifdef::portedToGlow[] -[source,xml,subs="attributes+"] ----- - - openshift - - - - org.wildfly.plugins - wildfly-maven-plugin - - - ${version.server} - cloud - - - ROOT.war - ... - - - - - package - - - - - ... - - - ----- -You may note that unlike the `provisioned-server` profile it uses the cloud context which enables a configuration tuned for OpenShift environment. - -The plugin uses https://github.com/wildfly/wildfly-glow[WildFly Glow] to discover the feature packs and layers required to run the application, and provisions a server containing those layers. - -[NOTE] -==== -This uses a pre-release of version 5.0.0 of the wildfly-maven-plugin providing the Glow functionality. The version is set in the pom's `pluginManagement` section. -==== - -If you get an error or the server is missing some functionality which cannot be auto-discovered, you can download the https://github.com/wildfly/wildfly-glow/releases[WildFly Glow CLI] and run the following command to see more information about what add-ons are available: -[source,shell] ----- -wildfly-glow show-add-ons ----- -endif::portedToGlow[] -endif::ProductRelease,EAPXPRelease[] - -ifdef::ProductRelease,EAPXPRelease[] -======= endif::[] ifdef::ProductRelease[] ifndef::EAPXPRelease[] // ... for EAP ->>>>>>> upstream/main [source,xml,subs="attributes+"] ---- @@ -979,9 +863,6 @@ ifndef::EAPXPRelease[] ---- -<<<<<<< HEAD -You may note that it uses the cloud feature pack which enables a configuration tuned for OpenShift environment. -======= endif::[] ifdef::EAPXPRelease[] // ... for EAP XP @@ -1035,10 +916,8 @@ ifdef::EAPXPRelease[] ==== Previous {productName} releases used the WildFly JAR Maven Plugin to package the quickstart in a Bootable JAR, when deploying it on OpenShift, and while that's still supported it's no longer recommended. ==== ->>>>>>> upstream/main endif::[] - :leveloffset: 1 // Getting Started with Helm :leveloffset: +1 @@ -1144,11 +1023,7 @@ ifndef::useHelmChartDir[] ---- build: uri: https://github.com/wildfly/quickstart.git -<<<<<<< HEAD - ref: 31.x-glow-preview -======= ref: main ->>>>>>> upstream/main contextDir: jsonp deploy: replicas: 1 diff --git a/jta-crash-rec/README.adoc b/jta-crash-rec/README.adoc index aaed388b11..cee53132d6 100644 --- a/jta-crash-rec/README.adoc +++ b/jta-crash-rec/README.adoc @@ -66,7 +66,7 @@ ifndef::ProductRelease,EAPXPRelease[] :productImageVersion: 31.0 :githubRepoUrl: https://github.com/wildfly/quickstart/ :githubRepoCodeUrl: https://github.com/wildfly/quickstart.git -:WildFlyQuickStartRepoTag: 31.0.0.Final-glow-preview +:WildFlyQuickStartRepoTag: 31.0.0.Final :DocInfoProductName: Red Hat JBoss Enterprise Application Platform :DocInfoProductNameURL: red_hat_jboss_enterprise_application_platform :DocInfoProductNumber: 8.0 @@ -196,9 +196,6 @@ endif::[] :LinkJBDSGettingStarted: https://access.redhat.com/documentation/en-us/red_hat_codeready_studio/{JBDSVersion}/html-single/getting_started_with_codeready_studio_tools/ :JBDSGettingStartedBookName: Getting Started with CodeReady Studio Tools -// Enable Rendering of Glow configuration in plugin examples -:portedToGlow: true - = jta-crash-rec: Example of JTA Crash Recovery :author: Mike Musgrove :level: Advanced diff --git a/jts/README.adoc b/jts/README.adoc index 7dc851eb4c..4b03e95607 100644 --- a/jts/README.adoc +++ b/jts/README.adoc @@ -66,7 +66,7 @@ ifndef::ProductRelease,EAPXPRelease[] :productImageVersion: 31.0 :githubRepoUrl: https://github.com/wildfly/quickstart/ :githubRepoCodeUrl: https://github.com/wildfly/quickstart.git -:WildFlyQuickStartRepoTag: 31.0.0.Final-glow-preview +:WildFlyQuickStartRepoTag: 31.0.0.Final :DocInfoProductName: Red Hat JBoss Enterprise Application Platform :DocInfoProductNameURL: red_hat_jboss_enterprise_application_platform :DocInfoProductNumber: 8.0 @@ -196,9 +196,6 @@ endif::[] :LinkJBDSGettingStarted: https://access.redhat.com/documentation/en-us/red_hat_codeready_studio/{JBDSVersion}/html-single/getting_started_with_codeready_studio_tools/ :JBDSGettingStartedBookName: Getting Started with CodeReady Studio Tools -// Enable Rendering of Glow configuration in plugin examples -:portedToGlow: true - = jts: Java Transaction Service - Distributed EJB Transactions :author: Tom Jenkinson :level: Intermediate diff --git a/kitchensink/README.adoc b/kitchensink/README.adoc index f64931d395..504ac03fb6 100644 --- a/kitchensink/README.adoc +++ b/kitchensink/README.adoc @@ -66,7 +66,7 @@ ifndef::ProductRelease,EAPXPRelease[] :productImageVersion: 31.0 :githubRepoUrl: https://github.com/wildfly/quickstart/ :githubRepoCodeUrl: https://github.com/wildfly/quickstart.git -:WildFlyQuickStartRepoTag: 31.0.0.Final-glow-preview +:WildFlyQuickStartRepoTag: 31.0.0.Final :DocInfoProductName: Red Hat JBoss Enterprise Application Platform :DocInfoProductNameURL: red_hat_jboss_enterprise_application_platform :DocInfoProductNumber: 8.0 @@ -196,15 +196,11 @@ endif::[] :LinkJBDSGettingStarted: https://access.redhat.com/documentation/en-us/red_hat_codeready_studio/{JBDSVersion}/html-single/getting_started_with_codeready_studio_tools/ :JBDSGettingStartedBookName: Getting Started with CodeReady Studio Tools -// Enable Rendering of Glow configuration in plugin examples -:portedToGlow: true - = kitchensink: Assortment of technologies :author: Pete Muir :level: Intermediate :technologies: CDI, JSF, JPA, EJB, JAX-RS, BV :openshift: true -:portedToGlow: true [abstract] The `kitchensink` quickstart demonstrates a localized {javaVersion} web-enabled database application using JSF, CDI, EJB, JPA, and Bean Validation. @@ -737,7 +733,7 @@ For Windows, use the `__{jbossHomeName}__\bin\add-user.bat` script. endif::[] The server provisioning functionality is provided by the WildFly Maven Plugin, and you may find its configuration in the quickstart `pom.xml`: -ifndef::portedToGlow[] + [source,xml,subs="attributes+"] ---- @@ -770,55 +766,6 @@ ifndef::portedToGlow[] ---- -endif::portedToGlow[] -ifdef::portedToGlow[] -[source,xml,subs="attributes+"] ----- - - provisioned-server - - - - org.wildfly.plugins - wildfly-maven-plugin - - - ${version.server} - - - ROOT.war - ... - - - - - package - - - - - ... - - - ----- -The plugin uses https://github.com/wildfly/wildfly-glow[WildFly Glow] to discover the feature packs and layers required to run the application, and provisions a server containing those layers. - -[NOTE] -==== -This uses a pre-release of version 5.0.0 of the wildfly-maven-plugin providing the Glow functionality. The version is set in the pom's `pluginManagement` section. -==== - -If you get an error or the server is missing some functionality which cannot be auto-discovered, you can download the https://github.com/wildfly/wildfly-glow/releases/tag[WildFly Glow CLI] and run the following command to see more information about what add-ons are available: - -[source,shell] ----- -wildfly-glow show-add-ons ----- -endif::portedToGlow[] [NOTE] ==== @@ -1015,14 +962,9 @@ ifdef::ProductRelease,EAPXPRelease[] The server provisioning functionality is provided by the EAP Maven Plugin, and you may find its configuration in the quickstart `pom.xml`: endif::[] -<<<<<<< HEAD -ifndef::ProductRelease,EAPXPRelease[] -ifndef::portedToGlow[] -======= // Render XML Snippet of openshift Maven profile... ifndef::ProductRelease[] // ... for WildFly ->>>>>>> upstream/main [source,xml,subs="attributes+"] ---- @@ -1057,68 +999,10 @@ ifndef::ProductRelease[] ---- -<<<<<<< HEAD -You may note that unlike the `provisioned-server` profile it uses the cloud feature pack which enables a configuration tuned for OpenShift environment. -endif::portedToGlow[] -ifdef::portedToGlow[] -[source,xml,subs="attributes+"] ----- - - openshift - - - - org.wildfly.plugins - wildfly-maven-plugin - - - ${version.server} - cloud - - - ROOT.war - ... - - - - - package - - - - - ... - - - ----- -You may note that unlike the `provisioned-server` profile it uses the cloud context which enables a configuration tuned for OpenShift environment. - -The plugin uses https://github.com/wildfly/wildfly-glow[WildFly Glow] to discover the feature packs and layers required to run the application, and provisions a server containing those layers. - -[NOTE] -==== -This uses a pre-release of version 5.0.0 of the wildfly-maven-plugin providing the Glow functionality. The version is set in the pom's `pluginManagement` section. -==== - -If you get an error or the server is missing some functionality which cannot be auto-discovered, you can download the https://github.com/wildfly/wildfly-glow/releases[WildFly Glow CLI] and run the following command to see more information about what add-ons are available: -[source,shell] ----- -wildfly-glow show-add-ons ----- -endif::portedToGlow[] -endif::ProductRelease,EAPXPRelease[] - -ifdef::ProductRelease,EAPXPRelease[] -======= endif::[] ifdef::ProductRelease[] ifndef::EAPXPRelease[] // ... for EAP ->>>>>>> upstream/main [source,xml,subs="attributes+"] ---- @@ -1154,9 +1038,6 @@ ifndef::EAPXPRelease[] ---- -<<<<<<< HEAD -You may note that it uses the cloud feature pack which enables a configuration tuned for OpenShift environment. -======= endif::[] ifdef::EAPXPRelease[] // ... for EAP XP @@ -1210,10 +1091,8 @@ ifdef::EAPXPRelease[] ==== Previous {productName} releases used the WildFly JAR Maven Plugin to package the quickstart in a Bootable JAR, when deploying it on OpenShift, and while that's still supported it's no longer recommended. ==== ->>>>>>> upstream/main endif::[] - :leveloffset: 1 // Getting Started with Helm :leveloffset: +1 @@ -1319,11 +1198,7 @@ ifndef::useHelmChartDir[] ---- build: uri: https://github.com/wildfly/quickstart.git -<<<<<<< HEAD - ref: 31.x-glow-preview -======= ref: main ->>>>>>> upstream/main contextDir: kitchensink deploy: replicas: 1 diff --git a/logging/README.adoc b/logging/README.adoc index 00a5299667..e74733768c 100644 --- a/logging/README.adoc +++ b/logging/README.adoc @@ -66,7 +66,7 @@ ifndef::ProductRelease,EAPXPRelease[] :productImageVersion: 31.0 :githubRepoUrl: https://github.com/wildfly/quickstart/ :githubRepoCodeUrl: https://github.com/wildfly/quickstart.git -:WildFlyQuickStartRepoTag: 31.0.0.Final-glow-preview +:WildFlyQuickStartRepoTag: 31.0.0.Final :DocInfoProductName: Red Hat JBoss Enterprise Application Platform :DocInfoProductNameURL: red_hat_jboss_enterprise_application_platform :DocInfoProductNumber: 8.0 @@ -196,14 +196,10 @@ endif::[] :LinkJBDSGettingStarted: https://access.redhat.com/documentation/en-us/red_hat_codeready_studio/{JBDSVersion}/html-single/getting_started_with_codeready_studio_tools/ :JBDSGettingStartedBookName: Getting Started with CodeReady Studio Tools -// Enable Rendering of Glow configuration in plugin examples -:portedToGlow: true - = logging: Example That Sets Up Different Logging Levels :author: Joel Tosi :level: Intermediate :technologies: Logging -:portedToGlow: true [abstract] The `logging` quickstart demonstrates how to configure different logging levels in {productName}. @@ -911,7 +907,7 @@ For Windows, use the `__{jbossHomeName}__\bin\add-user.bat` script. endif::[] The server provisioning functionality is provided by the WildFly Maven Plugin, and you may find its configuration in the quickstart `pom.xml`: -ifndef::portedToGlow[] + [source,xml,subs="attributes+"] ---- @@ -944,55 +940,6 @@ ifndef::portedToGlow[] ---- -endif::portedToGlow[] -ifdef::portedToGlow[] -[source,xml,subs="attributes+"] ----- - - provisioned-server - - - - org.wildfly.plugins - wildfly-maven-plugin - - - ${version.server} - - - ROOT.war - ... - - - - - package - - - - - ... - - - ----- -The plugin uses https://github.com/wildfly/wildfly-glow[WildFly Glow] to discover the feature packs and layers required to run the application, and provisions a server containing those layers. - -[NOTE] -==== -This uses a pre-release of version 5.0.0 of the wildfly-maven-plugin providing the Glow functionality. The version is set in the pom's `pluginManagement` section. -==== - -If you get an error or the server is missing some functionality which cannot be auto-discovered, you can download the https://github.com/wildfly/wildfly-glow/releases/tag[WildFly Glow CLI] and run the following command to see more information about what add-ons are available: - -[source,shell] ----- -wildfly-glow show-add-ons ----- -endif::portedToGlow[] [NOTE] ==== @@ -1190,14 +1137,9 @@ ifdef::ProductRelease,EAPXPRelease[] The server provisioning functionality is provided by the EAP Maven Plugin, and you may find its configuration in the quickstart `pom.xml`: endif::[] -<<<<<<< HEAD -ifndef::ProductRelease,EAPXPRelease[] -ifndef::portedToGlow[] -======= // Render XML Snippet of openshift Maven profile... ifndef::ProductRelease[] // ... for WildFly ->>>>>>> upstream/main [source,xml,subs="attributes+"] ---- @@ -1232,68 +1174,10 @@ ifndef::ProductRelease[] ---- -<<<<<<< HEAD -You may note that unlike the `provisioned-server` profile it uses the cloud feature pack which enables a configuration tuned for OpenShift environment. -endif::portedToGlow[] -ifdef::portedToGlow[] -[source,xml,subs="attributes+"] ----- - - openshift - - - - org.wildfly.plugins - wildfly-maven-plugin - - - ${version.server} - cloud - - - ROOT.war - ... - - - - - package - - - - - ... - - - ----- -You may note that unlike the `provisioned-server` profile it uses the cloud context which enables a configuration tuned for OpenShift environment. - -The plugin uses https://github.com/wildfly/wildfly-glow[WildFly Glow] to discover the feature packs and layers required to run the application, and provisions a server containing those layers. - -[NOTE] -==== -This uses a pre-release of version 5.0.0 of the wildfly-maven-plugin providing the Glow functionality. The version is set in the pom's `pluginManagement` section. -==== - -If you get an error or the server is missing some functionality which cannot be auto-discovered, you can download the https://github.com/wildfly/wildfly-glow/releases[WildFly Glow CLI] and run the following command to see more information about what add-ons are available: -[source,shell] ----- -wildfly-glow show-add-ons ----- -endif::portedToGlow[] -endif::ProductRelease,EAPXPRelease[] - -ifdef::ProductRelease,EAPXPRelease[] -======= endif::[] ifdef::ProductRelease[] ifndef::EAPXPRelease[] // ... for EAP ->>>>>>> upstream/main [source,xml,subs="attributes+"] ---- @@ -1329,9 +1213,6 @@ ifndef::EAPXPRelease[] ---- -<<<<<<< HEAD -You may note that it uses the cloud feature pack which enables a configuration tuned for OpenShift environment. -======= endif::[] ifdef::EAPXPRelease[] // ... for EAP XP @@ -1385,10 +1266,8 @@ ifdef::EAPXPRelease[] ==== Previous {productName} releases used the WildFly JAR Maven Plugin to package the quickstart in a Bootable JAR, when deploying it on OpenShift, and while that's still supported it's no longer recommended. ==== ->>>>>>> upstream/main endif::[] - :leveloffset: 1 // Getting Started with Helm :leveloffset: +1 diff --git a/mail/README.adoc b/mail/README.adoc index acc1bbe075..6c6001679d 100644 --- a/mail/README.adoc +++ b/mail/README.adoc @@ -66,7 +66,7 @@ ifndef::ProductRelease,EAPXPRelease[] :productImageVersion: 31.0 :githubRepoUrl: https://github.com/wildfly/quickstart/ :githubRepoCodeUrl: https://github.com/wildfly/quickstart.git -:WildFlyQuickStartRepoTag: 31.0.0.Final-glow-preview +:WildFlyQuickStartRepoTag: 31.0.0.Final :DocInfoProductName: Red Hat JBoss Enterprise Application Platform :DocInfoProductNameURL: red_hat_jboss_enterprise_application_platform :DocInfoProductNumber: 8.0 @@ -196,14 +196,10 @@ endif::[] :LinkJBDSGettingStarted: https://access.redhat.com/documentation/en-us/red_hat_codeready_studio/{JBDSVersion}/html-single/getting_started_with_codeready_studio_tools/ :JBDSGettingStartedBookName: Getting Started with CodeReady Studio Tools -// Enable Rendering of Glow configuration in plugin examples -:portedToGlow: true - = mail: E-Mail Example using CDI and JSF :author: Joel Tosi :level: Beginner :technologies: JavaMail, CDI, JSF -:portedToGlow: true [abstract] The `mail` quickstart demonstrates how to send and receive emails using CDI and JSF and with custom Mail provider configured in {productName}. @@ -988,7 +984,7 @@ For Windows, use the `__{jbossHomeName}__\bin\add-user.bat` script. endif::[] The server provisioning functionality is provided by the WildFly Maven Plugin, and you may find its configuration in the quickstart `pom.xml`: -ifndef::portedToGlow[] + [source,xml,subs="attributes+"] ---- @@ -1021,55 +1017,6 @@ ifndef::portedToGlow[] ---- -endif::portedToGlow[] -ifdef::portedToGlow[] -[source,xml,subs="attributes+"] ----- - - provisioned-server - - - - org.wildfly.plugins - wildfly-maven-plugin - - - ${version.server} - - - ROOT.war - ... - - - - - package - - - - - ... - - - ----- -The plugin uses https://github.com/wildfly/wildfly-glow[WildFly Glow] to discover the feature packs and layers required to run the application, and provisions a server containing those layers. - -[NOTE] -==== -This uses a pre-release of version 5.0.0 of the wildfly-maven-plugin providing the Glow functionality. The version is set in the pom's `pluginManagement` section. -==== - -If you get an error or the server is missing some functionality which cannot be auto-discovered, you can download the https://github.com/wildfly/wildfly-glow/releases/tag[WildFly Glow CLI] and run the following command to see more information about what add-ons are available: - -[source,shell] ----- -wildfly-glow show-add-ons ----- -endif::portedToGlow[] [NOTE] ==== diff --git a/messaging-clustering-singleton/README.adoc b/messaging-clustering-singleton/README.adoc index ecd59caf70..528ac72de7 100644 --- a/messaging-clustering-singleton/README.adoc +++ b/messaging-clustering-singleton/README.adoc @@ -66,7 +66,7 @@ ifndef::ProductRelease,EAPXPRelease[] :productImageVersion: 31.0 :githubRepoUrl: https://github.com/wildfly/quickstart/ :githubRepoCodeUrl: https://github.com/wildfly/quickstart.git -:WildFlyQuickStartRepoTag: 31.0.0.Final-glow-preview +:WildFlyQuickStartRepoTag: 31.0.0.Final :DocInfoProductName: Red Hat JBoss Enterprise Application Platform :DocInfoProductNameURL: red_hat_jboss_enterprise_application_platform :DocInfoProductNumber: 8.0 @@ -196,9 +196,6 @@ endif::[] :LinkJBDSGettingStarted: https://access.redhat.com/documentation/en-us/red_hat_codeready_studio/{JBDSVersion}/html-single/getting_started_with_codeready_studio_tools/ :JBDSGettingStartedBookName: Getting Started with CodeReady Studio Tools -// Enable Rendering of Glow configuration in plugin examples -:portedToGlow: true - = messaging-clustering-singleton: Messaging Example that Demonstrates Clustering :author: Flavia Rainone, Jess Sightler :level: Advanced diff --git a/micrometer/README.adoc b/micrometer/README.adoc index d1f8d4f4a8..baf04676a6 100644 --- a/micrometer/README.adoc +++ b/micrometer/README.adoc @@ -66,7 +66,7 @@ ifndef::ProductRelease,EAPXPRelease[] :productImageVersion: 31.0 :githubRepoUrl: https://github.com/wildfly/quickstart/ :githubRepoCodeUrl: https://github.com/wildfly/quickstart.git -:WildFlyQuickStartRepoTag: 31.0.0.Final-glow-preview +:WildFlyQuickStartRepoTag: 31.0.0.Final :DocInfoProductName: Red Hat JBoss Enterprise Application Platform :DocInfoProductNameURL: red_hat_jboss_enterprise_application_platform :DocInfoProductNumber: 8.0 @@ -196,15 +196,11 @@ endif::[] :LinkJBDSGettingStarted: https://access.redhat.com/documentation/en-us/red_hat_codeready_studio/{JBDSVersion}/html-single/getting_started_with_codeready_studio_tools/ :JBDSGettingStartedBookName: Getting Started with CodeReady Studio Tools -// Enable Rendering of Glow configuration in plugin examples -:portedToGlow: true - = micrometer: Micrometer QuickStart :author: Jason Lee :level: Beginner :technologies: Micrometer :openshift: true -:portedToGlow: true [abstract] The `micrometer` quickstart demonstrates the use of the Micrometer library in {productName}. @@ -960,7 +956,7 @@ For Windows, use the `__{jbossHomeName}__\bin\add-user.bat` script. endif::[] The server provisioning functionality is provided by the WildFly Maven Plugin, and you may find its configuration in the quickstart `pom.xml`: -ifndef::portedToGlow[] + [source,xml,subs="attributes+"] ---- @@ -993,55 +989,6 @@ ifndef::portedToGlow[] ---- -endif::portedToGlow[] -ifdef::portedToGlow[] -[source,xml,subs="attributes+"] ----- - - provisioned-server - - - - org.wildfly.plugins - wildfly-maven-plugin - - - ${version.server} - - - ROOT.war - ... - - - - - package - - - - - ... - - - ----- -The plugin uses https://github.com/wildfly/wildfly-glow[WildFly Glow] to discover the feature packs and layers required to run the application, and provisions a server containing those layers. - -[NOTE] -==== -This uses a pre-release of version 5.0.0 of the wildfly-maven-plugin providing the Glow functionality. The version is set in the pom's `pluginManagement` section. -==== - -If you get an error or the server is missing some functionality which cannot be auto-discovered, you can download the https://github.com/wildfly/wildfly-glow/releases/tag[WildFly Glow CLI] and run the following command to see more information about what add-ons are available: - -[source,shell] ----- -wildfly-glow show-add-ons ----- -endif::portedToGlow[] [NOTE] ==== @@ -1225,13 +1172,9 @@ You can use the WildFly JAR Maven plug-in to build a {productName} bootable JAR The quickstart `pom.xml` file contains a Maven profile named *bootable-jar* which configures the bootable JAR building: -<<<<<<< HEAD -ifndef::portedToGlow[] -======= // Render XML Snippet of openshift Maven profile... ifndef::ProductRelease[] // ... for WildFly ->>>>>>> upstream/main [source,xml,subs="attributes+"] ---- @@ -1300,63 +1243,10 @@ ifdef::EAPXPRelease[] ---- -<<<<<<< HEAD -endif::portedToGlow[] -ifdef::portedToGlow[] -[source,xml,subs="attributes+"] ----- - - bootable-jar - - - - org.wildfly.plugins - wildfly-maven-plugin - - - ${version.server} - - true - - ROOT.war - ... - - - - - package - - - - - ... - - - ----- -The plugin uses https://github.com/wildfly/wildfly-glow[WildFly Glow] to discover the feature packs and layers required to run the application, and provisions a server containing those layers. - -[NOTE] -==== -This uses a pre-release of version 5.0.0 of the wildfly-maven-plugin providing the Glow functionality. The version is set in the pom's `pluginManagement` section. -==== - -If you get an error or the server is missing some functionality which cannot be auto-discovered, you can download the https://github.com/wildfly/wildfly-glow/releases/tag[WildFly Glow CLI] and run the following command to see more information about what add-ons are available: - -[source,shell] ----- -wildfly-glow show-add-ons ----- -endif::portedToGlow[] -======= endif::[] endif::[] ->>>>>>> upstream/main .Procedure @@ -1515,14 +1405,9 @@ ifdef::ProductRelease,EAPXPRelease[] The server provisioning functionality is provided by the EAP Maven Plugin, and you may find its configuration in the quickstart `pom.xml`: endif::[] -<<<<<<< HEAD -ifndef::ProductRelease,EAPXPRelease[] -ifndef::portedToGlow[] -======= // Render XML Snippet of openshift Maven profile... ifndef::ProductRelease[] // ... for WildFly ->>>>>>> upstream/main [source,xml,subs="attributes+"] ---- @@ -1557,68 +1442,10 @@ ifndef::ProductRelease[] ---- -<<<<<<< HEAD -You may note that unlike the `provisioned-server` profile it uses the cloud feature pack which enables a configuration tuned for OpenShift environment. -endif::portedToGlow[] -ifdef::portedToGlow[] -[source,xml,subs="attributes+"] ----- - - openshift - - - - org.wildfly.plugins - wildfly-maven-plugin - - - ${version.server} - cloud - - - ROOT.war - ... - - - - - package - - - - - ... - - - ----- -You may note that unlike the `provisioned-server` profile it uses the cloud context which enables a configuration tuned for OpenShift environment. - -The plugin uses https://github.com/wildfly/wildfly-glow[WildFly Glow] to discover the feature packs and layers required to run the application, and provisions a server containing those layers. - -[NOTE] -==== -This uses a pre-release of version 5.0.0 of the wildfly-maven-plugin providing the Glow functionality. The version is set in the pom's `pluginManagement` section. -==== - -If you get an error or the server is missing some functionality which cannot be auto-discovered, you can download the https://github.com/wildfly/wildfly-glow/releases[WildFly Glow CLI] and run the following command to see more information about what add-ons are available: -[source,shell] ----- -wildfly-glow show-add-ons ----- -endif::portedToGlow[] -endif::ProductRelease,EAPXPRelease[] - -ifdef::ProductRelease,EAPXPRelease[] -======= endif::[] ifdef::ProductRelease[] ifndef::EAPXPRelease[] // ... for EAP ->>>>>>> upstream/main [source,xml,subs="attributes+"] ---- @@ -1654,9 +1481,6 @@ ifndef::EAPXPRelease[] ---- -<<<<<<< HEAD -You may note that it uses the cloud feature pack which enables a configuration tuned for OpenShift environment. -======= endif::[] ifdef::EAPXPRelease[] // ... for EAP XP @@ -1710,10 +1534,8 @@ ifdef::EAPXPRelease[] ==== Previous {productName} releases used the WildFly JAR Maven Plugin to package the quickstart in a Bootable JAR, when deploying it on OpenShift, and while that's still supported it's no longer recommended. ==== ->>>>>>> upstream/main endif::[] - :leveloffset: 1 // Getting Started with Helm :leveloffset: +1 @@ -1970,15 +1792,7 @@ ifndef::useHelmChartDir[] ---- build: uri: https://github.com/wildfly/quickstart.git -<<<<<<< HEAD -<<<<<<< HEAD - ref: main -======= - ref: 31.x-glow-preview ->>>>>>> b4ca9a43b66d96aff01d3da9f9714b65b9bb38b0 -======= ref: main ->>>>>>> upstream/main contextDir: micrometer deploy: replicas: 1 diff --git a/microprofile-config/README.adoc b/microprofile-config/README.adoc index 0951a4d1a0..6cc5f2dcc9 100644 --- a/microprofile-config/README.adoc +++ b/microprofile-config/README.adoc @@ -66,7 +66,7 @@ ifndef::ProductRelease,EAPXPRelease[] :productImageVersion: 31.0 :githubRepoUrl: https://github.com/wildfly/quickstart/ :githubRepoCodeUrl: https://github.com/wildfly/quickstart.git -:WildFlyQuickStartRepoTag: 31.0.0.Final-glow-preview +:WildFlyQuickStartRepoTag: 31.0.0.Final :DocInfoProductName: Red Hat JBoss Enterprise Application Platform :DocInfoProductNameURL: red_hat_jboss_enterprise_application_platform :DocInfoProductNumber: 8.0 @@ -196,14 +196,10 @@ endif::[] :LinkJBDSGettingStarted: https://access.redhat.com/documentation/en-us/red_hat_codeready_studio/{JBDSVersion}/html-single/getting_started_with_codeready_studio_tools/ :JBDSGettingStartedBookName: Getting Started with CodeReady Studio Tools -// Enable Rendering of Glow configuration in plugin examples -:portedToGlow: true - = microprofile-config: MicroProfile Config QuickStart :author: Martin Stefanko :level: Beginner :technologies: MicroProfile Config -:portedToGlow: true [abstract] The `microprofile-config` quickstart demonstrates the use of the MicroProfile Config specification in {productName}. @@ -1375,13 +1371,9 @@ You can use the WildFly JAR Maven plug-in to build a {productName} bootable JAR The quickstart `pom.xml` file contains a Maven profile named *bootable-jar* which configures the bootable JAR building: -<<<<<<< HEAD -ifndef::portedToGlow[] -======= // Render XML Snippet of openshift Maven profile... ifndef::ProductRelease[] // ... for WildFly ->>>>>>> upstream/main [source,xml,subs="attributes+"] ---- @@ -1450,63 +1442,10 @@ ifdef::EAPXPRelease[] ---- -<<<<<<< HEAD -endif::portedToGlow[] -ifdef::portedToGlow[] -[source,xml,subs="attributes+"] ----- - - bootable-jar - - - - org.wildfly.plugins - wildfly-maven-plugin - - - ${version.server} - - true - - ROOT.war - ... - - - - - package - - - - - ... - - - ----- -The plugin uses https://github.com/wildfly/wildfly-glow[WildFly Glow] to discover the feature packs and layers required to run the application, and provisions a server containing those layers. - -[NOTE] -==== -This uses a pre-release of version 5.0.0 of the wildfly-maven-plugin providing the Glow functionality. The version is set in the pom's `pluginManagement` section. -==== - -If you get an error or the server is missing some functionality which cannot be auto-discovered, you can download the https://github.com/wildfly/wildfly-glow/releases/tag[WildFly Glow CLI] and run the following command to see more information about what add-ons are available: - -[source,shell] ----- -wildfly-glow show-add-ons ----- -endif::portedToGlow[] -======= endif::[] endif::[] ->>>>>>> upstream/main .Procedure @@ -1666,14 +1605,9 @@ ifdef::ProductRelease,EAPXPRelease[] The server provisioning functionality is provided by the EAP Maven Plugin, and you may find its configuration in the quickstart `pom.xml`: endif::[] -<<<<<<< HEAD -ifndef::ProductRelease,EAPXPRelease[] -ifndef::portedToGlow[] -======= // Render XML Snippet of openshift Maven profile... ifndef::ProductRelease[] // ... for WildFly ->>>>>>> upstream/main [source,xml,subs="attributes+"] ---- @@ -1708,68 +1642,10 @@ ifndef::ProductRelease[] ---- -<<<<<<< HEAD -You may note that unlike the `provisioned-server` profile it uses the cloud feature pack which enables a configuration tuned for OpenShift environment. -endif::portedToGlow[] -ifdef::portedToGlow[] -[source,xml,subs="attributes+"] ----- - - openshift - - - - org.wildfly.plugins - wildfly-maven-plugin - - - ${version.server} - cloud - - - ROOT.war - ... - - - - - package - - - - - ... - - - ----- -You may note that unlike the `provisioned-server` profile it uses the cloud context which enables a configuration tuned for OpenShift environment. - -The plugin uses https://github.com/wildfly/wildfly-glow[WildFly Glow] to discover the feature packs and layers required to run the application, and provisions a server containing those layers. - -[NOTE] -==== -This uses a pre-release of version 5.0.0 of the wildfly-maven-plugin providing the Glow functionality. The version is set in the pom's `pluginManagement` section. -==== - -If you get an error or the server is missing some functionality which cannot be auto-discovered, you can download the https://github.com/wildfly/wildfly-glow/releases[WildFly Glow CLI] and run the following command to see more information about what add-ons are available: -[source,shell] ----- -wildfly-glow show-add-ons ----- -endif::portedToGlow[] -endif::ProductRelease,EAPXPRelease[] - -ifdef::ProductRelease,EAPXPRelease[] -======= endif::[] ifdef::ProductRelease[] ifndef::EAPXPRelease[] // ... for EAP ->>>>>>> upstream/main [source,xml,subs="attributes+"] ---- @@ -1805,9 +1681,6 @@ ifndef::EAPXPRelease[] ---- -<<<<<<< HEAD -You may note that it uses the cloud feature pack which enables a configuration tuned for OpenShift environment. -======= endif::[] ifdef::EAPXPRelease[] // ... for EAP XP @@ -1861,10 +1734,8 @@ ifdef::EAPXPRelease[] ==== Previous {productName} releases used the WildFly JAR Maven Plugin to package the quickstart in a Bootable JAR, when deploying it on OpenShift, and while that's still supported it's no longer recommended. ==== ->>>>>>> upstream/main endif::[] - :leveloffset: 1 // Getting Started with Helm :leveloffset: +1 @@ -1970,11 +1841,7 @@ ifndef::useHelmChartDir[] ---- build: uri: https://github.com/wildfly/quickstart.git -<<<<<<< HEAD - ref: 31.x-glow-preview -======= ref: main ->>>>>>> upstream/main contextDir: microprofile-config deploy: replicas: 1 diff --git a/microprofile-fault-tolerance/README.adoc b/microprofile-fault-tolerance/README.adoc index 930fab9b2d..4f367d079e 100644 --- a/microprofile-fault-tolerance/README.adoc +++ b/microprofile-fault-tolerance/README.adoc @@ -75,7 +75,7 @@ ifndef::ProductRelease,EAPXPRelease[] :productImageVersion: 31.0 :githubRepoUrl: https://github.com/wildfly/quickstart/ :githubRepoCodeUrl: https://github.com/wildfly/quickstart.git -:WildFlyQuickStartRepoTag: 31.0.0.Final-glow-preview +:WildFlyQuickStartRepoTag: 31.0.0.Final :DocInfoProductName: Red Hat JBoss Enterprise Application Platform :DocInfoProductNameURL: red_hat_jboss_enterprise_application_platform :DocInfoProductNumber: 8.0 @@ -205,14 +205,10 @@ endif::[] :LinkJBDSGettingStarted: https://access.redhat.com/documentation/en-us/red_hat_codeready_studio/{JBDSVersion}/html-single/getting_started_with_codeready_studio_tools/ :JBDSGettingStartedBookName: Getting Started with CodeReady Studio Tools -// Enable Rendering of Glow configuration in plugin examples -:portedToGlow: true - = microprofile-fault-tolerance: MicroProfile Fault Tolerance :author: Radoslav Husar, Tomas Hofman :level: Intermediate :technologies: MicroProfile, Fault Tolerance -:portedToGlow: true [abstract] The `microprofile-fault-tolerance` quickstart demonstrates how to use Eclipse MicroProfile Fault Tolerance in {productName}. @@ -1206,13 +1202,9 @@ You can use the WildFly JAR Maven plug-in to build a {productName} bootable JAR The quickstart `pom.xml` file contains a Maven profile named *bootable-jar* which configures the bootable JAR building: -<<<<<<< HEAD -ifndef::portedToGlow[] -======= // Render XML Snippet of openshift Maven profile... ifndef::ProductRelease[] // ... for WildFly ->>>>>>> upstream/main [source,xml,subs="attributes+"] ---- @@ -1281,63 +1273,10 @@ ifdef::EAPXPRelease[] ---- -<<<<<<< HEAD -endif::portedToGlow[] -ifdef::portedToGlow[] -[source,xml,subs="attributes+"] ----- - - bootable-jar - - - - org.wildfly.plugins - wildfly-maven-plugin - - - ${version.server} - - true - - ROOT.war - ... - - - - - package - - - - - ... - - - ----- -The plugin uses https://github.com/wildfly/wildfly-glow[WildFly Glow] to discover the feature packs and layers required to run the application, and provisions a server containing those layers. - -[NOTE] -==== -This uses a pre-release of version 5.0.0 of the wildfly-maven-plugin providing the Glow functionality. The version is set in the pom's `pluginManagement` section. -==== - -If you get an error or the server is missing some functionality which cannot be auto-discovered, you can download the https://github.com/wildfly/wildfly-glow/releases/tag[WildFly Glow CLI] and run the following command to see more information about what add-ons are available: - -[source,shell] ----- -wildfly-glow show-add-ons ----- -endif::portedToGlow[] -======= endif::[] endif::[] ->>>>>>> upstream/main .Procedure @@ -1497,14 +1436,9 @@ ifdef::ProductRelease,EAPXPRelease[] The server provisioning functionality is provided by the EAP Maven Plugin, and you may find its configuration in the quickstart `pom.xml`: endif::[] -<<<<<<< HEAD -ifndef::ProductRelease,EAPXPRelease[] -ifndef::portedToGlow[] -======= // Render XML Snippet of openshift Maven profile... ifndef::ProductRelease[] // ... for WildFly ->>>>>>> upstream/main [source,xml,subs="attributes+"] ---- @@ -1539,68 +1473,10 @@ ifndef::ProductRelease[] ---- -<<<<<<< HEAD -You may note that unlike the `provisioned-server` profile it uses the cloud feature pack which enables a configuration tuned for OpenShift environment. -endif::portedToGlow[] -ifdef::portedToGlow[] -[source,xml,subs="attributes+"] ----- - - openshift - - - - org.wildfly.plugins - wildfly-maven-plugin - - - ${version.server} - cloud - - - ROOT.war - ... - - - - - package - - - - - ... - - - ----- -You may note that unlike the `provisioned-server` profile it uses the cloud context which enables a configuration tuned for OpenShift environment. - -The plugin uses https://github.com/wildfly/wildfly-glow[WildFly Glow] to discover the feature packs and layers required to run the application, and provisions a server containing those layers. - -[NOTE] -==== -This uses a pre-release of version 5.0.0 of the wildfly-maven-plugin providing the Glow functionality. The version is set in the pom's `pluginManagement` section. -==== - -If you get an error or the server is missing some functionality which cannot be auto-discovered, you can download the https://github.com/wildfly/wildfly-glow/releases[WildFly Glow CLI] and run the following command to see more information about what add-ons are available: -[source,shell] ----- -wildfly-glow show-add-ons ----- -endif::portedToGlow[] -endif::ProductRelease,EAPXPRelease[] - -ifdef::ProductRelease,EAPXPRelease[] -======= endif::[] ifdef::ProductRelease[] ifndef::EAPXPRelease[] // ... for EAP ->>>>>>> upstream/main [source,xml,subs="attributes+"] ---- @@ -1636,9 +1512,6 @@ ifndef::EAPXPRelease[] ---- -<<<<<<< HEAD -You may note that it uses the cloud feature pack which enables a configuration tuned for OpenShift environment. -======= endif::[] ifdef::EAPXPRelease[] // ... for EAP XP @@ -1692,10 +1565,8 @@ ifdef::EAPXPRelease[] ==== Previous {productName} releases used the WildFly JAR Maven Plugin to package the quickstart in a Bootable JAR, when deploying it on OpenShift, and while that's still supported it's no longer recommended. ==== ->>>>>>> upstream/main endif::[] - :leveloffset: 1 // Getting Started with Helm :leveloffset: +1 @@ -1801,11 +1672,7 @@ ifndef::useHelmChartDir[] ---- build: uri: https://github.com/wildfly/quickstart.git -<<<<<<< HEAD - ref: 31.x-glow-preview -======= ref: main ->>>>>>> upstream/main contextDir: microprofile-fault-tolerance deploy: replicas: 1 diff --git a/microprofile-health/README.adoc b/microprofile-health/README.adoc index b96ae21d0c..e5bf8875b8 100644 --- a/microprofile-health/README.adoc +++ b/microprofile-health/README.adoc @@ -66,7 +66,7 @@ ifndef::ProductRelease,EAPXPRelease[] :productImageVersion: 31.0 :githubRepoUrl: https://github.com/wildfly/quickstart/ :githubRepoCodeUrl: https://github.com/wildfly/quickstart.git -:WildFlyQuickStartRepoTag: 31.0.0.Final-glow-preview +:WildFlyQuickStartRepoTag: 31.0.0.Final :DocInfoProductName: Red Hat JBoss Enterprise Application Platform :DocInfoProductNameURL: red_hat_jboss_enterprise_application_platform :DocInfoProductNumber: 8.0 @@ -196,9 +196,6 @@ endif::[] :LinkJBDSGettingStarted: https://access.redhat.com/documentation/en-us/red_hat_codeready_studio/{JBDSVersion}/html-single/getting_started_with_codeready_studio_tools/ :JBDSGettingStartedBookName: Getting Started with CodeReady Studio Tools -// Enable Rendering of Glow configuration in plugin examples -:portedToGlow: true - = microprofile-health: MicroProfile Health QuickStart :author: Martin Stefanko :level: Beginner @@ -215,7 +212,6 @@ The `microprofile-health` quickstart demonstrates the use of the MicroProfile He :archiveType: war :archiveName: {artifactId} :include-management-port: http://localhost:9990/health/live -:portedToGlow: true == What is it? @@ -1048,13 +1044,9 @@ You can use the WildFly JAR Maven plug-in to build a {productName} bootable JAR The quickstart `pom.xml` file contains a Maven profile named *bootable-jar* which configures the bootable JAR building: -<<<<<<< HEAD -ifndef::portedToGlow[] -======= // Render XML Snippet of openshift Maven profile... ifndef::ProductRelease[] // ... for WildFly ->>>>>>> upstream/main [source,xml,subs="attributes+"] ---- @@ -1123,63 +1115,10 @@ ifdef::EAPXPRelease[] ---- -<<<<<<< HEAD -endif::portedToGlow[] -ifdef::portedToGlow[] -[source,xml,subs="attributes+"] ----- - - bootable-jar - - - - org.wildfly.plugins - wildfly-maven-plugin - - - ${version.server} - - true - - ROOT.war - ... - - - - - package - - - - - ... - - - ----- -The plugin uses https://github.com/wildfly/wildfly-glow[WildFly Glow] to discover the feature packs and layers required to run the application, and provisions a server containing those layers. - -[NOTE] -==== -This uses a pre-release of version 5.0.0 of the wildfly-maven-plugin providing the Glow functionality. The version is set in the pom's `pluginManagement` section. -==== - -If you get an error or the server is missing some functionality which cannot be auto-discovered, you can download the https://github.com/wildfly/wildfly-glow/releases/tag[WildFly Glow CLI] and run the following command to see more information about what add-ons are available: - -[source,shell] ----- -wildfly-glow show-add-ons ----- -endif::portedToGlow[] -======= endif::[] endif::[] ->>>>>>> upstream/main .Procedure @@ -1339,14 +1278,9 @@ ifdef::ProductRelease,EAPXPRelease[] The server provisioning functionality is provided by the EAP Maven Plugin, and you may find its configuration in the quickstart `pom.xml`: endif::[] -<<<<<<< HEAD -ifndef::ProductRelease,EAPXPRelease[] -ifndef::portedToGlow[] -======= // Render XML Snippet of openshift Maven profile... ifndef::ProductRelease[] // ... for WildFly ->>>>>>> upstream/main [source,xml,subs="attributes+"] ---- @@ -1381,68 +1315,10 @@ ifndef::ProductRelease[] ---- -<<<<<<< HEAD -You may note that unlike the `provisioned-server` profile it uses the cloud feature pack which enables a configuration tuned for OpenShift environment. -endif::portedToGlow[] -ifdef::portedToGlow[] -[source,xml,subs="attributes+"] ----- - - openshift - - - - org.wildfly.plugins - wildfly-maven-plugin - - - ${version.server} - cloud - - - ROOT.war - ... - - - - - package - - - - - ... - - - ----- -You may note that unlike the `provisioned-server` profile it uses the cloud context which enables a configuration tuned for OpenShift environment. - -The plugin uses https://github.com/wildfly/wildfly-glow[WildFly Glow] to discover the feature packs and layers required to run the application, and provisions a server containing those layers. - -[NOTE] -==== -This uses a pre-release of version 5.0.0 of the wildfly-maven-plugin providing the Glow functionality. The version is set in the pom's `pluginManagement` section. -==== - -If you get an error or the server is missing some functionality which cannot be auto-discovered, you can download the https://github.com/wildfly/wildfly-glow/releases[WildFly Glow CLI] and run the following command to see more information about what add-ons are available: -[source,shell] ----- -wildfly-glow show-add-ons ----- -endif::portedToGlow[] -endif::ProductRelease,EAPXPRelease[] - -ifdef::ProductRelease,EAPXPRelease[] -======= endif::[] ifdef::ProductRelease[] ifndef::EAPXPRelease[] // ... for EAP ->>>>>>> upstream/main [source,xml,subs="attributes+"] ---- @@ -1478,9 +1354,6 @@ ifndef::EAPXPRelease[] ---- -<<<<<<< HEAD -You may note that it uses the cloud feature pack which enables a configuration tuned for OpenShift environment. -======= endif::[] ifdef::EAPXPRelease[] // ... for EAP XP @@ -1534,10 +1407,8 @@ ifdef::EAPXPRelease[] ==== Previous {productName} releases used the WildFly JAR Maven Plugin to package the quickstart in a Bootable JAR, when deploying it on OpenShift, and while that's still supported it's no longer recommended. ==== ->>>>>>> upstream/main endif::[] - :leveloffset: 1 // Getting Started with Helm :leveloffset: +1 @@ -1643,11 +1514,7 @@ ifndef::useHelmChartDir[] ---- build: uri: https://github.com/wildfly/quickstart.git -<<<<<<< HEAD - ref: 31.x-glow-preview -======= ref: main ->>>>>>> upstream/main contextDir: microprofile-health deploy: replicas: 1 diff --git a/microprofile-jwt/README.adoc b/microprofile-jwt/README.adoc index 466c2b2e53..c984e84525 100644 --- a/microprofile-jwt/README.adoc +++ b/microprofile-jwt/README.adoc @@ -66,7 +66,7 @@ ifndef::ProductRelease,EAPXPRelease[] :productImageVersion: 31.0 :githubRepoUrl: https://github.com/wildfly/quickstart/ :githubRepoCodeUrl: https://github.com/wildfly/quickstart.git -:WildFlyQuickStartRepoTag: 31.0.0.Final-glow-preview +:WildFlyQuickStartRepoTag: 31.0.0.Final :DocInfoProductName: Red Hat JBoss Enterprise Application Platform :DocInfoProductNameURL: red_hat_jboss_enterprise_application_platform :DocInfoProductNumber: 8.0 @@ -196,9 +196,6 @@ endif::[] :LinkJBDSGettingStarted: https://access.redhat.com/documentation/en-us/red_hat_codeready_studio/{JBDSVersion}/html-single/getting_started_with_codeready_studio_tools/ :JBDSGettingStartedBookName: Getting Started with CodeReady Studio Tools -// Enable Rendering of Glow configuration in plugin examples -:portedToGlow: true - = micro-profile-jwt: MicroProfile JWT QuickStart :author: Darran Lofthouse :level: Intermediate @@ -210,7 +207,6 @@ The `microprofile-jwt` quickstart demonstrates the use of the MicroProfile JWT s :standalone-server-type: microprofile :archiveType: war :archiveName: microprofile-jwt.war -:portedToGlow: true == What is it? @@ -1137,13 +1133,9 @@ You can use the WildFly JAR Maven plug-in to build a {productName} bootable JAR The quickstart `pom.xml` file contains a Maven profile named *bootable-jar* which configures the bootable JAR building: -<<<<<<< HEAD -ifndef::portedToGlow[] -======= // Render XML Snippet of openshift Maven profile... ifndef::ProductRelease[] // ... for WildFly ->>>>>>> upstream/main [source,xml,subs="attributes+"] ---- @@ -1212,63 +1204,10 @@ ifdef::EAPXPRelease[] ---- -<<<<<<< HEAD -endif::portedToGlow[] -ifdef::portedToGlow[] -[source,xml,subs="attributes+"] ----- - - bootable-jar - - - - org.wildfly.plugins - wildfly-maven-plugin - - - ${version.server} - - true - - ROOT.war - ... - - - - - package - - - - - ... - - - ----- -The plugin uses https://github.com/wildfly/wildfly-glow[WildFly Glow] to discover the feature packs and layers required to run the application, and provisions a server containing those layers. - -[NOTE] -==== -This uses a pre-release of version 5.0.0 of the wildfly-maven-plugin providing the Glow functionality. The version is set in the pom's `pluginManagement` section. -==== - -If you get an error or the server is missing some functionality which cannot be auto-discovered, you can download the https://github.com/wildfly/wildfly-glow/releases/tag[WildFly Glow CLI] and run the following command to see more information about what add-ons are available: - -[source,shell] ----- -wildfly-glow show-add-ons ----- -endif::portedToGlow[] -======= endif::[] endif::[] ->>>>>>> upstream/main .Procedure @@ -1428,14 +1367,9 @@ ifdef::ProductRelease,EAPXPRelease[] The server provisioning functionality is provided by the EAP Maven Plugin, and you may find its configuration in the quickstart `pom.xml`: endif::[] -<<<<<<< HEAD -ifndef::ProductRelease,EAPXPRelease[] -ifndef::portedToGlow[] -======= // Render XML Snippet of openshift Maven profile... ifndef::ProductRelease[] // ... for WildFly ->>>>>>> upstream/main [source,xml,subs="attributes+"] ---- @@ -1470,68 +1404,10 @@ ifndef::ProductRelease[] ---- -<<<<<<< HEAD -You may note that unlike the `provisioned-server` profile it uses the cloud feature pack which enables a configuration tuned for OpenShift environment. -endif::portedToGlow[] -ifdef::portedToGlow[] -[source,xml,subs="attributes+"] ----- - - openshift - - - - org.wildfly.plugins - wildfly-maven-plugin - - - ${version.server} - cloud - - - ROOT.war - ... - - - - - package - - - - - ... - - - ----- -You may note that unlike the `provisioned-server` profile it uses the cloud context which enables a configuration tuned for OpenShift environment. - -The plugin uses https://github.com/wildfly/wildfly-glow[WildFly Glow] to discover the feature packs and layers required to run the application, and provisions a server containing those layers. - -[NOTE] -==== -This uses a pre-release of version 5.0.0 of the wildfly-maven-plugin providing the Glow functionality. The version is set in the pom's `pluginManagement` section. -==== - -If you get an error or the server is missing some functionality which cannot be auto-discovered, you can download the https://github.com/wildfly/wildfly-glow/releases[WildFly Glow CLI] and run the following command to see more information about what add-ons are available: -[source,shell] ----- -wildfly-glow show-add-ons ----- -endif::portedToGlow[] -endif::ProductRelease,EAPXPRelease[] - -ifdef::ProductRelease,EAPXPRelease[] -======= endif::[] ifdef::ProductRelease[] ifndef::EAPXPRelease[] // ... for EAP ->>>>>>> upstream/main [source,xml,subs="attributes+"] ---- @@ -1567,9 +1443,6 @@ ifndef::EAPXPRelease[] ---- -<<<<<<< HEAD -You may note that it uses the cloud feature pack which enables a configuration tuned for OpenShift environment. -======= endif::[] ifdef::EAPXPRelease[] // ... for EAP XP @@ -1623,10 +1496,8 @@ ifdef::EAPXPRelease[] ==== Previous {productName} releases used the WildFly JAR Maven Plugin to package the quickstart in a Bootable JAR, when deploying it on OpenShift, and while that's still supported it's no longer recommended. ==== ->>>>>>> upstream/main endif::[] - :leveloffset: 1 // Getting Started with Helm :leveloffset: +1 @@ -1732,11 +1603,7 @@ ifndef::useHelmChartDir[] ---- build: uri: https://github.com/wildfly/quickstart.git -<<<<<<< HEAD - ref: 31.x-glow-preview -======= ref: main ->>>>>>> upstream/main contextDir: microprofile-jwt deploy: replicas: 1 diff --git a/microprofile-lra/README.adoc b/microprofile-lra/README.adoc index 41970e9234..cc3690e7b7 100644 --- a/microprofile-lra/README.adoc +++ b/microprofile-lra/README.adoc @@ -66,7 +66,7 @@ ifndef::ProductRelease,EAPXPRelease[] :productImageVersion: 31.0 :githubRepoUrl: https://github.com/wildfly/quickstart/ :githubRepoCodeUrl: https://github.com/wildfly/quickstart.git -:WildFlyQuickStartRepoTag: 31.0.0.Final-glow-preview +:WildFlyQuickStartRepoTag: 31.0.0.Final :DocInfoProductName: Red Hat JBoss Enterprise Application Platform :DocInfoProductNameURL: red_hat_jboss_enterprise_application_platform :DocInfoProductNumber: 8.0 @@ -196,9 +196,6 @@ endif::[] :LinkJBDSGettingStarted: https://access.redhat.com/documentation/en-us/red_hat_codeready_studio/{JBDSVersion}/html-single/getting_started_with_codeready_studio_tools/ :JBDSGettingStartedBookName: Getting Started with CodeReady Studio Tools -// Enable Rendering of Glow configuration in plugin examples -:portedToGlow: true - = microprofile-lra: MicroProfile LRA QuickStart :author: Martin Stefanko :level: Beginner @@ -218,7 +215,6 @@ The `microprofile-lra` quickstart demonstrates the use of the MicroProfile LRA s :custom-openshift-layers: :extra-openshift-test-arguments: :requires-http-route: -:portedToGlow: true == What is it? @@ -865,13 +861,9 @@ You can use the WildFly JAR Maven plug-in to build a {productName} bootable JAR The quickstart `pom.xml` file contains a Maven profile named *bootable-jar* which configures the bootable JAR building: -<<<<<<< HEAD -ifndef::portedToGlow[] -======= // Render XML Snippet of openshift Maven profile... ifndef::ProductRelease[] // ... for WildFly ->>>>>>> upstream/main [source,xml,subs="attributes+"] ---- @@ -940,63 +932,10 @@ ifdef::EAPXPRelease[] ---- -<<<<<<< HEAD -endif::portedToGlow[] -ifdef::portedToGlow[] -[source,xml,subs="attributes+"] ----- - - bootable-jar - - - - org.wildfly.plugins - wildfly-maven-plugin - - - ${version.server} - - true - - ROOT.war - ... - - - - - package - - - - - ... - - - ----- -The plugin uses https://github.com/wildfly/wildfly-glow[WildFly Glow] to discover the feature packs and layers required to run the application, and provisions a server containing those layers. - -[NOTE] -==== -This uses a pre-release of version 5.0.0 of the wildfly-maven-plugin providing the Glow functionality. The version is set in the pom's `pluginManagement` section. -==== - -If you get an error or the server is missing some functionality which cannot be auto-discovered, you can download the https://github.com/wildfly/wildfly-glow/releases/tag[WildFly Glow CLI] and run the following command to see more information about what add-ons are available: - -[source,shell] ----- -wildfly-glow show-add-ons ----- -endif::portedToGlow[] -======= endif::[] endif::[] ->>>>>>> upstream/main .Procedure @@ -1156,14 +1095,9 @@ ifdef::ProductRelease,EAPXPRelease[] The server provisioning functionality is provided by the EAP Maven Plugin, and you may find its configuration in the quickstart `pom.xml`: endif::[] -<<<<<<< HEAD -ifndef::ProductRelease,EAPXPRelease[] -ifndef::portedToGlow[] -======= // Render XML Snippet of openshift Maven profile... ifndef::ProductRelease[] // ... for WildFly ->>>>>>> upstream/main [source,xml,subs="attributes+"] ---- @@ -1198,68 +1132,10 @@ ifndef::ProductRelease[] ---- -<<<<<<< HEAD -You may note that unlike the `provisioned-server` profile it uses the cloud feature pack which enables a configuration tuned for OpenShift environment. -endif::portedToGlow[] -ifdef::portedToGlow[] -[source,xml,subs="attributes+"] ----- - - openshift - - - - org.wildfly.plugins - wildfly-maven-plugin - - - ${version.server} - cloud - - - ROOT.war - ... - - - - - package - - - - - ... - - - ----- -You may note that unlike the `provisioned-server` profile it uses the cloud context which enables a configuration tuned for OpenShift environment. - -The plugin uses https://github.com/wildfly/wildfly-glow[WildFly Glow] to discover the feature packs and layers required to run the application, and provisions a server containing those layers. - -[NOTE] -==== -This uses a pre-release of version 5.0.0 of the wildfly-maven-plugin providing the Glow functionality. The version is set in the pom's `pluginManagement` section. -==== - -If you get an error or the server is missing some functionality which cannot be auto-discovered, you can download the https://github.com/wildfly/wildfly-glow/releases[WildFly Glow CLI] and run the following command to see more information about what add-ons are available: -[source,shell] ----- -wildfly-glow show-add-ons ----- -endif::portedToGlow[] -endif::ProductRelease,EAPXPRelease[] - -ifdef::ProductRelease,EAPXPRelease[] -======= endif::[] ifdef::ProductRelease[] ifndef::EAPXPRelease[] // ... for EAP ->>>>>>> upstream/main [source,xml,subs="attributes+"] ---- @@ -1295,9 +1171,6 @@ ifndef::EAPXPRelease[] ---- -<<<<<<< HEAD -You may note that it uses the cloud feature pack which enables a configuration tuned for OpenShift environment. -======= endif::[] ifdef::EAPXPRelease[] // ... for EAP XP @@ -1351,10 +1224,8 @@ ifdef::EAPXPRelease[] ==== Previous {productName} releases used the WildFly JAR Maven Plugin to package the quickstart in a Bootable JAR, when deploying it on OpenShift, and while that's still supported it's no longer recommended. ==== ->>>>>>> upstream/main endif::[] - :leveloffset: 1 // Getting Started with Helm :leveloffset: +1 diff --git a/microprofile-openapi/README.adoc b/microprofile-openapi/README.adoc index 09cd51da78..fe0236ee5e 100644 --- a/microprofile-openapi/README.adoc +++ b/microprofile-openapi/README.adoc @@ -66,7 +66,7 @@ ifndef::ProductRelease,EAPXPRelease[] :productImageVersion: 31.0 :githubRepoUrl: https://github.com/wildfly/quickstart/ :githubRepoCodeUrl: https://github.com/wildfly/quickstart.git -:WildFlyQuickStartRepoTag: 31.0.0.Final-glow-preview +:WildFlyQuickStartRepoTag: 31.0.0.Final :DocInfoProductName: Red Hat JBoss Enterprise Application Platform :DocInfoProductNameURL: red_hat_jboss_enterprise_application_platform :DocInfoProductNumber: 8.0 @@ -196,14 +196,10 @@ endif::[] :LinkJBDSGettingStarted: https://access.redhat.com/documentation/en-us/red_hat_codeready_studio/{JBDSVersion}/html-single/getting_started_with_codeready_studio_tools/ :JBDSGettingStartedBookName: Getting Started with CodeReady Studio Tools -// Enable Rendering of Glow configuration in plugin examples -:portedToGlow: true - = microprofile-openapi: MicroProfile OpenAPI QuickStart :author: Paul Ferraro :level: Beginner :technologies: MicroProfile OpenAPI -:portedToGlow: true [abstract] This guide demonstrate how to use the MicroProfile OpenAPI functionality in {productName} to expose an OpenAPI document for a simple REST application. @@ -652,13 +648,9 @@ You can use the WildFly JAR Maven plug-in to build a {productName} bootable JAR The quickstart `pom.xml` file contains a Maven profile named *bootable-jar* which configures the bootable JAR building: -<<<<<<< HEAD -ifndef::portedToGlow[] -======= // Render XML Snippet of openshift Maven profile... ifndef::ProductRelease[] // ... for WildFly ->>>>>>> upstream/main [source,xml,subs="attributes+"] ---- @@ -727,63 +719,10 @@ ifdef::EAPXPRelease[] ---- -<<<<<<< HEAD -endif::portedToGlow[] -ifdef::portedToGlow[] -[source,xml,subs="attributes+"] ----- - - bootable-jar - - - - org.wildfly.plugins - wildfly-maven-plugin - - - ${version.server} - - true - - ROOT.war - ... - - - - - package - - - - - ... - - - ----- -The plugin uses https://github.com/wildfly/wildfly-glow[WildFly Glow] to discover the feature packs and layers required to run the application, and provisions a server containing those layers. - -[NOTE] -==== -This uses a pre-release of version 5.0.0 of the wildfly-maven-plugin providing the Glow functionality. The version is set in the pom's `pluginManagement` section. -==== - -If you get an error or the server is missing some functionality which cannot be auto-discovered, you can download the https://github.com/wildfly/wildfly-glow/releases/tag[WildFly Glow CLI] and run the following command to see more information about what add-ons are available: - -[source,shell] ----- -wildfly-glow show-add-ons ----- -endif::portedToGlow[] -======= endif::[] endif::[] ->>>>>>> upstream/main .Procedure @@ -943,14 +882,9 @@ ifdef::ProductRelease,EAPXPRelease[] The server provisioning functionality is provided by the EAP Maven Plugin, and you may find its configuration in the quickstart `pom.xml`: endif::[] -<<<<<<< HEAD -ifndef::ProductRelease,EAPXPRelease[] -ifndef::portedToGlow[] -======= // Render XML Snippet of openshift Maven profile... ifndef::ProductRelease[] // ... for WildFly ->>>>>>> upstream/main [source,xml,subs="attributes+"] ---- @@ -985,68 +919,10 @@ ifndef::ProductRelease[] ---- -<<<<<<< HEAD -You may note that unlike the `provisioned-server` profile it uses the cloud feature pack which enables a configuration tuned for OpenShift environment. -endif::portedToGlow[] -ifdef::portedToGlow[] -[source,xml,subs="attributes+"] ----- - - openshift - - - - org.wildfly.plugins - wildfly-maven-plugin - - - ${version.server} - cloud - - - ROOT.war - ... - - - - - package - - - - - ... - - - ----- -You may note that unlike the `provisioned-server` profile it uses the cloud context which enables a configuration tuned for OpenShift environment. - -The plugin uses https://github.com/wildfly/wildfly-glow[WildFly Glow] to discover the feature packs and layers required to run the application, and provisions a server containing those layers. - -[NOTE] -==== -This uses a pre-release of version 5.0.0 of the wildfly-maven-plugin providing the Glow functionality. The version is set in the pom's `pluginManagement` section. -==== - -If you get an error or the server is missing some functionality which cannot be auto-discovered, you can download the https://github.com/wildfly/wildfly-glow/releases[WildFly Glow CLI] and run the following command to see more information about what add-ons are available: -[source,shell] ----- -wildfly-glow show-add-ons ----- -endif::portedToGlow[] -endif::ProductRelease,EAPXPRelease[] - -ifdef::ProductRelease,EAPXPRelease[] -======= endif::[] ifdef::ProductRelease[] ifndef::EAPXPRelease[] // ... for EAP ->>>>>>> upstream/main [source,xml,subs="attributes+"] ---- @@ -1082,9 +958,6 @@ ifndef::EAPXPRelease[] ---- -<<<<<<< HEAD -You may note that it uses the cloud feature pack which enables a configuration tuned for OpenShift environment. -======= endif::[] ifdef::EAPXPRelease[] // ... for EAP XP @@ -1138,10 +1011,8 @@ ifdef::EAPXPRelease[] ==== Previous {productName} releases used the WildFly JAR Maven Plugin to package the quickstart in a Bootable JAR, when deploying it on OpenShift, and while that's still supported it's no longer recommended. ==== ->>>>>>> upstream/main endif::[] - :leveloffset: 1 // Getting Started with Helm :leveloffset: +1 @@ -1247,11 +1118,7 @@ ifndef::useHelmChartDir[] ---- build: uri: https://github.com/wildfly/quickstart.git -<<<<<<< HEAD - ref: 31.x-glow-preview -======= ref: main ->>>>>>> upstream/main contextDir: microprofile-openapi deploy: replicas: 1 diff --git a/microprofile-reactive-messaging-kafka/README.adoc b/microprofile-reactive-messaging-kafka/README.adoc index e629bd2aaa..08616ae4d5 100644 --- a/microprofile-reactive-messaging-kafka/README.adoc +++ b/microprofile-reactive-messaging-kafka/README.adoc @@ -66,7 +66,7 @@ ifndef::ProductRelease,EAPXPRelease[] :productImageVersion: 31.0 :githubRepoUrl: https://github.com/wildfly/quickstart/ :githubRepoCodeUrl: https://github.com/wildfly/quickstart.git -:WildFlyQuickStartRepoTag: 31.0.0.Final-glow-preview +:WildFlyQuickStartRepoTag: 31.0.0.Final :DocInfoProductName: Red Hat JBoss Enterprise Application Platform :DocInfoProductNameURL: red_hat_jboss_enterprise_application_platform :DocInfoProductNumber: 8.0 @@ -196,9 +196,6 @@ endif::[] :LinkJBDSGettingStarted: https://access.redhat.com/documentation/en-us/red_hat_codeready_studio/{JBDSVersion}/html-single/getting_started_with_codeready_studio_tools/ :JBDSGettingStartedBookName: Getting Started with CodeReady Studio Tools -// Enable Rendering of Glow configuration in plugin examples -:portedToGlow: true - = microprofile-reactive-messaging-kafka: MicroProfile Reactive Messaging with Kafka QuickStart :author: Kabir Khan :level: Beginner @@ -213,7 +210,6 @@ The `microprofile-reactive-messaging-kafka` quickstart demonstrates the use of t :helm-install-prerequisites: ../microprofile-reactive-messaging-kafka/helm-install-prerequisites.adoc :helm-app-name: mp-rm-qs :strimzi-version: v1beta2 -:portedToGlow: true == What is it? @@ -1566,13 +1562,9 @@ You can use the WildFly JAR Maven plug-in to build a {productName} bootable JAR The quickstart `pom.xml` file contains a Maven profile named *bootable-jar* which configures the bootable JAR building: -<<<<<<< HEAD -ifndef::portedToGlow[] -======= // Render XML Snippet of openshift Maven profile... ifndef::ProductRelease[] // ... for WildFly ->>>>>>> upstream/main [source,xml,subs="attributes+"] ---- @@ -1641,63 +1633,10 @@ ifdef::EAPXPRelease[] ---- -<<<<<<< HEAD -endif::portedToGlow[] -ifdef::portedToGlow[] -[source,xml,subs="attributes+"] ----- - - bootable-jar - - - - org.wildfly.plugins - wildfly-maven-plugin - - - ${version.server} - - true - - ROOT.war - ... - - - - - package - - - - - ... - - - ----- -The plugin uses https://github.com/wildfly/wildfly-glow[WildFly Glow] to discover the feature packs and layers required to run the application, and provisions a server containing those layers. - -[NOTE] -==== -This uses a pre-release of version 5.0.0 of the wildfly-maven-plugin providing the Glow functionality. The version is set in the pom's `pluginManagement` section. -==== - -If you get an error or the server is missing some functionality which cannot be auto-discovered, you can download the https://github.com/wildfly/wildfly-glow/releases/tag[WildFly Glow CLI] and run the following command to see more information about what add-ons are available: - -[source,shell] ----- -wildfly-glow show-add-ons ----- -endif::portedToGlow[] -======= endif::[] endif::[] ->>>>>>> upstream/main .Procedure @@ -1857,14 +1796,9 @@ ifdef::ProductRelease,EAPXPRelease[] The server provisioning functionality is provided by the EAP Maven Plugin, and you may find its configuration in the quickstart `pom.xml`: endif::[] -<<<<<<< HEAD -ifndef::ProductRelease,EAPXPRelease[] -ifndef::portedToGlow[] -======= // Render XML Snippet of openshift Maven profile... ifndef::ProductRelease[] // ... for WildFly ->>>>>>> upstream/main [source,xml,subs="attributes+"] ---- @@ -1899,68 +1833,10 @@ ifndef::ProductRelease[] ---- -<<<<<<< HEAD -You may note that unlike the `provisioned-server` profile it uses the cloud feature pack which enables a configuration tuned for OpenShift environment. -endif::portedToGlow[] -ifdef::portedToGlow[] -[source,xml,subs="attributes+"] ----- - - openshift - - - - org.wildfly.plugins - wildfly-maven-plugin - - - ${version.server} - cloud - - - ROOT.war - ... - - - - - package - - - - - ... - - - ----- -You may note that unlike the `provisioned-server` profile it uses the cloud context which enables a configuration tuned for OpenShift environment. - -The plugin uses https://github.com/wildfly/wildfly-glow[WildFly Glow] to discover the feature packs and layers required to run the application, and provisions a server containing those layers. - -[NOTE] -==== -This uses a pre-release of version 5.0.0 of the wildfly-maven-plugin providing the Glow functionality. The version is set in the pom's `pluginManagement` section. -==== - -If you get an error or the server is missing some functionality which cannot be auto-discovered, you can download the https://github.com/wildfly/wildfly-glow/releases[WildFly Glow CLI] and run the following command to see more information about what add-ons are available: -[source,shell] ----- -wildfly-glow show-add-ons ----- -endif::portedToGlow[] -endif::ProductRelease,EAPXPRelease[] - -ifdef::ProductRelease,EAPXPRelease[] -======= endif::[] ifdef::ProductRelease[] ifndef::EAPXPRelease[] // ... for EAP ->>>>>>> upstream/main [source,xml,subs="attributes+"] ---- @@ -1996,9 +1872,6 @@ ifndef::EAPXPRelease[] ---- -<<<<<<< HEAD -You may note that it uses the cloud feature pack which enables a configuration tuned for OpenShift environment. -======= endif::[] ifdef::EAPXPRelease[] // ... for EAP XP @@ -2052,10 +1925,8 @@ ifdef::EAPXPRelease[] ==== Previous {productName} releases used the WildFly JAR Maven Plugin to package the quickstart in a Bootable JAR, when deploying it on OpenShift, and while that's still supported it's no longer recommended. ==== ->>>>>>> upstream/main endif::[] - :leveloffset: 1 // Getting Started with Helm :leveloffset: +1 @@ -2240,11 +2111,7 @@ ifndef::useHelmChartDir[] # Will need a diff commit in the upstream-to-product repository build: uri: https://github.com/wildfly/quickstart.git -<<<<<<< HEAD - ref: 31.x-glow-preview -======= ref: main ->>>>>>> upstream/main contextDir: microprofile-reactive-messaging-kafka deploy: replicas: 1 diff --git a/microprofile-rest-client/README.adoc b/microprofile-rest-client/README.adoc index 5773e15feb..5b3d575d90 100644 --- a/microprofile-rest-client/README.adoc +++ b/microprofile-rest-client/README.adoc @@ -66,7 +66,7 @@ ifndef::ProductRelease,EAPXPRelease[] :productImageVersion: 31.0 :githubRepoUrl: https://github.com/wildfly/quickstart/ :githubRepoCodeUrl: https://github.com/wildfly/quickstart.git -:WildFlyQuickStartRepoTag: 31.0.0.Final-glow-preview +:WildFlyQuickStartRepoTag: 31.0.0.Final :DocInfoProductName: Red Hat JBoss Enterprise Application Platform :DocInfoProductNameURL: red_hat_jboss_enterprise_application_platform :DocInfoProductNumber: 8.0 @@ -196,9 +196,6 @@ endif::[] :LinkJBDSGettingStarted: https://access.redhat.com/documentation/en-us/red_hat_codeready_studio/{JBDSVersion}/html-single/getting_started_with_codeready_studio_tools/ :JBDSGettingStartedBookName: Getting Started with CodeReady Studio Tools -// Enable Rendering of Glow configuration in plugin examples -:portedToGlow: true - = microprofile-rest-client: MicroProfile REST Client QuickStart :author: Martin Stefanko :level: Beginner @@ -211,7 +208,6 @@ The `microprofile-rest-client` quickstart demonstrates the use of the MicroProfi :archiveType: jar :archiveName: {artifactId} :rest-client-qs: -:portedToGlow: true == What is it? @@ -685,13 +681,9 @@ You can use the WildFly JAR Maven plug-in to build a {productName} bootable JAR The quickstart `pom.xml` file contains a Maven profile named *bootable-jar* which configures the bootable JAR building: -<<<<<<< HEAD -ifndef::portedToGlow[] -======= // Render XML Snippet of openshift Maven profile... ifndef::ProductRelease[] // ... for WildFly ->>>>>>> upstream/main [source,xml,subs="attributes+"] ---- @@ -760,63 +752,10 @@ ifdef::EAPXPRelease[] ---- -<<<<<<< HEAD -endif::portedToGlow[] -ifdef::portedToGlow[] -[source,xml,subs="attributes+"] ----- - - bootable-jar - - - - org.wildfly.plugins - wildfly-maven-plugin - - - ${version.server} - - true - - ROOT.war - ... - - - - - package - - - - - ... - - - ----- -The plugin uses https://github.com/wildfly/wildfly-glow[WildFly Glow] to discover the feature packs and layers required to run the application, and provisions a server containing those layers. - -[NOTE] -==== -This uses a pre-release of version 5.0.0 of the wildfly-maven-plugin providing the Glow functionality. The version is set in the pom's `pluginManagement` section. -==== - -If you get an error or the server is missing some functionality which cannot be auto-discovered, you can download the https://github.com/wildfly/wildfly-glow/releases/tag[WildFly Glow CLI] and run the following command to see more information about what add-ons are available: - -[source,shell] ----- -wildfly-glow show-add-ons ----- -endif::portedToGlow[] -======= endif::[] endif::[] ->>>>>>> upstream/main .Procedure @@ -975,14 +914,9 @@ ifdef::ProductRelease,EAPXPRelease[] The server provisioning functionality is provided by the EAP Maven Plugin, and you may find its configuration in the quickstart `pom.xml`: endif::[] -<<<<<<< HEAD -ifndef::ProductRelease,EAPXPRelease[] -ifndef::portedToGlow[] -======= // Render XML Snippet of openshift Maven profile... ifndef::ProductRelease[] // ... for WildFly ->>>>>>> upstream/main [source,xml,subs="attributes+"] ---- @@ -1017,68 +951,10 @@ ifndef::ProductRelease[] ---- -<<<<<<< HEAD -You may note that unlike the `provisioned-server` profile it uses the cloud feature pack which enables a configuration tuned for OpenShift environment. -endif::portedToGlow[] -ifdef::portedToGlow[] -[source,xml,subs="attributes+"] ----- - - openshift - - - - org.wildfly.plugins - wildfly-maven-plugin - - - ${version.server} - cloud - - - ROOT.war - ... - - - - - package - - - - - ... - - - ----- -You may note that unlike the `provisioned-server` profile it uses the cloud context which enables a configuration tuned for OpenShift environment. - -The plugin uses https://github.com/wildfly/wildfly-glow[WildFly Glow] to discover the feature packs and layers required to run the application, and provisions a server containing those layers. - -[NOTE] -==== -This uses a pre-release of version 5.0.0 of the wildfly-maven-plugin providing the Glow functionality. The version is set in the pom's `pluginManagement` section. -==== - -If you get an error or the server is missing some functionality which cannot be auto-discovered, you can download the https://github.com/wildfly/wildfly-glow/releases[WildFly Glow CLI] and run the following command to see more information about what add-ons are available: -[source,shell] ----- -wildfly-glow show-add-ons ----- -endif::portedToGlow[] -endif::ProductRelease,EAPXPRelease[] - -ifdef::ProductRelease,EAPXPRelease[] -======= endif::[] ifdef::ProductRelease[] ifndef::EAPXPRelease[] // ... for EAP ->>>>>>> upstream/main [source,xml,subs="attributes+"] ---- @@ -1114,9 +990,6 @@ ifndef::EAPXPRelease[] ---- -<<<<<<< HEAD -You may note that it uses the cloud feature pack which enables a configuration tuned for OpenShift environment. -======= endif::[] ifdef::EAPXPRelease[] // ... for EAP XP @@ -1170,10 +1043,8 @@ ifdef::EAPXPRelease[] ==== Previous {productName} releases used the WildFly JAR Maven Plugin to package the quickstart in a Bootable JAR, when deploying it on OpenShift, and while that's still supported it's no longer recommended. ==== ->>>>>>> upstream/main endif::[] - :leveloffset: 1 // Getting Started with Helm :leveloffset: +1 @@ -1279,11 +1150,7 @@ ifndef::useHelmChartDir[] ---- build: uri: https://github.com/wildfly/quickstart.git -<<<<<<< HEAD - ref: 31.x-glow-preview -======= ref: main ->>>>>>> upstream/main contextDir: microprofile-rest-client deploy: replicas: 1 diff --git a/numberguess/README.adoc b/numberguess/README.adoc index 7470293c81..38e780dbd7 100644 --- a/numberguess/README.adoc +++ b/numberguess/README.adoc @@ -66,7 +66,7 @@ ifndef::ProductRelease,EAPXPRelease[] :productImageVersion: 31.0 :githubRepoUrl: https://github.com/wildfly/quickstart/ :githubRepoCodeUrl: https://github.com/wildfly/quickstart.git -:WildFlyQuickStartRepoTag: 31.0.0.Final-glow-preview +:WildFlyQuickStartRepoTag: 31.0.0.Final :DocInfoProductName: Red Hat JBoss Enterprise Application Platform :DocInfoProductNameURL: red_hat_jboss_enterprise_application_platform :DocInfoProductNumber: 8.0 @@ -196,15 +196,11 @@ endif::[] :LinkJBDSGettingStarted: https://access.redhat.com/documentation/en-us/red_hat_codeready_studio/{JBDSVersion}/html-single/getting_started_with_codeready_studio_tools/ :JBDSGettingStartedBookName: Getting Started with CodeReady Studio Tools -// Enable Rendering of Glow configuration in plugin examples -:portedToGlow: true - = numberguess: Example Using CDI and JSF :author: Pete Muir :level: Beginner :technologies: CDI, JSF :openshift: true -:portedToGlow: true [abstract] The `numberguess` quickstart demonstrates the use of CDI (Contexts and Dependency Injection) and JSF (JavaServer Faces) in {productName}. @@ -605,7 +601,7 @@ For Windows, use the `__{jbossHomeName}__\bin\add-user.bat` script. endif::[] The server provisioning functionality is provided by the WildFly Maven Plugin, and you may find its configuration in the quickstart `pom.xml`: -ifndef::portedToGlow[] + [source,xml,subs="attributes+"] ---- @@ -638,55 +634,6 @@ ifndef::portedToGlow[] ---- -endif::portedToGlow[] -ifdef::portedToGlow[] -[source,xml,subs="attributes+"] ----- - - provisioned-server - - - - org.wildfly.plugins - wildfly-maven-plugin - - - ${version.server} - - - ROOT.war - ... - - - - - package - - - - - ... - - - ----- -The plugin uses https://github.com/wildfly/wildfly-glow[WildFly Glow] to discover the feature packs and layers required to run the application, and provisions a server containing those layers. - -[NOTE] -==== -This uses a pre-release of version 5.0.0 of the wildfly-maven-plugin providing the Glow functionality. The version is set in the pom's `pluginManagement` section. -==== - -If you get an error or the server is missing some functionality which cannot be auto-discovered, you can download the https://github.com/wildfly/wildfly-glow/releases/tag[WildFly Glow CLI] and run the following command to see more information about what add-ons are available: - -[source,shell] ----- -wildfly-glow show-add-ons ----- -endif::portedToGlow[] [NOTE] ==== @@ -883,14 +830,9 @@ ifdef::ProductRelease,EAPXPRelease[] The server provisioning functionality is provided by the EAP Maven Plugin, and you may find its configuration in the quickstart `pom.xml`: endif::[] -<<<<<<< HEAD -ifndef::ProductRelease,EAPXPRelease[] -ifndef::portedToGlow[] -======= // Render XML Snippet of openshift Maven profile... ifndef::ProductRelease[] // ... for WildFly ->>>>>>> upstream/main [source,xml,subs="attributes+"] ---- @@ -925,68 +867,10 @@ ifndef::ProductRelease[] ---- -<<<<<<< HEAD -You may note that unlike the `provisioned-server` profile it uses the cloud feature pack which enables a configuration tuned for OpenShift environment. -endif::portedToGlow[] -ifdef::portedToGlow[] -[source,xml,subs="attributes+"] ----- - - openshift - - - - org.wildfly.plugins - wildfly-maven-plugin - - - ${version.server} - cloud - - - ROOT.war - ... - - - - - package - - - - - ... - - - ----- -You may note that unlike the `provisioned-server` profile it uses the cloud context which enables a configuration tuned for OpenShift environment. - -The plugin uses https://github.com/wildfly/wildfly-glow[WildFly Glow] to discover the feature packs and layers required to run the application, and provisions a server containing those layers. - -[NOTE] -==== -This uses a pre-release of version 5.0.0 of the wildfly-maven-plugin providing the Glow functionality. The version is set in the pom's `pluginManagement` section. -==== - -If you get an error or the server is missing some functionality which cannot be auto-discovered, you can download the https://github.com/wildfly/wildfly-glow/releases[WildFly Glow CLI] and run the following command to see more information about what add-ons are available: -[source,shell] ----- -wildfly-glow show-add-ons ----- -endif::portedToGlow[] -endif::ProductRelease,EAPXPRelease[] - -ifdef::ProductRelease,EAPXPRelease[] -======= endif::[] ifdef::ProductRelease[] ifndef::EAPXPRelease[] // ... for EAP ->>>>>>> upstream/main [source,xml,subs="attributes+"] ---- @@ -1022,9 +906,6 @@ ifndef::EAPXPRelease[] ---- -<<<<<<< HEAD -You may note that it uses the cloud feature pack which enables a configuration tuned for OpenShift environment. -======= endif::[] ifdef::EAPXPRelease[] // ... for EAP XP @@ -1078,10 +959,8 @@ ifdef::EAPXPRelease[] ==== Previous {productName} releases used the WildFly JAR Maven Plugin to package the quickstart in a Bootable JAR, when deploying it on OpenShift, and while that's still supported it's no longer recommended. ==== ->>>>>>> upstream/main endif::[] - :leveloffset: 1 // Getting Started with Helm :leveloffset: +1 @@ -1187,11 +1066,7 @@ ifndef::useHelmChartDir[] ---- build: uri: https://github.com/wildfly/quickstart.git -<<<<<<< HEAD - ref: 31.x-glow-preview -======= ref: main ->>>>>>> upstream/main contextDir: numberguess deploy: replicas: 1 diff --git a/opentelemetry-tracing/README.adoc b/opentelemetry-tracing/README.adoc index dc20b69dcd..dfae0d90f0 100644 --- a/opentelemetry-tracing/README.adoc +++ b/opentelemetry-tracing/README.adoc @@ -66,7 +66,7 @@ ifndef::ProductRelease,EAPXPRelease[] :productImageVersion: 31.0 :githubRepoUrl: https://github.com/wildfly/quickstart/ :githubRepoCodeUrl: https://github.com/wildfly/quickstart.git -:WildFlyQuickStartRepoTag: 31.0.0.Final-glow-preview +:WildFlyQuickStartRepoTag: 31.0.0.Final :DocInfoProductName: Red Hat JBoss Enterprise Application Platform :DocInfoProductNameURL: red_hat_jboss_enterprise_application_platform :DocInfoProductNumber: 8.0 @@ -196,9 +196,6 @@ endif::[] :LinkJBDSGettingStarted: https://access.redhat.com/documentation/en-us/red_hat_codeready_studio/{JBDSVersion}/html-single/getting_started_with_codeready_studio_tools/ :JBDSGettingStartedBookName: Getting Started with CodeReady Studio Tools -// Enable Rendering of Glow configuration in plugin examples -:portedToGlow: true - = opentelemetry-tracing: OpenTelemetry Tracing QuickStart :author: Jason Lee :level: Beginner @@ -212,11 +209,7 @@ The `opentelemetry-tracing` quickstart demonstrates the use of the OpenTelemetry :archiveType: war :archiveName: {artifactId} :restoreScriptName: restore-configuration.cli -<<<<<<< HEAD -:portedToGlow: true -======= :helm-install-prerequisites: ../opentelemetry-tracing/helm-install-prerequisites.adoc ->>>>>>> upstream/main == What is it? @@ -986,7 +979,7 @@ For Windows, use the `__{jbossHomeName}__\bin\add-user.bat` script. endif::[] The server provisioning functionality is provided by the WildFly Maven Plugin, and you may find its configuration in the quickstart `pom.xml`: -ifndef::portedToGlow[] + [source,xml,subs="attributes+"] ---- @@ -1019,55 +1012,6 @@ ifndef::portedToGlow[] ---- -endif::portedToGlow[] -ifdef::portedToGlow[] -[source,xml,subs="attributes+"] ----- - - provisioned-server - - - - org.wildfly.plugins - wildfly-maven-plugin - - - ${version.server} - - - ROOT.war - ... - - - - - package - - - - - ... - - - ----- -The plugin uses https://github.com/wildfly/wildfly-glow[WildFly Glow] to discover the feature packs and layers required to run the application, and provisions a server containing those layers. - -[NOTE] -==== -This uses a pre-release of version 5.0.0 of the wildfly-maven-plugin providing the Glow functionality. The version is set in the pom's `pluginManagement` section. -==== - -If you get an error or the server is missing some functionality which cannot be auto-discovered, you can download the https://github.com/wildfly/wildfly-glow/releases/tag[WildFly Glow CLI] and run the following command to see more information about what add-ons are available: - -[source,shell] ----- -wildfly-glow show-add-ons ----- -endif::portedToGlow[] [NOTE] ==== @@ -1251,13 +1195,9 @@ You can use the WildFly JAR Maven plug-in to build a {productName} bootable JAR The quickstart `pom.xml` file contains a Maven profile named *bootable-jar* which configures the bootable JAR building: -<<<<<<< HEAD -ifndef::portedToGlow[] -======= // Render XML Snippet of openshift Maven profile... ifndef::ProductRelease[] // ... for WildFly ->>>>>>> upstream/main [source,xml,subs="attributes+"] ---- @@ -1326,63 +1266,10 @@ ifdef::EAPXPRelease[] ---- -<<<<<<< HEAD -endif::portedToGlow[] -ifdef::portedToGlow[] -[source,xml,subs="attributes+"] ----- - - bootable-jar - - - - org.wildfly.plugins - wildfly-maven-plugin - - - ${version.server} - - true - - ROOT.war - ... - - - - - package - - - - - ... - - - ----- -The plugin uses https://github.com/wildfly/wildfly-glow[WildFly Glow] to discover the feature packs and layers required to run the application, and provisions a server containing those layers. - -[NOTE] -==== -This uses a pre-release of version 5.0.0 of the wildfly-maven-plugin providing the Glow functionality. The version is set in the pom's `pluginManagement` section. -==== - -If you get an error or the server is missing some functionality which cannot be auto-discovered, you can download the https://github.com/wildfly/wildfly-glow/releases/tag[WildFly Glow CLI] and run the following command to see more information about what add-ons are available: - -[source,shell] ----- -wildfly-glow show-add-ons ----- -endif::portedToGlow[] -======= endif::[] endif::[] ->>>>>>> upstream/main .Procedure @@ -1541,14 +1428,9 @@ ifdef::ProductRelease,EAPXPRelease[] The server provisioning functionality is provided by the EAP Maven Plugin, and you may find its configuration in the quickstart `pom.xml`: endif::[] -<<<<<<< HEAD -ifndef::ProductRelease,EAPXPRelease[] -ifndef::portedToGlow[] -======= // Render XML Snippet of openshift Maven profile... ifndef::ProductRelease[] // ... for WildFly ->>>>>>> upstream/main [source,xml,subs="attributes+"] ---- @@ -1583,68 +1465,10 @@ ifndef::ProductRelease[] ---- -<<<<<<< HEAD -You may note that unlike the `provisioned-server` profile it uses the cloud feature pack which enables a configuration tuned for OpenShift environment. -endif::portedToGlow[] -ifdef::portedToGlow[] -[source,xml,subs="attributes+"] ----- - - openshift - - - - org.wildfly.plugins - wildfly-maven-plugin - - - ${version.server} - cloud - - - ROOT.war - ... - - - - - package - - - - - ... - - - ----- -You may note that unlike the `provisioned-server` profile it uses the cloud context which enables a configuration tuned for OpenShift environment. - -The plugin uses https://github.com/wildfly/wildfly-glow[WildFly Glow] to discover the feature packs and layers required to run the application, and provisions a server containing those layers. - -[NOTE] -==== -This uses a pre-release of version 5.0.0 of the wildfly-maven-plugin providing the Glow functionality. The version is set in the pom's `pluginManagement` section. -==== - -If you get an error or the server is missing some functionality which cannot be auto-discovered, you can download the https://github.com/wildfly/wildfly-glow/releases[WildFly Glow CLI] and run the following command to see more information about what add-ons are available: -[source,shell] ----- -wildfly-glow show-add-ons ----- -endif::portedToGlow[] -endif::ProductRelease,EAPXPRelease[] - -ifdef::ProductRelease,EAPXPRelease[] -======= endif::[] ifdef::ProductRelease[] ifndef::EAPXPRelease[] // ... for EAP ->>>>>>> upstream/main [source,xml,subs="attributes+"] ---- @@ -1680,9 +1504,6 @@ ifndef::EAPXPRelease[] ---- -<<<<<<< HEAD -You may note that it uses the cloud feature pack which enables a configuration tuned for OpenShift environment. -======= endif::[] ifdef::EAPXPRelease[] // ... for EAP XP @@ -1736,10 +1557,8 @@ ifdef::EAPXPRelease[] ==== Previous {productName} releases used the WildFly JAR Maven Plugin to package the quickstart in a Bootable JAR, when deploying it on OpenShift, and while that's still supported it's no longer recommended. ==== ->>>>>>> upstream/main endif::[] - :leveloffset: 1 // Getting Started with Helm :leveloffset: +1 @@ -1976,15 +1795,7 @@ ifndef::useHelmChartDir[] ---- build: uri: https://github.com/wildfly/quickstart.git -<<<<<<< HEAD -<<<<<<< HEAD - ref: main -======= - ref: 31.x-glow-preview ->>>>>>> b4ca9a43b66d96aff01d3da9f9714b65b9bb38b0 -======= ref: main ->>>>>>> upstream/main contextDir: opentelemetry-tracing deploy: replicas: 1 diff --git a/remote-helloworld-mdb/README.adoc b/remote-helloworld-mdb/README.adoc index 2f78b5a7b9..bf0a8bd05f 100644 --- a/remote-helloworld-mdb/README.adoc +++ b/remote-helloworld-mdb/README.adoc @@ -66,7 +66,7 @@ ifndef::ProductRelease,EAPXPRelease[] :productImageVersion: 31.0 :githubRepoUrl: https://github.com/wildfly/quickstart/ :githubRepoCodeUrl: https://github.com/wildfly/quickstart.git -:WildFlyQuickStartRepoTag: 31.0.0.Final-glow-preview +:WildFlyQuickStartRepoTag: 31.0.0.Final :DocInfoProductName: Red Hat JBoss Enterprise Application Platform :DocInfoProductNameURL: red_hat_jboss_enterprise_application_platform :DocInfoProductNumber: 8.0 @@ -196,15 +196,11 @@ endif::[] :LinkJBDSGettingStarted: https://access.redhat.com/documentation/en-us/red_hat_codeready_studio/{JBDSVersion}/html-single/getting_started_with_codeready_studio_tools/ :JBDSGettingStartedBookName: Getting Started with CodeReady Studio Tools -// Enable Rendering of Glow configuration in plugin examples -:portedToGlow: true - = remote-helloworld-mdb: Helloworld Using an MDB (Message-Driven Bean) and a Remote Artemis broker :author: Serge Pagop, Andy Taylor, Jeff Mesnil :level: Intermediate :technologies: JMS, EJB, MDB :openshift: true -:portedToGlow: true :standalone-server-type: full :archiveType: war @@ -787,7 +783,7 @@ For Windows, use the `__{jbossHomeName}__\bin\add-user.bat` script. endif::[] The server provisioning functionality is provided by the WildFly Maven Plugin, and you may find its configuration in the quickstart `pom.xml`: -ifndef::portedToGlow[] + [source,xml,subs="attributes+"] ---- @@ -820,55 +816,6 @@ ifndef::portedToGlow[] ---- -endif::portedToGlow[] -ifdef::portedToGlow[] -[source,xml,subs="attributes+"] ----- - - provisioned-server - - - - org.wildfly.plugins - wildfly-maven-plugin - - - ${version.server} - - - ROOT.war - ... - - - - - package - - - - - ... - - - ----- -The plugin uses https://github.com/wildfly/wildfly-glow[WildFly Glow] to discover the feature packs and layers required to run the application, and provisions a server containing those layers. - -[NOTE] -==== -This uses a pre-release of version 5.0.0 of the wildfly-maven-plugin providing the Glow functionality. The version is set in the pom's `pluginManagement` section. -==== - -If you get an error or the server is missing some functionality which cannot be auto-discovered, you can download the https://github.com/wildfly/wildfly-glow/releases/tag[WildFly Glow CLI] and run the following command to see more information about what add-ons are available: - -[source,shell] ----- -wildfly-glow show-add-ons ----- -endif::portedToGlow[] [NOTE] ==== @@ -1067,14 +1014,9 @@ ifdef::ProductRelease,EAPXPRelease[] The server provisioning functionality is provided by the EAP Maven Plugin, and you may find its configuration in the quickstart `pom.xml`: endif::[] -<<<<<<< HEAD -ifndef::ProductRelease,EAPXPRelease[] -ifndef::portedToGlow[] -======= // Render XML Snippet of openshift Maven profile... ifndef::ProductRelease[] // ... for WildFly ->>>>>>> upstream/main [source,xml,subs="attributes+"] ---- @@ -1109,68 +1051,10 @@ ifndef::ProductRelease[] ---- -<<<<<<< HEAD -You may note that unlike the `provisioned-server` profile it uses the cloud feature pack which enables a configuration tuned for OpenShift environment. -endif::portedToGlow[] -ifdef::portedToGlow[] -[source,xml,subs="attributes+"] ----- - - openshift - - - - org.wildfly.plugins - wildfly-maven-plugin - - - ${version.server} - cloud - - - ROOT.war - ... - - - - - package - - - - - ... - - - ----- -You may note that unlike the `provisioned-server` profile it uses the cloud context which enables a configuration tuned for OpenShift environment. - -The plugin uses https://github.com/wildfly/wildfly-glow[WildFly Glow] to discover the feature packs and layers required to run the application, and provisions a server containing those layers. - -[NOTE] -==== -This uses a pre-release of version 5.0.0 of the wildfly-maven-plugin providing the Glow functionality. The version is set in the pom's `pluginManagement` section. -==== - -If you get an error or the server is missing some functionality which cannot be auto-discovered, you can download the https://github.com/wildfly/wildfly-glow/releases[WildFly Glow CLI] and run the following command to see more information about what add-ons are available: -[source,shell] ----- -wildfly-glow show-add-ons ----- -endif::portedToGlow[] -endif::ProductRelease,EAPXPRelease[] - -ifdef::ProductRelease,EAPXPRelease[] -======= endif::[] ifdef::ProductRelease[] ifndef::EAPXPRelease[] // ... for EAP ->>>>>>> upstream/main [source,xml,subs="attributes+"] ---- @@ -1206,9 +1090,6 @@ ifndef::EAPXPRelease[] ---- -<<<<<<< HEAD -You may note that it uses the cloud feature pack which enables a configuration tuned for OpenShift environment. -======= endif::[] ifdef::EAPXPRelease[] // ... for EAP XP @@ -1262,10 +1143,8 @@ ifdef::EAPXPRelease[] ==== Previous {productName} releases used the WildFly JAR Maven Plugin to package the quickstart in a Bootable JAR, when deploying it on OpenShift, and while that's still supported it's no longer recommended. ==== ->>>>>>> upstream/main endif::[] - :leveloffset: 1 // Getting Started with Helm :leveloffset: +1 @@ -1371,11 +1250,7 @@ ifndef::useHelmChartDir[] ---- build: uri: https://github.com/wildfly/quickstart.git -<<<<<<< HEAD - ref: 31.x-glow-preview -======= ref: main ->>>>>>> upstream/main contextDir: remote-helloworld-mdb deploy: replicas: 1 @@ -1517,14 +1392,9 @@ ifdef::ProductRelease,EAPXPRelease[] The server provisioning functionality is provided by the EAP Maven Plugin, and you may find its configuration in the quickstart `pom.xml`: endif::[] -<<<<<<< HEAD -ifndef::ProductRelease,EAPXPRelease[] -ifndef::portedToGlow[] -======= // Render XML Snippet of openshift Maven profile... ifndef::ProductRelease[] // ... for WildFly ->>>>>>> upstream/main [source,xml,subs="attributes+"] ---- @@ -1559,68 +1429,10 @@ ifndef::ProductRelease[] ---- -<<<<<<< HEAD -You may note that unlike the `provisioned-server` profile it uses the cloud feature pack which enables a configuration tuned for OpenShift environment. -endif::portedToGlow[] -ifdef::portedToGlow[] -[source,xml,subs="attributes+"] ----- - - openshift - - - - org.wildfly.plugins - wildfly-maven-plugin - - - ${version.server} - cloud - - - ROOT.war - ... - - - - - package - - - - - ... - - - ----- -You may note that unlike the `provisioned-server` profile it uses the cloud context which enables a configuration tuned for OpenShift environment. - -The plugin uses https://github.com/wildfly/wildfly-glow[WildFly Glow] to discover the feature packs and layers required to run the application, and provisions a server containing those layers. - -[NOTE] -==== -This uses a pre-release of version 5.0.0 of the wildfly-maven-plugin providing the Glow functionality. The version is set in the pom's `pluginManagement` section. -==== - -If you get an error or the server is missing some functionality which cannot be auto-discovered, you can download the https://github.com/wildfly/wildfly-glow/releases[WildFly Glow CLI] and run the following command to see more information about what add-ons are available: -[source,shell] ----- -wildfly-glow show-add-ons ----- -endif::portedToGlow[] -endif::ProductRelease,EAPXPRelease[] - -ifdef::ProductRelease,EAPXPRelease[] -======= endif::[] ifdef::ProductRelease[] ifndef::EAPXPRelease[] // ... for EAP ->>>>>>> upstream/main [source,xml,subs="attributes+"] ---- @@ -1656,9 +1468,6 @@ ifndef::EAPXPRelease[] ---- -<<<<<<< HEAD -You may note that it uses the cloud feature pack which enables a configuration tuned for OpenShift environment. -======= endif::[] ifdef::EAPXPRelease[] // ... for EAP XP @@ -1712,10 +1521,8 @@ ifdef::EAPXPRelease[] ==== Previous {productName} releases used the WildFly JAR Maven Plugin to package the quickstart in a Bootable JAR, when deploying it on OpenShift, and while that's still supported it's no longer recommended. ==== ->>>>>>> upstream/main endif::[] - :leveloffset: 1 // Getting Started with Helm :leveloffset: +1 @@ -1821,11 +1628,7 @@ ifndef::useHelmChartDir[] ---- build: uri: https://github.com/wildfly/quickstart.git -<<<<<<< HEAD - ref: 31.x-glow-preview -======= ref: main ->>>>>>> upstream/main contextDir: remote-helloworld-mdb deploy: replicas: 1 diff --git a/security-domain-to-domain/README.adoc b/security-domain-to-domain/README.adoc index c7ce4ca033..5c980a9fa5 100644 --- a/security-domain-to-domain/README.adoc +++ b/security-domain-to-domain/README.adoc @@ -66,7 +66,7 @@ ifndef::ProductRelease,EAPXPRelease[] :productImageVersion: 31.0 :githubRepoUrl: https://github.com/wildfly/quickstart/ :githubRepoCodeUrl: https://github.com/wildfly/quickstart.git -:WildFlyQuickStartRepoTag: 31.0.0.Final-glow-preview +:WildFlyQuickStartRepoTag: 31.0.0.Final :DocInfoProductName: Red Hat JBoss Enterprise Application Platform :DocInfoProductNameURL: red_hat_jboss_enterprise_application_platform :DocInfoProductNumber: 8.0 @@ -196,9 +196,6 @@ endif::[] :LinkJBDSGettingStarted: https://access.redhat.com/documentation/en-us/red_hat_codeready_studio/{JBDSVersion}/html-single/getting_started_with_codeready_studio_tools/ :JBDSGettingStartedBookName: Getting Started with CodeReady Studio Tools -// Enable Rendering of Glow configuration in plugin examples -:portedToGlow: true - = security-domain-to-domain: Identity propagation to an EJB using different security domains :author: Darran Lofthouse :level: Advanced diff --git a/servlet-async/README.adoc b/servlet-async/README.adoc index d8dccc8f66..74354d199d 100644 --- a/servlet-async/README.adoc +++ b/servlet-async/README.adoc @@ -66,7 +66,7 @@ ifndef::ProductRelease,EAPXPRelease[] :productImageVersion: 31.0 :githubRepoUrl: https://github.com/wildfly/quickstart/ :githubRepoCodeUrl: https://github.com/wildfly/quickstart.git -:WildFlyQuickStartRepoTag: 31.0.0.Final-glow-preview +:WildFlyQuickStartRepoTag: 31.0.0.Final :DocInfoProductName: Red Hat JBoss Enterprise Application Platform :DocInfoProductNameURL: red_hat_jboss_enterprise_application_platform :DocInfoProductNumber: 8.0 @@ -196,15 +196,11 @@ endif::[] :LinkJBDSGettingStarted: https://access.redhat.com/documentation/en-us/red_hat_codeready_studio/{JBDSVersion}/html-single/getting_started_with_codeready_studio_tools/ :JBDSGettingStartedBookName: Getting Started with CodeReady Studio Tools -// Enable Rendering of Glow configuration in plugin examples -:portedToGlow: true - = servlet-async: How to Write an Asynchronous Servlet :author: Christian Sadilek :level: Intermediate :technologies: Asynchronous Servlet, CDI, EJB :openshift: true -:portedToGlow: true [abstract] The `servlet-async` quickstart demonstrates how to use asynchronous servlets to detach long-running tasks and free up the request processing thread. @@ -609,7 +605,7 @@ For Windows, use the `__{jbossHomeName}__\bin\add-user.bat` script. endif::[] The server provisioning functionality is provided by the WildFly Maven Plugin, and you may find its configuration in the quickstart `pom.xml`: -ifndef::portedToGlow[] + [source,xml,subs="attributes+"] ---- @@ -642,55 +638,6 @@ ifndef::portedToGlow[] ---- -endif::portedToGlow[] -ifdef::portedToGlow[] -[source,xml,subs="attributes+"] ----- - - provisioned-server - - - - org.wildfly.plugins - wildfly-maven-plugin - - - ${version.server} - - - ROOT.war - ... - - - - - package - - - - - ... - - - ----- -The plugin uses https://github.com/wildfly/wildfly-glow[WildFly Glow] to discover the feature packs and layers required to run the application, and provisions a server containing those layers. - -[NOTE] -==== -This uses a pre-release of version 5.0.0 of the wildfly-maven-plugin providing the Glow functionality. The version is set in the pom's `pluginManagement` section. -==== - -If you get an error or the server is missing some functionality which cannot be auto-discovered, you can download the https://github.com/wildfly/wildfly-glow/releases/tag[WildFly Glow CLI] and run the following command to see more information about what add-ons are available: - -[source,shell] ----- -wildfly-glow show-add-ons ----- -endif::portedToGlow[] [NOTE] ==== @@ -887,14 +834,9 @@ ifdef::ProductRelease,EAPXPRelease[] The server provisioning functionality is provided by the EAP Maven Plugin, and you may find its configuration in the quickstart `pom.xml`: endif::[] -<<<<<<< HEAD -ifndef::ProductRelease,EAPXPRelease[] -ifndef::portedToGlow[] -======= // Render XML Snippet of openshift Maven profile... ifndef::ProductRelease[] // ... for WildFly ->>>>>>> upstream/main [source,xml,subs="attributes+"] ---- @@ -929,68 +871,10 @@ ifndef::ProductRelease[] ---- -<<<<<<< HEAD -You may note that unlike the `provisioned-server` profile it uses the cloud feature pack which enables a configuration tuned for OpenShift environment. -endif::portedToGlow[] -ifdef::portedToGlow[] -[source,xml,subs="attributes+"] ----- - - openshift - - - - org.wildfly.plugins - wildfly-maven-plugin - - - ${version.server} - cloud - - - ROOT.war - ... - - - - - package - - - - - ... - - - ----- -You may note that unlike the `provisioned-server` profile it uses the cloud context which enables a configuration tuned for OpenShift environment. - -The plugin uses https://github.com/wildfly/wildfly-glow[WildFly Glow] to discover the feature packs and layers required to run the application, and provisions a server containing those layers. - -[NOTE] -==== -This uses a pre-release of version 5.0.0 of the wildfly-maven-plugin providing the Glow functionality. The version is set in the pom's `pluginManagement` section. -==== - -If you get an error or the server is missing some functionality which cannot be auto-discovered, you can download the https://github.com/wildfly/wildfly-glow/releases[WildFly Glow CLI] and run the following command to see more information about what add-ons are available: -[source,shell] ----- -wildfly-glow show-add-ons ----- -endif::portedToGlow[] -endif::ProductRelease,EAPXPRelease[] - -ifdef::ProductRelease,EAPXPRelease[] -======= endif::[] ifdef::ProductRelease[] ifndef::EAPXPRelease[] // ... for EAP ->>>>>>> upstream/main [source,xml,subs="attributes+"] ---- @@ -1026,9 +910,6 @@ ifndef::EAPXPRelease[] ---- -<<<<<<< HEAD -You may note that it uses the cloud feature pack which enables a configuration tuned for OpenShift environment. -======= endif::[] ifdef::EAPXPRelease[] // ... for EAP XP @@ -1082,10 +963,8 @@ ifdef::EAPXPRelease[] ==== Previous {productName} releases used the WildFly JAR Maven Plugin to package the quickstart in a Bootable JAR, when deploying it on OpenShift, and while that's still supported it's no longer recommended. ==== ->>>>>>> upstream/main endif::[] - :leveloffset: 1 // Getting Started with Helm :leveloffset: +1 @@ -1191,11 +1070,7 @@ ifndef::useHelmChartDir[] ---- build: uri: https://github.com/wildfly/quickstart.git -<<<<<<< HEAD - ref: 31.x-glow-preview -======= ref: main ->>>>>>> upstream/main contextDir: servlet-async deploy: replicas: 2 diff --git a/servlet-filterlistener/README.adoc b/servlet-filterlistener/README.adoc index 89af9eee10..8bbe65db63 100644 --- a/servlet-filterlistener/README.adoc +++ b/servlet-filterlistener/README.adoc @@ -66,7 +66,7 @@ ifndef::ProductRelease,EAPXPRelease[] :productImageVersion: 31.0 :githubRepoUrl: https://github.com/wildfly/quickstart/ :githubRepoCodeUrl: https://github.com/wildfly/quickstart.git -:WildFlyQuickStartRepoTag: 31.0.0.Final-glow-preview +:WildFlyQuickStartRepoTag: 31.0.0.Final :DocInfoProductName: Red Hat JBoss Enterprise Application Platform :DocInfoProductNameURL: red_hat_jboss_enterprise_application_platform :DocInfoProductNumber: 8.0 @@ -196,15 +196,11 @@ endif::[] :LinkJBDSGettingStarted: https://access.redhat.com/documentation/en-us/red_hat_codeready_studio/{JBDSVersion}/html-single/getting_started_with_codeready_studio_tools/ :JBDSGettingStartedBookName: Getting Started with CodeReady Studio Tools -// Enable Rendering of Glow configuration in plugin examples -:portedToGlow: true - = servlet-filterlistener: How to Write Servlet Filters and Listeners :author: Jonathan Fuerth :level: Intermediate :technologies: Servlet Filter, Servlet Listener :openshift: true -:portedToGlow: true [abstract] The `servlet-filterlistener` quickstart demonstrates how to use Servlet filters and listeners in an application. @@ -656,7 +652,7 @@ For Windows, use the `__{jbossHomeName}__\bin\add-user.bat` script. endif::[] The server provisioning functionality is provided by the WildFly Maven Plugin, and you may find its configuration in the quickstart `pom.xml`: -ifndef::portedToGlow[] + [source,xml,subs="attributes+"] ---- @@ -689,55 +685,6 @@ ifndef::portedToGlow[] ---- -endif::portedToGlow[] -ifdef::portedToGlow[] -[source,xml,subs="attributes+"] ----- - - provisioned-server - - - - org.wildfly.plugins - wildfly-maven-plugin - - - ${version.server} - - - ROOT.war - ... - - - - - package - - - - - ... - - - ----- -The plugin uses https://github.com/wildfly/wildfly-glow[WildFly Glow] to discover the feature packs and layers required to run the application, and provisions a server containing those layers. - -[NOTE] -==== -This uses a pre-release of version 5.0.0 of the wildfly-maven-plugin providing the Glow functionality. The version is set in the pom's `pluginManagement` section. -==== - -If you get an error or the server is missing some functionality which cannot be auto-discovered, you can download the https://github.com/wildfly/wildfly-glow/releases/tag[WildFly Glow CLI] and run the following command to see more information about what add-ons are available: - -[source,shell] ----- -wildfly-glow show-add-ons ----- -endif::portedToGlow[] [NOTE] ==== @@ -934,14 +881,9 @@ ifdef::ProductRelease,EAPXPRelease[] The server provisioning functionality is provided by the EAP Maven Plugin, and you may find its configuration in the quickstart `pom.xml`: endif::[] -<<<<<<< HEAD -ifndef::ProductRelease,EAPXPRelease[] -ifndef::portedToGlow[] -======= // Render XML Snippet of openshift Maven profile... ifndef::ProductRelease[] // ... for WildFly ->>>>>>> upstream/main [source,xml,subs="attributes+"] ---- @@ -976,68 +918,10 @@ ifndef::ProductRelease[] ---- -<<<<<<< HEAD -You may note that unlike the `provisioned-server` profile it uses the cloud feature pack which enables a configuration tuned for OpenShift environment. -endif::portedToGlow[] -ifdef::portedToGlow[] -[source,xml,subs="attributes+"] ----- - - openshift - - - - org.wildfly.plugins - wildfly-maven-plugin - - - ${version.server} - cloud - - - ROOT.war - ... - - - - - package - - - - - ... - - - ----- -You may note that unlike the `provisioned-server` profile it uses the cloud context which enables a configuration tuned for OpenShift environment. - -The plugin uses https://github.com/wildfly/wildfly-glow[WildFly Glow] to discover the feature packs and layers required to run the application, and provisions a server containing those layers. - -[NOTE] -==== -This uses a pre-release of version 5.0.0 of the wildfly-maven-plugin providing the Glow functionality. The version is set in the pom's `pluginManagement` section. -==== - -If you get an error or the server is missing some functionality which cannot be auto-discovered, you can download the https://github.com/wildfly/wildfly-glow/releases[WildFly Glow CLI] and run the following command to see more information about what add-ons are available: -[source,shell] ----- -wildfly-glow show-add-ons ----- -endif::portedToGlow[] -endif::ProductRelease,EAPXPRelease[] - -ifdef::ProductRelease,EAPXPRelease[] -======= endif::[] ifdef::ProductRelease[] ifndef::EAPXPRelease[] // ... for EAP ->>>>>>> upstream/main [source,xml,subs="attributes+"] ---- @@ -1073,9 +957,6 @@ ifndef::EAPXPRelease[] ---- -<<<<<<< HEAD -You may note that it uses the cloud feature pack which enables a configuration tuned for OpenShift environment. -======= endif::[] ifdef::EAPXPRelease[] // ... for EAP XP @@ -1129,10 +1010,8 @@ ifdef::EAPXPRelease[] ==== Previous {productName} releases used the WildFly JAR Maven Plugin to package the quickstart in a Bootable JAR, when deploying it on OpenShift, and while that's still supported it's no longer recommended. ==== ->>>>>>> upstream/main endif::[] - :leveloffset: 1 // Getting Started with Helm :leveloffset: +1 @@ -1238,11 +1117,7 @@ ifndef::useHelmChartDir[] ---- build: uri: https://github.com/wildfly/quickstart.git -<<<<<<< HEAD - ref: 31.x-glow-preview -======= ref: main ->>>>>>> upstream/main contextDir: servlet-filterlistener deploy: replicas: 2 diff --git a/servlet-security/README.adoc b/servlet-security/README.adoc index 02a31c046c..5acdde5427 100644 --- a/servlet-security/README.adoc +++ b/servlet-security/README.adoc @@ -66,7 +66,7 @@ ifndef::ProductRelease,EAPXPRelease[] :productImageVersion: 31.0 :githubRepoUrl: https://github.com/wildfly/quickstart/ :githubRepoCodeUrl: https://github.com/wildfly/quickstart.git -:WildFlyQuickStartRepoTag: 31.0.0.Final-glow-preview +:WildFlyQuickStartRepoTag: 31.0.0.Final :DocInfoProductName: Red Hat JBoss Enterprise Application Platform :DocInfoProductNameURL: red_hat_jboss_enterprise_application_platform :DocInfoProductNumber: 8.0 @@ -196,15 +196,11 @@ endif::[] :LinkJBDSGettingStarted: https://access.redhat.com/documentation/en-us/red_hat_codeready_studio/{JBDSVersion}/html-single/getting_started_with_codeready_studio_tools/ :JBDSGettingStartedBookName: Getting Started with CodeReady Studio Tools -// Enable Rendering of Glow configuration in plugin examples -:portedToGlow: true - = servlet-security: Using Jakarta EE Declarative Security to Control Servlet Access :author: Sherif F. Makary, Pedro Igor, Stefan Guilhen :level: Intermediate :technologies: Servlet, Security :openshift: true -:portedToGlow: true [abstract] The `servlet-security` quickstart demonstrates the use of Jakarta EE declarative security to control access to Servlets and Security in {productName}. @@ -1000,7 +996,7 @@ For Windows, use the `__{jbossHomeName}__\bin\add-user.bat` script. endif::[] The server provisioning functionality is provided by the WildFly Maven Plugin, and you may find its configuration in the quickstart `pom.xml`: -ifndef::portedToGlow[] + [source,xml,subs="attributes+"] ---- @@ -1033,55 +1029,6 @@ ifndef::portedToGlow[] ---- -endif::portedToGlow[] -ifdef::portedToGlow[] -[source,xml,subs="attributes+"] ----- - - provisioned-server - - - - org.wildfly.plugins - wildfly-maven-plugin - - - ${version.server} - - - ROOT.war - ... - - - - - package - - - - - ... - - - ----- -The plugin uses https://github.com/wildfly/wildfly-glow[WildFly Glow] to discover the feature packs and layers required to run the application, and provisions a server containing those layers. - -[NOTE] -==== -This uses a pre-release of version 5.0.0 of the wildfly-maven-plugin providing the Glow functionality. The version is set in the pom's `pluginManagement` section. -==== - -If you get an error or the server is missing some functionality which cannot be auto-discovered, you can download the https://github.com/wildfly/wildfly-glow/releases/tag[WildFly Glow CLI] and run the following command to see more information about what add-ons are available: - -[source,shell] ----- -wildfly-glow show-add-ons ----- -endif::portedToGlow[] [NOTE] ==== @@ -1278,14 +1225,9 @@ ifdef::ProductRelease,EAPXPRelease[] The server provisioning functionality is provided by the EAP Maven Plugin, and you may find its configuration in the quickstart `pom.xml`: endif::[] -<<<<<<< HEAD -ifndef::ProductRelease,EAPXPRelease[] -ifndef::portedToGlow[] -======= // Render XML Snippet of openshift Maven profile... ifndef::ProductRelease[] // ... for WildFly ->>>>>>> upstream/main [source,xml,subs="attributes+"] ---- @@ -1320,68 +1262,10 @@ ifndef::ProductRelease[] ---- -<<<<<<< HEAD -You may note that unlike the `provisioned-server` profile it uses the cloud feature pack which enables a configuration tuned for OpenShift environment. -endif::portedToGlow[] -ifdef::portedToGlow[] -[source,xml,subs="attributes+"] ----- - - openshift - - - - org.wildfly.plugins - wildfly-maven-plugin - - - ${version.server} - cloud - - - ROOT.war - ... - - - - - package - - - - - ... - - - ----- -You may note that unlike the `provisioned-server` profile it uses the cloud context which enables a configuration tuned for OpenShift environment. - -The plugin uses https://github.com/wildfly/wildfly-glow[WildFly Glow] to discover the feature packs and layers required to run the application, and provisions a server containing those layers. - -[NOTE] -==== -This uses a pre-release of version 5.0.0 of the wildfly-maven-plugin providing the Glow functionality. The version is set in the pom's `pluginManagement` section. -==== - -If you get an error or the server is missing some functionality which cannot be auto-discovered, you can download the https://github.com/wildfly/wildfly-glow/releases[WildFly Glow CLI] and run the following command to see more information about what add-ons are available: -[source,shell] ----- -wildfly-glow show-add-ons ----- -endif::portedToGlow[] -endif::ProductRelease,EAPXPRelease[] - -ifdef::ProductRelease,EAPXPRelease[] -======= endif::[] ifdef::ProductRelease[] ifndef::EAPXPRelease[] // ... for EAP ->>>>>>> upstream/main [source,xml,subs="attributes+"] ---- @@ -1417,9 +1301,6 @@ ifndef::EAPXPRelease[] ---- -<<<<<<< HEAD -You may note that it uses the cloud feature pack which enables a configuration tuned for OpenShift environment. -======= endif::[] ifdef::EAPXPRelease[] // ... for EAP XP @@ -1473,10 +1354,8 @@ ifdef::EAPXPRelease[] ==== Previous {productName} releases used the WildFly JAR Maven Plugin to package the quickstart in a Bootable JAR, when deploying it on OpenShift, and while that's still supported it's no longer recommended. ==== ->>>>>>> upstream/main endif::[] - :leveloffset: 1 // Getting Started with Helm :leveloffset: +1 @@ -1582,11 +1461,7 @@ ifndef::useHelmChartDir[] ---- build: uri: https://github.com/wildfly/quickstart.git -<<<<<<< HEAD - ref: 31.x-glow-preview -======= ref: main ->>>>>>> upstream/main contextDir: servlet-security deploy: replicas: 1 diff --git a/spring-resteasy/README.adoc b/spring-resteasy/README.adoc index 19bca31e6f..8e2196bdf0 100644 --- a/spring-resteasy/README.adoc +++ b/spring-resteasy/README.adoc @@ -66,7 +66,7 @@ ifndef::ProductRelease,EAPXPRelease[] :productImageVersion: 31.0 :githubRepoUrl: https://github.com/wildfly/quickstart/ :githubRepoCodeUrl: https://github.com/wildfly/quickstart.git -:WildFlyQuickStartRepoTag: 31.0.0.Final-glow-preview +:WildFlyQuickStartRepoTag: 31.0.0.Final :DocInfoProductName: Red Hat JBoss Enterprise Application Platform :DocInfoProductNameURL: red_hat_jboss_enterprise_application_platform :DocInfoProductNumber: 8.0 @@ -196,16 +196,12 @@ endif::[] :LinkJBDSGettingStarted: https://access.redhat.com/documentation/en-us/red_hat_codeready_studio/{JBDSVersion}/html-single/getting_started_with_codeready_studio_tools/ :JBDSGettingStartedBookName: Getting Started with CodeReady Studio Tools -// Enable Rendering of Glow configuration in plugin examples -:portedToGlow: true - = spring-resteasy: Example Using Resteasy Spring Integration :author: Weinan Li , Paul Gier :level: Beginner :technologies: Resteasy, Spring :openshift: true :buildRequirements: Java 17 (Java SDK 17) or later and Maven 3.3.1 or later -:portedToGlow: true [abstract] The `spring-resteasy` quickstart demonstrates how to package and deploy a web application that includes resteasy-spring integration. @@ -635,7 +631,7 @@ For Windows, use the `__{jbossHomeName}__\bin\add-user.bat` script. endif::[] The server provisioning functionality is provided by the WildFly Maven Plugin, and you may find its configuration in the quickstart `pom.xml`: -ifndef::portedToGlow[] + [source,xml,subs="attributes+"] ---- @@ -668,55 +664,6 @@ ifndef::portedToGlow[] ---- -endif::portedToGlow[] -ifdef::portedToGlow[] -[source,xml,subs="attributes+"] ----- - - provisioned-server - - - - org.wildfly.plugins - wildfly-maven-plugin - - - ${version.server} - - - ROOT.war - ... - - - - - package - - - - - ... - - - ----- -The plugin uses https://github.com/wildfly/wildfly-glow[WildFly Glow] to discover the feature packs and layers required to run the application, and provisions a server containing those layers. - -[NOTE] -==== -This uses a pre-release of version 5.0.0 of the wildfly-maven-plugin providing the Glow functionality. The version is set in the pom's `pluginManagement` section. -==== - -If you get an error or the server is missing some functionality which cannot be auto-discovered, you can download the https://github.com/wildfly/wildfly-glow/releases/tag[WildFly Glow CLI] and run the following command to see more information about what add-ons are available: - -[source,shell] ----- -wildfly-glow show-add-ons ----- -endif::portedToGlow[] [NOTE] ==== @@ -913,14 +860,9 @@ ifdef::ProductRelease,EAPXPRelease[] The server provisioning functionality is provided by the EAP Maven Plugin, and you may find its configuration in the quickstart `pom.xml`: endif::[] -<<<<<<< HEAD -ifndef::ProductRelease,EAPXPRelease[] -ifndef::portedToGlow[] -======= // Render XML Snippet of openshift Maven profile... ifndef::ProductRelease[] // ... for WildFly ->>>>>>> upstream/main [source,xml,subs="attributes+"] ---- @@ -955,68 +897,10 @@ ifndef::ProductRelease[] ---- -<<<<<<< HEAD -You may note that unlike the `provisioned-server` profile it uses the cloud feature pack which enables a configuration tuned for OpenShift environment. -endif::portedToGlow[] -ifdef::portedToGlow[] -[source,xml,subs="attributes+"] ----- - - openshift - - - - org.wildfly.plugins - wildfly-maven-plugin - - - ${version.server} - cloud - - - ROOT.war - ... - - - - - package - - - - - ... - - - ----- -You may note that unlike the `provisioned-server` profile it uses the cloud context which enables a configuration tuned for OpenShift environment. - -The plugin uses https://github.com/wildfly/wildfly-glow[WildFly Glow] to discover the feature packs and layers required to run the application, and provisions a server containing those layers. - -[NOTE] -==== -This uses a pre-release of version 5.0.0 of the wildfly-maven-plugin providing the Glow functionality. The version is set in the pom's `pluginManagement` section. -==== - -If you get an error or the server is missing some functionality which cannot be auto-discovered, you can download the https://github.com/wildfly/wildfly-glow/releases[WildFly Glow CLI] and run the following command to see more information about what add-ons are available: -[source,shell] ----- -wildfly-glow show-add-ons ----- -endif::portedToGlow[] -endif::ProductRelease,EAPXPRelease[] - -ifdef::ProductRelease,EAPXPRelease[] -======= endif::[] ifdef::ProductRelease[] ifndef::EAPXPRelease[] // ... for EAP ->>>>>>> upstream/main [source,xml,subs="attributes+"] ---- @@ -1052,9 +936,6 @@ ifndef::EAPXPRelease[] ---- -<<<<<<< HEAD -You may note that it uses the cloud feature pack which enables a configuration tuned for OpenShift environment. -======= endif::[] ifdef::EAPXPRelease[] // ... for EAP XP @@ -1108,10 +989,8 @@ ifdef::EAPXPRelease[] ==== Previous {productName} releases used the WildFly JAR Maven Plugin to package the quickstart in a Bootable JAR, when deploying it on OpenShift, and while that's still supported it's no longer recommended. ==== ->>>>>>> upstream/main endif::[] - :leveloffset: 1 // Getting Started with Helm :leveloffset: +1 @@ -1217,11 +1096,7 @@ ifndef::useHelmChartDir[] ---- build: uri: https://github.com/wildfly/quickstart.git -<<<<<<< HEAD - ref: 31.x-glow-preview -======= ref: main ->>>>>>> upstream/main contextDir: spring-resteasy deploy: replicas: 1 diff --git a/tasks-jsf/README.adoc b/tasks-jsf/README.adoc index 3d11a15b13..3f8b3ed21b 100644 --- a/tasks-jsf/README.adoc +++ b/tasks-jsf/README.adoc @@ -66,7 +66,7 @@ ifndef::ProductRelease,EAPXPRelease[] :productImageVersion: 31.0 :githubRepoUrl: https://github.com/wildfly/quickstart/ :githubRepoCodeUrl: https://github.com/wildfly/quickstart.git -:WildFlyQuickStartRepoTag: 31.0.0.Final-glow-preview +:WildFlyQuickStartRepoTag: 31.0.0.Final :DocInfoProductName: Red Hat JBoss Enterprise Application Platform :DocInfoProductNameURL: red_hat_jboss_enterprise_application_platform :DocInfoProductNumber: 8.0 @@ -196,9 +196,6 @@ endif::[] :LinkJBDSGettingStarted: https://access.redhat.com/documentation/en-us/red_hat_codeready_studio/{JBDSVersion}/html-single/getting_started_with_codeready_studio_tools/ :JBDSGettingStartedBookName: Getting Started with CodeReady Studio Tools -// Enable Rendering of Glow configuration in plugin examples -:portedToGlow: true - = tasks-jsf: JSF, JPA quickstart :author: Lukas Fryc :level: Intermediate diff --git a/temperature-converter/README.adoc b/temperature-converter/README.adoc index b0b9c9fb91..86f2ebed57 100644 --- a/temperature-converter/README.adoc +++ b/temperature-converter/README.adoc @@ -66,7 +66,7 @@ ifndef::ProductRelease,EAPXPRelease[] :productImageVersion: 31.0 :githubRepoUrl: https://github.com/wildfly/quickstart/ :githubRepoCodeUrl: https://github.com/wildfly/quickstart.git -:WildFlyQuickStartRepoTag: 31.0.0.Final-glow-preview +:WildFlyQuickStartRepoTag: 31.0.0.Final :DocInfoProductName: Red Hat JBoss Enterprise Application Platform :DocInfoProductNameURL: red_hat_jboss_enterprise_application_platform :DocInfoProductNumber: 8.0 @@ -196,15 +196,11 @@ endif::[] :LinkJBDSGettingStarted: https://access.redhat.com/documentation/en-us/red_hat_codeready_studio/{JBDSVersion}/html-single/getting_started_with_codeready_studio_tools/ :JBDSGettingStartedBookName: Getting Started with CodeReady Studio Tools -// Enable Rendering of Glow configuration in plugin examples -:portedToGlow: true - = temperature-converter: Stateless Session EJB (SLSB) :author: Bruce Wolfe :level: Beginner :technologies: CDI, JSF, SLSB EJB :openshift: true -:portedToGlow: true [abstract] The `temperature-converter` quickstart does temperature conversion using an EJB Stateless Session Bean (SLSB), CDI, and a JSF front-end client. @@ -619,7 +615,7 @@ For Windows, use the `__{jbossHomeName}__\bin\add-user.bat` script. endif::[] The server provisioning functionality is provided by the WildFly Maven Plugin, and you may find its configuration in the quickstart `pom.xml`: -ifndef::portedToGlow[] + [source,xml,subs="attributes+"] ---- @@ -652,55 +648,6 @@ ifndef::portedToGlow[] ---- -endif::portedToGlow[] -ifdef::portedToGlow[] -[source,xml,subs="attributes+"] ----- - - provisioned-server - - - - org.wildfly.plugins - wildfly-maven-plugin - - - ${version.server} - - - ROOT.war - ... - - - - - package - - - - - ... - - - ----- -The plugin uses https://github.com/wildfly/wildfly-glow[WildFly Glow] to discover the feature packs and layers required to run the application, and provisions a server containing those layers. - -[NOTE] -==== -This uses a pre-release of version 5.0.0 of the wildfly-maven-plugin providing the Glow functionality. The version is set in the pom's `pluginManagement` section. -==== - -If you get an error or the server is missing some functionality which cannot be auto-discovered, you can download the https://github.com/wildfly/wildfly-glow/releases/tag[WildFly Glow CLI] and run the following command to see more information about what add-ons are available: - -[source,shell] ----- -wildfly-glow show-add-ons ----- -endif::portedToGlow[] [NOTE] ==== @@ -897,14 +844,9 @@ ifdef::ProductRelease,EAPXPRelease[] The server provisioning functionality is provided by the EAP Maven Plugin, and you may find its configuration in the quickstart `pom.xml`: endif::[] -<<<<<<< HEAD -ifndef::ProductRelease,EAPXPRelease[] -ifndef::portedToGlow[] -======= // Render XML Snippet of openshift Maven profile... ifndef::ProductRelease[] // ... for WildFly ->>>>>>> upstream/main [source,xml,subs="attributes+"] ---- @@ -939,68 +881,10 @@ ifndef::ProductRelease[] ---- -<<<<<<< HEAD -You may note that unlike the `provisioned-server` profile it uses the cloud feature pack which enables a configuration tuned for OpenShift environment. -endif::portedToGlow[] -ifdef::portedToGlow[] -[source,xml,subs="attributes+"] ----- - - openshift - - - - org.wildfly.plugins - wildfly-maven-plugin - - - ${version.server} - cloud - - - ROOT.war - ... - - - - - package - - - - - ... - - - ----- -You may note that unlike the `provisioned-server` profile it uses the cloud context which enables a configuration tuned for OpenShift environment. - -The plugin uses https://github.com/wildfly/wildfly-glow[WildFly Glow] to discover the feature packs and layers required to run the application, and provisions a server containing those layers. - -[NOTE] -==== -This uses a pre-release of version 5.0.0 of the wildfly-maven-plugin providing the Glow functionality. The version is set in the pom's `pluginManagement` section. -==== - -If you get an error or the server is missing some functionality which cannot be auto-discovered, you can download the https://github.com/wildfly/wildfly-glow/releases[WildFly Glow CLI] and run the following command to see more information about what add-ons are available: -[source,shell] ----- -wildfly-glow show-add-ons ----- -endif::portedToGlow[] -endif::ProductRelease,EAPXPRelease[] - -ifdef::ProductRelease,EAPXPRelease[] -======= endif::[] ifdef::ProductRelease[] ifndef::EAPXPRelease[] // ... for EAP ->>>>>>> upstream/main [source,xml,subs="attributes+"] ---- @@ -1036,9 +920,6 @@ ifndef::EAPXPRelease[] ---- -<<<<<<< HEAD -You may note that it uses the cloud feature pack which enables a configuration tuned for OpenShift environment. -======= endif::[] ifdef::EAPXPRelease[] // ... for EAP XP @@ -1092,10 +973,8 @@ ifdef::EAPXPRelease[] ==== Previous {productName} releases used the WildFly JAR Maven Plugin to package the quickstart in a Bootable JAR, when deploying it on OpenShift, and while that's still supported it's no longer recommended. ==== ->>>>>>> upstream/main endif::[] - :leveloffset: 1 // Getting Started with Helm :leveloffset: +1 @@ -1201,11 +1080,7 @@ ifndef::useHelmChartDir[] ---- build: uri: https://github.com/wildfly/quickstart.git -<<<<<<< HEAD - ref: 31.x-glow-preview -======= ref: main ->>>>>>> upstream/main contextDir: temperature-converter deploy: replicas: 1 diff --git a/template/README.adoc b/template/README.adoc index 0691c36709..604be9e01a 100644 --- a/template/README.adoc +++ b/template/README.adoc @@ -66,7 +66,7 @@ ifndef::ProductRelease,EAPXPRelease[] :productImageVersion: 31.0 :githubRepoUrl: https://github.com/wildfly/quickstart/ :githubRepoCodeUrl: https://github.com/wildfly/quickstart.git -:WildFlyQuickStartRepoTag: 31.0.0.Final-glow-preview +:WildFlyQuickStartRepoTag: 31.0.0.Final :DocInfoProductName: Red Hat JBoss Enterprise Application Platform :DocInfoProductNameURL: red_hat_jboss_enterprise_application_platform :DocInfoProductNumber: 8.0 @@ -196,9 +196,6 @@ endif::[] :LinkJBDSGettingStarted: https://access.redhat.com/documentation/en-us/red_hat_codeready_studio/{JBDSVersion}/html-single/getting_started_with_codeready_studio_tools/ :JBDSGettingStartedBookName: Getting Started with CodeReady Studio Tools -// Enable Rendering of Glow configuration in plugin examples -:portedToGlow: true - = How to Structure and Write a Quickstart README.adoc File == Introduction diff --git a/thread-racing/README.adoc b/thread-racing/README.adoc index fd166734db..69848f5643 100644 --- a/thread-racing/README.adoc +++ b/thread-racing/README.adoc @@ -66,7 +66,7 @@ ifndef::ProductRelease,EAPXPRelease[] :productImageVersion: 31.0 :githubRepoUrl: https://github.com/wildfly/quickstart/ :githubRepoCodeUrl: https://github.com/wildfly/quickstart.git -:WildFlyQuickStartRepoTag: 31.0.0.Final-glow-preview +:WildFlyQuickStartRepoTag: 31.0.0.Final :DocInfoProductName: Red Hat JBoss Enterprise Application Platform :DocInfoProductNameURL: red_hat_jboss_enterprise_application_platform :DocInfoProductNumber: 8.0 @@ -196,15 +196,11 @@ endif::[] :LinkJBDSGettingStarted: https://access.redhat.com/documentation/en-us/red_hat_codeready_studio/{JBDSVersion}/html-single/getting_started_with_codeready_studio_tools/ :JBDSGettingStartedBookName: Getting Started with CodeReady Studio Tools -// Enable Rendering of Glow configuration in plugin examples -:portedToGlow: true - = thread-racing: A Jakarta EE thread racing web application :author: Eduardo Martins :level: Beginner :technologies: Batch, CDI, EE Concurrency, JAX-RS, JMS, JPA, JSON, Web Sockets :openshift: true -:portedToGlow: true [abstract] A thread racing web application that demonstrates technologies introduced or updated in the latest Jakarta EE specification. @@ -661,7 +657,7 @@ For Windows, use the `__{jbossHomeName}__\bin\add-user.bat` script. endif::[] The server provisioning functionality is provided by the WildFly Maven Plugin, and you may find its configuration in the quickstart `pom.xml`: -ifndef::portedToGlow[] + [source,xml,subs="attributes+"] ---- @@ -694,55 +690,6 @@ ifndef::portedToGlow[] ---- -endif::portedToGlow[] -ifdef::portedToGlow[] -[source,xml,subs="attributes+"] ----- - - provisioned-server - - - - org.wildfly.plugins - wildfly-maven-plugin - - - ${version.server} - - - ROOT.war - ... - - - - - package - - - - - ... - - - ----- -The plugin uses https://github.com/wildfly/wildfly-glow[WildFly Glow] to discover the feature packs and layers required to run the application, and provisions a server containing those layers. - -[NOTE] -==== -This uses a pre-release of version 5.0.0 of the wildfly-maven-plugin providing the Glow functionality. The version is set in the pom's `pluginManagement` section. -==== - -If you get an error or the server is missing some functionality which cannot be auto-discovered, you can download the https://github.com/wildfly/wildfly-glow/releases/tag[WildFly Glow CLI] and run the following command to see more information about what add-ons are available: - -[source,shell] ----- -wildfly-glow show-add-ons ----- -endif::portedToGlow[] [NOTE] ==== @@ -939,14 +886,9 @@ ifdef::ProductRelease,EAPXPRelease[] The server provisioning functionality is provided by the EAP Maven Plugin, and you may find its configuration in the quickstart `pom.xml`: endif::[] -<<<<<<< HEAD -ifndef::ProductRelease,EAPXPRelease[] -ifndef::portedToGlow[] -======= // Render XML Snippet of openshift Maven profile... ifndef::ProductRelease[] // ... for WildFly ->>>>>>> upstream/main [source,xml,subs="attributes+"] ---- @@ -981,68 +923,10 @@ ifndef::ProductRelease[] ---- -<<<<<<< HEAD -You may note that unlike the `provisioned-server` profile it uses the cloud feature pack which enables a configuration tuned for OpenShift environment. -endif::portedToGlow[] -ifdef::portedToGlow[] -[source,xml,subs="attributes+"] ----- - - openshift - - - - org.wildfly.plugins - wildfly-maven-plugin - - - ${version.server} - cloud - - - ROOT.war - ... - - - - - package - - - - - ... - - - ----- -You may note that unlike the `provisioned-server` profile it uses the cloud context which enables a configuration tuned for OpenShift environment. - -The plugin uses https://github.com/wildfly/wildfly-glow[WildFly Glow] to discover the feature packs and layers required to run the application, and provisions a server containing those layers. - -[NOTE] -==== -This uses a pre-release of version 5.0.0 of the wildfly-maven-plugin providing the Glow functionality. The version is set in the pom's `pluginManagement` section. -==== - -If you get an error or the server is missing some functionality which cannot be auto-discovered, you can download the https://github.com/wildfly/wildfly-glow/releases[WildFly Glow CLI] and run the following command to see more information about what add-ons are available: -[source,shell] ----- -wildfly-glow show-add-ons ----- -endif::portedToGlow[] -endif::ProductRelease,EAPXPRelease[] - -ifdef::ProductRelease,EAPXPRelease[] -======= endif::[] ifdef::ProductRelease[] ifndef::EAPXPRelease[] // ... for EAP ->>>>>>> upstream/main [source,xml,subs="attributes+"] ---- @@ -1078,9 +962,6 @@ ifndef::EAPXPRelease[] ---- -<<<<<<< HEAD -You may note that it uses the cloud feature pack which enables a configuration tuned for OpenShift environment. -======= endif::[] ifdef::EAPXPRelease[] // ... for EAP XP @@ -1134,10 +1015,8 @@ ifdef::EAPXPRelease[] ==== Previous {productName} releases used the WildFly JAR Maven Plugin to package the quickstart in a Bootable JAR, when deploying it on OpenShift, and while that's still supported it's no longer recommended. ==== ->>>>>>> upstream/main endif::[] - :leveloffset: 1 // Getting Started with Helm :leveloffset: +1 @@ -1243,11 +1122,7 @@ ifndef::useHelmChartDir[] ---- build: uri: https://github.com/wildfly/quickstart.git -<<<<<<< HEAD - ref: 31.x-glow-preview -======= ref: main ->>>>>>> upstream/main contextDir: thread-racing deploy: replicas: 1 diff --git a/todo-backend/README.adoc b/todo-backend/README.adoc index 2aac9669ac..5cae7d8e3b 100644 --- a/todo-backend/README.adoc +++ b/todo-backend/README.adoc @@ -66,7 +66,7 @@ ifndef::ProductRelease,EAPXPRelease[] :productImageVersion: 31.0 :githubRepoUrl: https://github.com/wildfly/quickstart/ :githubRepoCodeUrl: https://github.com/wildfly/quickstart.git -:WildFlyQuickStartRepoTag: 31.0.0.Final-glow-preview +:WildFlyQuickStartRepoTag: 31.0.0.Final :DocInfoProductName: Red Hat JBoss Enterprise Application Platform :DocInfoProductNameURL: red_hat_jboss_enterprise_application_platform :DocInfoProductNumber: 8.0 @@ -196,9 +196,6 @@ endif::[] :LinkJBDSGettingStarted: https://access.redhat.com/documentation/en-us/red_hat_codeready_studio/{JBDSVersion}/html-single/getting_started_with_codeready_studio_tools/ :JBDSGettingStartedBookName: Getting Started with CodeReady Studio Tools -// Enable Rendering of Glow configuration in plugin examples -:portedToGlow: true - = todo-backend: quickstart for backend deployment on OpenShift :toc: left :icons: font @@ -211,7 +208,6 @@ endif::[] :archiveType: war :useHelmChartDir: true :helm-install-prerequisites: ../todo-backend/helm-install-prerequisites.adoc -:portedToGlow: true [abstract] The `todo-backend` quickstart demonstrates how to implement a backend that exposes a HTTP API with JAX-RS @@ -619,14 +615,9 @@ ifdef::ProductRelease,EAPXPRelease[] The server provisioning functionality is provided by the EAP Maven Plugin, and you may find its configuration in the quickstart `pom.xml`: endif::[] -<<<<<<< HEAD -ifndef::ProductRelease,EAPXPRelease[] -ifndef::portedToGlow[] -======= // Render XML Snippet of openshift Maven profile... ifndef::ProductRelease[] // ... for WildFly ->>>>>>> upstream/main [source,xml,subs="attributes+"] ---- @@ -661,68 +652,10 @@ ifndef::ProductRelease[] ---- -<<<<<<< HEAD -You may note that unlike the `provisioned-server` profile it uses the cloud feature pack which enables a configuration tuned for OpenShift environment. -endif::portedToGlow[] -ifdef::portedToGlow[] -[source,xml,subs="attributes+"] ----- - - openshift - - - - org.wildfly.plugins - wildfly-maven-plugin - - - ${version.server} - cloud - - - ROOT.war - ... - - - - - package - - - - - ... - - - ----- -You may note that unlike the `provisioned-server` profile it uses the cloud context which enables a configuration tuned for OpenShift environment. - -The plugin uses https://github.com/wildfly/wildfly-glow[WildFly Glow] to discover the feature packs and layers required to run the application, and provisions a server containing those layers. - -[NOTE] -==== -This uses a pre-release of version 5.0.0 of the wildfly-maven-plugin providing the Glow functionality. The version is set in the pom's `pluginManagement` section. -==== - -If you get an error or the server is missing some functionality which cannot be auto-discovered, you can download the https://github.com/wildfly/wildfly-glow/releases[WildFly Glow CLI] and run the following command to see more information about what add-ons are available: -[source,shell] ----- -wildfly-glow show-add-ons ----- -endif::portedToGlow[] -endif::ProductRelease,EAPXPRelease[] - -ifdef::ProductRelease,EAPXPRelease[] -======= endif::[] ifdef::ProductRelease[] ifndef::EAPXPRelease[] // ... for EAP ->>>>>>> upstream/main [source,xml,subs="attributes+"] ---- @@ -758,9 +691,6 @@ ifndef::EAPXPRelease[] ---- -<<<<<<< HEAD -You may note that it uses the cloud feature pack which enables a configuration tuned for OpenShift environment. -======= endif::[] ifdef::EAPXPRelease[] // ... for EAP XP @@ -814,10 +744,8 @@ ifdef::EAPXPRelease[] ==== Previous {productName} releases used the WildFly JAR Maven Plugin to package the quickstart in a Bootable JAR, when deploying it on OpenShift, and while that's still supported it's no longer recommended. ==== ->>>>>>> upstream/main endif::[] - :leveloffset: 1 // Getting Started with Helm :leveloffset: +1 diff --git a/websocket-endpoint/README.adoc b/websocket-endpoint/README.adoc index 9a711a41c3..9de58cee9d 100644 --- a/websocket-endpoint/README.adoc +++ b/websocket-endpoint/README.adoc @@ -66,7 +66,7 @@ ifndef::ProductRelease,EAPXPRelease[] :productImageVersion: 31.0 :githubRepoUrl: https://github.com/wildfly/quickstart/ :githubRepoCodeUrl: https://github.com/wildfly/quickstart.git -:WildFlyQuickStartRepoTag: 31.0.0.Final-glow-preview +:WildFlyQuickStartRepoTag: 31.0.0.Final :DocInfoProductName: Red Hat JBoss Enterprise Application Platform :DocInfoProductNameURL: red_hat_jboss_enterprise_application_platform :DocInfoProductNumber: 8.0 @@ -196,15 +196,11 @@ endif::[] :LinkJBDSGettingStarted: https://access.redhat.com/documentation/en-us/red_hat_codeready_studio/{JBDSVersion}/html-single/getting_started_with_codeready_studio_tools/ :JBDSGettingStartedBookName: Getting Started with CodeReady Studio Tools -// Enable Rendering of Glow configuration in plugin examples -:portedToGlow: true - = websocket-endpoint: Web application using WebSockets and JSON-P :author: Rafael Benevides :level: Beginner :technologies: CDI, WebSocket, JSON-P :openshift: true -:portedToGlow: true [abstract] Shows how to use WebSockets with JSON to broadcast information to all open WebSocket sessions in {productName}. @@ -617,7 +613,7 @@ For Windows, use the `__{jbossHomeName}__\bin\add-user.bat` script. endif::[] The server provisioning functionality is provided by the WildFly Maven Plugin, and you may find its configuration in the quickstart `pom.xml`: -ifndef::portedToGlow[] + [source,xml,subs="attributes+"] ---- @@ -650,55 +646,6 @@ ifndef::portedToGlow[] ---- -endif::portedToGlow[] -ifdef::portedToGlow[] -[source,xml,subs="attributes+"] ----- - - provisioned-server - - - - org.wildfly.plugins - wildfly-maven-plugin - - - ${version.server} - - - ROOT.war - ... - - - - - package - - - - - ... - - - ----- -The plugin uses https://github.com/wildfly/wildfly-glow[WildFly Glow] to discover the feature packs and layers required to run the application, and provisions a server containing those layers. - -[NOTE] -==== -This uses a pre-release of version 5.0.0 of the wildfly-maven-plugin providing the Glow functionality. The version is set in the pom's `pluginManagement` section. -==== - -If you get an error or the server is missing some functionality which cannot be auto-discovered, you can download the https://github.com/wildfly/wildfly-glow/releases/tag[WildFly Glow CLI] and run the following command to see more information about what add-ons are available: - -[source,shell] ----- -wildfly-glow show-add-ons ----- -endif::portedToGlow[] [NOTE] ==== @@ -895,14 +842,9 @@ ifdef::ProductRelease,EAPXPRelease[] The server provisioning functionality is provided by the EAP Maven Plugin, and you may find its configuration in the quickstart `pom.xml`: endif::[] -<<<<<<< HEAD -ifndef::ProductRelease,EAPXPRelease[] -ifndef::portedToGlow[] -======= // Render XML Snippet of openshift Maven profile... ifndef::ProductRelease[] // ... for WildFly ->>>>>>> upstream/main [source,xml,subs="attributes+"] ---- @@ -937,68 +879,10 @@ ifndef::ProductRelease[] ---- -<<<<<<< HEAD -You may note that unlike the `provisioned-server` profile it uses the cloud feature pack which enables a configuration tuned for OpenShift environment. -endif::portedToGlow[] -ifdef::portedToGlow[] -[source,xml,subs="attributes+"] ----- - - openshift - - - - org.wildfly.plugins - wildfly-maven-plugin - - - ${version.server} - cloud - - - ROOT.war - ... - - - - - package - - - - - ... - - - ----- -You may note that unlike the `provisioned-server` profile it uses the cloud context which enables a configuration tuned for OpenShift environment. - -The plugin uses https://github.com/wildfly/wildfly-glow[WildFly Glow] to discover the feature packs and layers required to run the application, and provisions a server containing those layers. - -[NOTE] -==== -This uses a pre-release of version 5.0.0 of the wildfly-maven-plugin providing the Glow functionality. The version is set in the pom's `pluginManagement` section. -==== - -If you get an error or the server is missing some functionality which cannot be auto-discovered, you can download the https://github.com/wildfly/wildfly-glow/releases[WildFly Glow CLI] and run the following command to see more information about what add-ons are available: -[source,shell] ----- -wildfly-glow show-add-ons ----- -endif::portedToGlow[] -endif::ProductRelease,EAPXPRelease[] - -ifdef::ProductRelease,EAPXPRelease[] -======= endif::[] ifdef::ProductRelease[] ifndef::EAPXPRelease[] // ... for EAP ->>>>>>> upstream/main [source,xml,subs="attributes+"] ---- @@ -1034,9 +918,6 @@ ifndef::EAPXPRelease[] ---- -<<<<<<< HEAD -You may note that it uses the cloud feature pack which enables a configuration tuned for OpenShift environment. -======= endif::[] ifdef::EAPXPRelease[] // ... for EAP XP @@ -1090,10 +971,8 @@ ifdef::EAPXPRelease[] ==== Previous {productName} releases used the WildFly JAR Maven Plugin to package the quickstart in a Bootable JAR, when deploying it on OpenShift, and while that's still supported it's no longer recommended. ==== ->>>>>>> upstream/main endif::[] - :leveloffset: 1 // Getting Started with Helm :leveloffset: +1 @@ -1199,11 +1078,7 @@ ifndef::useHelmChartDir[] ---- build: uri: https://github.com/wildfly/quickstart.git -<<<<<<< HEAD - ref: 31.x-glow-preview -======= ref: main ->>>>>>> upstream/main contextDir: websocket-endpoint deploy: replicas: 2 diff --git a/websocket-hello/README.adoc b/websocket-hello/README.adoc index 4b00ae3ee9..7fd7b6e9b6 100644 --- a/websocket-hello/README.adoc +++ b/websocket-hello/README.adoc @@ -66,7 +66,7 @@ ifndef::ProductRelease,EAPXPRelease[] :productImageVersion: 31.0 :githubRepoUrl: https://github.com/wildfly/quickstart/ :githubRepoCodeUrl: https://github.com/wildfly/quickstart.git -:WildFlyQuickStartRepoTag: 31.0.0.Final-glow-preview +:WildFlyQuickStartRepoTag: 31.0.0.Final :DocInfoProductName: Red Hat JBoss Enterprise Application Platform :DocInfoProductNameURL: red_hat_jboss_enterprise_application_platform :DocInfoProductNumber: 8.0 @@ -196,15 +196,11 @@ endif::[] :LinkJBDSGettingStarted: https://access.redhat.com/documentation/en-us/red_hat_codeready_studio/{JBDSVersion}/html-single/getting_started_with_codeready_studio_tools/ :JBDSGettingStartedBookName: Getting Started with CodeReady Studio Tools -// Enable Rendering of Glow configuration in plugin examples -:portedToGlow: true - = websocket-hello: A simple WebSocket application :author: Sande Gilda, Emmanuel Hugonett :level: Beginner :technologies: WebSocket, CDI, JSF :openshift: true -:portedToGlow: true [abstract] The `websocket-hello` quickstart demonstrates how to create a simple WebSocket application. @@ -623,7 +619,7 @@ For Windows, use the `__{jbossHomeName}__\bin\add-user.bat` script. endif::[] The server provisioning functionality is provided by the WildFly Maven Plugin, and you may find its configuration in the quickstart `pom.xml`: -ifndef::portedToGlow[] + [source,xml,subs="attributes+"] ---- @@ -656,55 +652,6 @@ ifndef::portedToGlow[] ---- -endif::portedToGlow[] -ifdef::portedToGlow[] -[source,xml,subs="attributes+"] ----- - - provisioned-server - - - - org.wildfly.plugins - wildfly-maven-plugin - - - ${version.server} - - - ROOT.war - ... - - - - - package - - - - - ... - - - ----- -The plugin uses https://github.com/wildfly/wildfly-glow[WildFly Glow] to discover the feature packs and layers required to run the application, and provisions a server containing those layers. - -[NOTE] -==== -This uses a pre-release of version 5.0.0 of the wildfly-maven-plugin providing the Glow functionality. The version is set in the pom's `pluginManagement` section. -==== - -If you get an error or the server is missing some functionality which cannot be auto-discovered, you can download the https://github.com/wildfly/wildfly-glow/releases/tag[WildFly Glow CLI] and run the following command to see more information about what add-ons are available: - -[source,shell] ----- -wildfly-glow show-add-ons ----- -endif::portedToGlow[] [NOTE] ==== @@ -901,14 +848,9 @@ ifdef::ProductRelease,EAPXPRelease[] The server provisioning functionality is provided by the EAP Maven Plugin, and you may find its configuration in the quickstart `pom.xml`: endif::[] -<<<<<<< HEAD -ifndef::ProductRelease,EAPXPRelease[] -ifndef::portedToGlow[] -======= // Render XML Snippet of openshift Maven profile... ifndef::ProductRelease[] // ... for WildFly ->>>>>>> upstream/main [source,xml,subs="attributes+"] ---- @@ -943,68 +885,10 @@ ifndef::ProductRelease[] ---- -<<<<<<< HEAD -You may note that unlike the `provisioned-server` profile it uses the cloud feature pack which enables a configuration tuned for OpenShift environment. -endif::portedToGlow[] -ifdef::portedToGlow[] -[source,xml,subs="attributes+"] ----- - - openshift - - - - org.wildfly.plugins - wildfly-maven-plugin - - - ${version.server} - cloud - - - ROOT.war - ... - - - - - package - - - - - ... - - - ----- -You may note that unlike the `provisioned-server` profile it uses the cloud context which enables a configuration tuned for OpenShift environment. - -The plugin uses https://github.com/wildfly/wildfly-glow[WildFly Glow] to discover the feature packs and layers required to run the application, and provisions a server containing those layers. - -[NOTE] -==== -This uses a pre-release of version 5.0.0 of the wildfly-maven-plugin providing the Glow functionality. The version is set in the pom's `pluginManagement` section. -==== - -If you get an error or the server is missing some functionality which cannot be auto-discovered, you can download the https://github.com/wildfly/wildfly-glow/releases[WildFly Glow CLI] and run the following command to see more information about what add-ons are available: -[source,shell] ----- -wildfly-glow show-add-ons ----- -endif::portedToGlow[] -endif::ProductRelease,EAPXPRelease[] - -ifdef::ProductRelease,EAPXPRelease[] -======= endif::[] ifdef::ProductRelease[] ifndef::EAPXPRelease[] // ... for EAP ->>>>>>> upstream/main [source,xml,subs="attributes+"] ---- @@ -1040,9 +924,6 @@ ifndef::EAPXPRelease[] ---- -<<<<<<< HEAD -You may note that it uses the cloud feature pack which enables a configuration tuned for OpenShift environment. -======= endif::[] ifdef::EAPXPRelease[] // ... for EAP XP @@ -1096,10 +977,8 @@ ifdef::EAPXPRelease[] ==== Previous {productName} releases used the WildFly JAR Maven Plugin to package the quickstart in a Bootable JAR, when deploying it on OpenShift, and while that's still supported it's no longer recommended. ==== ->>>>>>> upstream/main endif::[] - :leveloffset: 1 // Getting Started with Helm :leveloffset: +1 @@ -1205,11 +1084,7 @@ ifndef::useHelmChartDir[] ---- build: uri: https://github.com/wildfly/quickstart.git -<<<<<<< HEAD - ref: 31.x-glow-preview -======= ref: main ->>>>>>> upstream/main contextDir: websocket-hello deploy: replicas: 2 From 948b472caca5f80a326d9939babcf95753ba3786 Mon Sep 17 00:00:00 2001 From: Kabir Khan Date: Tue, 16 Apr 2024 13:09:59 +0530 Subject: [PATCH 23/26] Fix typo in plugin version --- micrometer/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/micrometer/pom.xml b/micrometer/pom.xml index fd4bbaca2c..7b16714147 100644 --- a/micrometer/pom.xml +++ b/micrometer/pom.xml @@ -26,7 +26,7 @@ ${version.server} ${version.server} - 5.0.0.Finale + 5.0.0.Final From 6696a55149ec73c4fb6b3186fc19286d92a49f7f Mon Sep 17 00:00:00 2001 From: Kabir Khan Date: Tue, 16 Apr 2024 13:33:52 +0530 Subject: [PATCH 24/26] Try to fix the ejb-txn-remote-call tests Copy the meat of the poms from the current upstream/glow-preview branch --- ejb-txn-remote-call/client/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ejb-txn-remote-call/client/pom.xml b/ejb-txn-remote-call/client/pom.xml index 36718575a7..336330df70 100644 --- a/ejb-txn-remote-call/client/pom.xml +++ b/ejb-txn-remote-call/client/pom.xml @@ -348,4 +348,4 @@ - + \ No newline at end of file From 54b647de21ffc6dcc3d42cd933683a3a66b030fe Mon Sep 17 00:00:00 2001 From: Kabir Khan Date: Thu, 25 Apr 2024 10:31:51 +0100 Subject: [PATCH 25/26] Try to move the env vars into pluginManagement --- ejb-txn-remote-call/client/pom.xml | 21 ++++++++++++++------- ejb-txn-remote-call/server/pom.xml | 20 +++++++++++++------- 2 files changed, 27 insertions(+), 14 deletions(-) diff --git a/ejb-txn-remote-call/client/pom.xml b/ejb-txn-remote-call/client/pom.xml index 336330df70..fd5c7f9d3a 100644 --- a/ejb-txn-remote-call/client/pom.xml +++ b/ejb-txn-remote-call/client/pom.xml @@ -190,6 +190,16 @@ org.wildfly.plugins wildfly-maven-plugin ${version.plugin.wildfly} + + + + test + java:jboss/datasources/ejbJtaDs + ${postgresqlUsername} + ${postgresqlPassword} + + + @@ -215,13 +225,10 @@ client.war standalone.xml - - - test - java:jboss/datasources/ejbJtaDs - ${postgresqlUsername} - ${postgresqlPassword} - + diff --git a/ejb-txn-remote-call/server/pom.xml b/ejb-txn-remote-call/server/pom.xml index be794eed82..4cd7b7357e 100644 --- a/ejb-txn-remote-call/server/pom.xml +++ b/ejb-txn-remote-call/server/pom.xml @@ -174,6 +174,15 @@ org.wildfly.plugins wildfly-maven-plugin ${version.plugin.wildfly} + + + + test + java:jboss/datasources/ejbJtaDs + ${postgresqlUsername} + ${postgresqlPassword} + + @@ -201,13 +210,10 @@ server.war standalone-ha.xml - - - test - java:jboss/datasources/ejbJtaDs - ${postgresqlUsername} - ${postgresqlPassword} - + From 8fd8158ee6c029b3e1e6e275b1cb5e548183d387 Mon Sep 17 00:00:00 2001 From: Kabir Khan Date: Thu, 25 Apr 2024 10:32:32 +0100 Subject: [PATCH 26/26] Revert "Try to move the env vars into pluginManagement" This reverts commit 54b647de21ffc6dcc3d42cd933683a3a66b030fe. --- ejb-txn-remote-call/client/pom.xml | 21 +++++++-------------- ejb-txn-remote-call/server/pom.xml | 20 +++++++------------- 2 files changed, 14 insertions(+), 27 deletions(-) diff --git a/ejb-txn-remote-call/client/pom.xml b/ejb-txn-remote-call/client/pom.xml index fd5c7f9d3a..336330df70 100644 --- a/ejb-txn-remote-call/client/pom.xml +++ b/ejb-txn-remote-call/client/pom.xml @@ -190,16 +190,6 @@ org.wildfly.plugins wildfly-maven-plugin ${version.plugin.wildfly} - - - - test - java:jboss/datasources/ejbJtaDs - ${postgresqlUsername} - ${postgresqlPassword} - - - @@ -225,10 +215,13 @@ client.war standalone.xml - + + + test + java:jboss/datasources/ejbJtaDs + ${postgresqlUsername} + ${postgresqlPassword} + diff --git a/ejb-txn-remote-call/server/pom.xml b/ejb-txn-remote-call/server/pom.xml index 4cd7b7357e..be794eed82 100644 --- a/ejb-txn-remote-call/server/pom.xml +++ b/ejb-txn-remote-call/server/pom.xml @@ -174,15 +174,6 @@ org.wildfly.plugins wildfly-maven-plugin ${version.plugin.wildfly} - - - - test - java:jboss/datasources/ejbJtaDs - ${postgresqlUsername} - ${postgresqlPassword} - - @@ -210,10 +201,13 @@ server.war standalone-ha.xml - + + + test + java:jboss/datasources/ejbJtaDs + ${postgresqlUsername} + ${postgresqlPassword} +