From b3f7331adeb5192b40a1b1995543ac15322206f3 Mon Sep 17 00:00:00 2001 From: Valery Semenchuk Date: Fri, 9 Aug 2024 14:56:09 +0400 Subject: [PATCH] Create maven.yml --- .github/workflows/maven.yml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 .github/workflows/maven.yml diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml new file mode 100644 index 0000000..a666fa4 --- /dev/null +++ b/.github/workflows/maven.yml @@ -0,0 +1,25 @@ +name: jdk21 + +on: + push: + branches: [ master ] + pull_request: + branches: [ master ] + +env: + BUILD_NUMBER: 999999 + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v2 + - name: Set up JDK 21 + uses: actions/setup-java@v1 + with: + distribution: 'temurin' + java-version: 21 + - name: Build with Maven + run: mvn -U -T 1C -Dmaven.javadoc.skip=true -B -V clean package