We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent aaf9e7e commit 295ec28Copy full SHA for 295ec28
1 file changed
.github/workflows/maven.yml
@@ -0,0 +1,25 @@
1
+name: jdk21
2
+
3
+on:
4
+ push:
5
+ branches: [ master ]
6
+ pull_request:
7
8
9
+env:
10
+ BUILD_NUMBER: 999999
11
12
+jobs:
13
+ build:
14
15
+ runs-on: ubuntu-latest
16
17
+ steps:
18
+ - uses: actions/checkout@v2
19
+ - name: Set up JDK 21
20
+ uses: actions/setup-java@v1
21
+ with:
22
+ distribution: 'temurin'
23
+ java-version: 21
24
+ - name: Build with Maven
25
+ run: mvn -U -T 1C -Dmaven.javadoc.skip=true -B -V clean package
0 commit comments