Skip to content
Merged
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
14 changes: 8 additions & 6 deletions agent-memory-client/agent-memory-client-java/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,8 @@ plugins {
id("pl.allegro.tech.build.axion-release") version "1.21.1"
}

group = "com.redis"
// Version is managed by the Axion Release plugin via git tags (prefix: java-client-v).
// The 'version' property in gradle.properties is not used.
version = scmVersion.version
description = "Java client for the Agent Memory Server REST API"

// Configure scmVersion BEFORE accessing scmVersion.version
// This is required because the repository directory must be set before version resolution
scmVersion {
repository {
// Navigate to the repository root (two levels up from the Java client directory)
Expand All @@ -21,6 +17,12 @@ scmVersion {
}
}

group = "com.redis"
// Version is managed by the Axion Release plugin via git tags (prefix: java-client-v).
// The 'version' property in gradle.properties is not used.
version = scmVersion.version
description = "Java client for the Agent Memory Server REST API"

java {
sourceCompatibility = JavaVersion.VERSION_21
targetCompatibility = JavaVersion.VERSION_21
Expand Down
Loading