We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7ef1338 commit 937b553Copy full SHA for 937b553
.github/workflows/maven-pkg-all.yml renamed to .github/workflows/maven-build-all.yml
@@ -19,11 +19,14 @@ jobs:
19
uses: actions/setup-java@v1
20
with:
21
java-version: 1.8
22
-
+
23
+ # Install base modules
24
- name: Build core with Maven
- run: mvn -B package --file aws-lambda-java-core/pom.xml
25
+ run: mvn -B install --file aws-lambda-java-core/pom.xml
26
- name: Build events with Maven
- run: mvn -B package --file aws-lambda-java-events/pom.xml
27
+ run: mvn -B install --file aws-lambda-java-events/pom.xml
28
29
+ # Package modules that depend on base modules
30
- name: Build events-sdk-transformer with Maven
31
run: mvn -B package --file aws-lambda-java-events-sdk-transformer/pom.xml
32
- name: Build log4j with Maven
0 commit comments