diff --git a/.github/workflows/agent-memory-client.yml b/.github/workflows/agent-memory-client.yml index 00e73ba3..85a0129b 100644 --- a/.github/workflows/agent-memory-client.yml +++ b/.github/workflows/agent-memory-client.yml @@ -17,7 +17,7 @@ jobs: strategy: fail-fast: false matrix: - java-version: ["17", "21"] + java-version: ["21"] steps: - uses: actions/checkout@v4 diff --git a/.github/workflows/release-java-client.yml b/.github/workflows/release-java-client.yml index 52ba1659..7d99d981 100644 --- a/.github/workflows/release-java-client.yml +++ b/.github/workflows/release-java-client.yml @@ -29,7 +29,7 @@ jobs: release: uses: redis/github-workflows/.github/workflows/release.yml@main with: - java-version: '11' + java-version: '21' version: ${{ inputs.version }} version-increment: ${{ inputs.version-increment }} gradle-build-tasks: 'build test publish' @@ -44,4 +44,3 @@ jobs: gpg-secret-key: ${{ secrets.GPG_SECRET_KEY }} sonatype-username: ${{ secrets.SONATYPE_USERNAME }} sonatype-password: ${{ secrets.SONATYPE_PASSWORD }} - diff --git a/agent-memory-client/agent-memory-client-java/RELEASE.md b/agent-memory-client/agent-memory-client-java/RELEASE.md index b6ba4c9d..f2f098b4 100644 --- a/agent-memory-client/agent-memory-client-java/RELEASE.md +++ b/agent-memory-client/agent-memory-client-java/RELEASE.md @@ -74,7 +74,7 @@ The workflow will: 3. **Publish**: Publish artifacts to the staging repository 4. **Sign**: Sign all artifacts with GPG 5. **Assemble**: Prepare release artifacts with JReleaser -6. **Release**: +6. **Release**: - Create a GitHub release with changelog - Deploy to Maven Central - Tag the repository @@ -157,4 +157,3 @@ export JRELEASER_MAVENCENTRAL_PASSWORD=your_password - [JReleaser Documentation](https://jreleaser.org/) - [Maven Central Publishing Guide](https://central.sonatype.org/publish/) - [GPG Signing Guide](https://central.sonatype.org/publish/requirements/gpg/) - diff --git a/agent-memory-client/agent-memory-client-java/build.gradle.kts b/agent-memory-client/agent-memory-client-java/build.gradle.kts index 369b9a1f..01b7d91f 100644 --- a/agent-memory-client/agent-memory-client-java/build.gradle.kts +++ b/agent-memory-client/agent-memory-client-java/build.gradle.kts @@ -21,8 +21,8 @@ scmVersion { } java { - sourceCompatibility = JavaVersion.VERSION_11 - targetCompatibility = JavaVersion.VERSION_11 + sourceCompatibility = JavaVersion.VERSION_21 + targetCompatibility = JavaVersion.VERSION_21 withJavadocJar() withSourcesJar() } diff --git a/agent-memory-client/agent-memory-client-java/jreleaser.yml b/agent-memory-client/agent-memory-client-java/jreleaser.yml index c4fbde7b..816ee349 100644 --- a/agent-memory-client/agent-memory-client-java/jreleaser.yml +++ b/agent-memory-client/agent-memory-client-java/jreleaser.yml @@ -7,12 +7,13 @@ project: authors: - Andrew Brookins - Brian Sam-Bodden + - Julien Ruaux - Raphael De Lio license: Apache-2.0 languages: java: groupId: com.redis - version: '11' + version: '21' inceptionYear: '2024' tags: ['redis', 'agent', 'memory', 'ai', 'llm', 'client'] @@ -77,4 +78,3 @@ deploy: announce: slack: active: NEVER -