Skip to content

Commit 295ec28

Browse files
authored
Create maven.yml
1 parent aaf9e7e commit 295ec28

1 file changed

Lines changed: 25 additions & 0 deletions

File tree

.github/workflows/maven.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: jdk21
2+
3+
on:
4+
push:
5+
branches: [ master ]
6+
pull_request:
7+
branches: [ master ]
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

Comments
 (0)