Define artifact group ID in properties file to make it available to Nexus publish plugin #32
Workflow file for this run
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: 'Verify' | |
on: | |
push: | |
branches-ignore: | |
- gh-pages | |
pull_request: | |
branches: | |
- '*' | |
jobs: | |
build-and-verify: | |
runs-on: 'ubuntu-latest' | |
steps: | |
- uses: actions/checkout@v4 | |
- name: 'Set up JDK 8' | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'temurin' | |
java-version: 8 | |
- name: 'Set up JDK 21' | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'temurin' | |
java-version: 21 | |
- name: 'Setup Gradle' | |
uses: gradle/gradle-build-action@v3 | |
- name: 'Build' | |
run: ./gradlew build |