Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Update dependencies versions, add script to test multi-platform jars
  • Loading branch information
Alexander Smirnov committed Dec 1, 2023
commit 699c995c74508ee21a9af6466f030498e08b1381
2 changes: 1 addition & 1 deletion aws-lambda-java-events-sdk-transformer/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-lambda-java-events</artifactId>
<version>3.11.2</version>
<version>3.11.4</version>
<scope>provided</scope>
</dependency>

Expand Down
2 changes: 1 addition & 1 deletion aws-lambda-java-runtime-interface-client/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-lambda-java-serialization</artifactId>
<version>1.1.2</version>
<version>1.1.5</version>
</dependency>

<dependency>
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
#!/bin/bash

set -e

projectVersion="2.4.1"

# test uber jar
mvn -B -X \
dependency:get \
-Dartifact=com.amazonaws:aws-lambda-java-runtime-interface-client:${projectVersion} \
-Dtransitive=false


PLATFORM_ARRAY=("linux-x86_64" "linux_musl-x86_64" "linux-aarch_64" "linux_musl-aarch_64")

for classifier in "${PLATFORM_ARRAY[@]}"; do
# Test platform specific jar
mvn -B \
dependency:get \
-Dartifact=com.amazonaws:aws-lambda-java-runtime-interface-client:${projectVersion}:jar:${classifier} \
-Dtransitive=false
done
2 changes: 1 addition & 1 deletion samples/kinesis-firehose-event-handler/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-lambda-java-events</artifactId>
<version>3.11.3</version>
<version>3.11.4</version>
</dependency>

<dependency>
Expand Down