We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b2e9fde commit b257bc7Copy full SHA for b257bc7
.github/workflows/gradle.yml
.github/workflows/maven.yml
@@ -0,0 +1,23 @@
1
+name: Java CI with Maven
2
+
3
+on: [push, pull_request]
4
5
+jobs:
6
+ build:
7
8
+ runs-on: ubuntu-latest
9
10
+ steps:
11
+ - uses: actions/checkout@v3
12
+ - name: Set up JDK 8
13
+ uses: actions/setup-java@v3
14
+ with:
15
+ java-version: '8'
16
+ distribution: 'temurin'
17
+ cache: maven
18
+ - name: Build with Maven
19
+ run: mvn -B package --file pom.xml
20
21
+ # Optional: Uploads the full dependency graph to GitHub to improve the quality of Dependabot alerts this repository can receive
22
+ - name: Update dependency graph
23
+ uses: advanced-security/maven-dependency-submission-action@571e99aab1055c2e71a1e2309b9691de18d6b7d6
0 commit comments