Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
12 changes: 12 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,18 @@ Please read through this document before submitting any issues or pull requests
information to effectively respond to your bug report or contribution.


## Prerequisites

Building this project requires JDK 17 or later. On Amazon Linux, the default Corretto installation may not include the
`jmods` files required by the ProGuard reduction step that runs during publishing tasks. Install them separately:

```
yum install java-17-amazon-corretto-jmods.x86_64
```

Adjust the version (e.g., `java-21-amazon-corretto-jmods.x86_64`) to match the JDK version you are using.


## Reporting Bugs/Feature Requests

We welcome you to use the GitHub issue tracker to report bugs or suggest features.
Expand Down
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[versions]
kotlin-version = "2.3.0"

aws-kotlin-repo-tools-version = "0.5.3"
aws-kotlin-repo-tools-version = "0.5.6"

# libs
crt-java-version = "0.42.2"
Expand Down
Loading