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
1 change: 1 addition & 0 deletions RELEASING.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
We deploy the SDK to [Maven Central](https://search.maven.org/artifact/com.ironcorelabs/tenant-security-java/).

- Update the `<version>` in [pom.xml](./pom.xml).
- Update the `<project.build.outputTimestamp>` property in [pom.xml](./pom.xml) to the current UTC timestamp. Generate the exact string with `date -u +"%Y-%m-%dT%H:%M:%SZ"`. This keeps the build reproducible and satisfies `maven-javadoc-plugin`'s timestamp range check.
- Update the `sdkVersion` in [TenantSecurityRequest.java](./src/main/java/com/ironcorelabs/tenantsecurity/kms/v1/TenantSecurityRequest.java) to match the pom.xml.
- Add an entry to [CHANGELOG.md](./CHANGELOG.md).
- Commit the changes to the `main` branch and add a git tag with the `version` in it. Wait until the release has succeeded to push the changes.
Expand Down
1 change: 1 addition & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@
</developers>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.build.outputTimestamp>2026-05-19T00:00:00Z</project.build.outputTimestamp>
</properties>

<dependencyManagement>
Expand Down
Loading