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
2 changes: 1 addition & 1 deletion .github/workflows/agent-memory-client.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
strategy:
fail-fast: false
matrix:
java-version: ["17", "21"]
java-version: ["21"]
steps:
- uses: actions/checkout@v4

Expand Down
3 changes: 1 addition & 2 deletions .github/workflows/release-java-client.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand All @@ -44,4 +44,3 @@ jobs:
gpg-secret-key: ${{ secrets.GPG_SECRET_KEY }}
sonatype-username: ${{ secrets.SONATYPE_USERNAME }}
sonatype-password: ${{ secrets.SONATYPE_PASSWORD }}

3 changes: 1 addition & 2 deletions agent-memory-client/agent-memory-client-java/RELEASE.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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/)

4 changes: 2 additions & 2 deletions agent-memory-client/agent-memory-client-java/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ scmVersion {
}

java {
sourceCompatibility = JavaVersion.VERSION_11
targetCompatibility = JavaVersion.VERSION_11
sourceCompatibility = JavaVersion.VERSION_21
targetCompatibility = JavaVersion.VERSION_21
withJavadocJar()
withSourcesJar()
}
Expand Down
4 changes: 2 additions & 2 deletions agent-memory-client/agent-memory-client-java/jreleaser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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']

Expand Down Expand Up @@ -77,4 +78,3 @@ deploy:
announce:
slack:
active: NEVER

Loading