We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fe73540 commit d854efcCopy full SHA for d854efc
.github/workflows/maven-pkg-all.yml
@@ -0,0 +1,30 @@
1
+# This workflow will build all Java packages in this project with Maven (Java 8)
2
+
3
+name: Java CI with Maven
4
5
+on:
6
+ push:
7
+ branches: [ master ]
8
+ pull_request:
9
+ branches: [ '*' ]
10
11
+jobs:
12
+ build:
13
14
+ runs-on: ubuntu-latest
15
16
+ steps:
17
+ - uses: actions/checkout@v2
18
+ - name: Set up JDK 1.8
19
+ uses: actions/setup-java@v1
20
+ with:
21
+ java-version: 1.8
22
23
+ - name: Build core with Maven
24
+ run: mvn -B package --file aws-lambda-java-core/pom.xml
25
+ - name: Build events with Maven
26
+ run: mvn -B package --file aws-lambda-java-events/pom.xml
27
+ - name: Build log4j with Maven
28
+ run: mvn -B package --file aws-lambda-java-log4j/pom.xml
29
+ - name: Build log4j2 with Maven
30
+ run: mvn -B package --file aws-lambda-java-log4j2/pom.xml
0 commit comments