Name | Date | Size | #Lines | LOC | ||
---|---|---|---|---|---|---|
.. | - | - | ||||
src/main/ | H | 25-Apr-2025 | - | 415 | 271 | |
README.md | H A D | 25-Apr-2025 | 737 | 31 | 18 | |
pom.xml | H A D | 25-Apr-2025 | 6.2 KiB | 162 | 129 |
README.md
1# AWS SDK Native Image Test 2 3## Description 4This module contains a sample application using AWS SDK for Java 2.x, and it 5is used to test GraalVM Native Image compilation. 6 7## Prerequisites 8 9To run the tests, you need to have GraalVM and Native Image set up properly in your workspace. 10See [Setting up GraalVM with native-image support](https://graalvm.github.io/native-build-tools/latest/graalvm-setup.html) 11 12## How to run 13 14You can run the integration tests by using the following commands. 15 16``` 17mvn clean install -pl :sdk-native-image-test -P quick --am 18 19mvn clean install -pl :bom-internal,:bom 20 21cd test/sdk-native-image-test 22 23# build the image 24mvn clean package -P native-image 25 26# execute the image 27target/sdk-native-image-test 28``` 29 30 31