updated list of projects #12
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Java CI with Maven | |
on: [push, pull_request] | |
env: | |
SONATYPE_LIFECYCLE_APPLICATION_ID : ${{ github.head_ref || github.ref_name }} | |
# SONATYPE_LIFECYCLE_APPLICATION_ID: $(echo "${{ github.repository }}" | cut -d '/' -f2) | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Benchmark java | |
uses: actions/checkout@master | |
with: | |
repository: OWASP-Benchmark/BenchmarkJava | |
- name: Set up JDK 11 | |
uses: actions/setup-java@v4 | |
with: | |
java-version: '11' | |
distribution: 'zulu' | |
- name: Create WAR | |
run: mvn clean package | |
- name: Sonatype Lifecycle Policy Evaluation | |
uses: sonatype-nexus-community/iq-github-action@v2 | |
with: | |
serverUrl: ${{ secrets.SONATYPE_LIFECYCLE_URL }} | |
username: ${{ secrets.SONATYPE_LIFECYCLE_USERNAME }} | |
password: ${{ secrets.SONATYPE_LIFECYCLE_PASSWORD }} | |
applicationId: ${{ env.SONATYPE_LIFECYCLE_APPLICATION_ID }} | |
stage: Build | |
target: ./target/ | |