Skip to content

Update README.md

Update README.md #109

#
# #%L
# AEM Rules for SonarQube
# %%
# Copyright (C) 2015-2024 VML
# %%
# 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.
# #L%
#
name: Test if SonarQube Server starts up with AEM Rules installed
on: [push]
jobs:
install_aem_rules_with_docker:
runs-on: ubuntu-latest
name: Install AEM Rules on SonarQube with Docker
strategy:
matrix:
sonarqube-image:
- 'sonarqube:9.9-community'
- 'sonarqube:10.7-community'
- 'sonarqube:lts-community'
- 'sonarqube:latest'
fail-fast: false
steps:
# To use this repository's private action,
# you must check out the repository
- name: Checkout
uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
java-version: 11
distribution: 'adopt'
cache: maven
- run: mvn clean package
- name: Get Exectuable name
id: get-executable-name
run: |
AEM_RULES_JAR_NAME=$(mvn -q -Dexec.executable=echo \
-Dexec.args='${project.artifactId}-${project.version}.jar' \
--non-recursive exec:exec)
echo "::set-output name=aem_rules_jar_name::$AEM_RULES_JAR_NAME"
- name: Install AEM Rules on SonarQube Server with Docker
uses: ./.github/actions/test-plugin-installation
with:
sonarqube-base-image: ${{ matrix.sonarqube-image }}
aem-rules-binary: ${{ steps.get-executable-name.outputs.aem_rules_jar_name }}
docker-hub-login: ${{ secrets.DOCKER_HUB_USERNAME }}
docker-hub-token: ${{ secrets.DOCKER_HUB_TOKEN }}