From 07553ab3b5d307b674c7b36f5679209667e627b1 Mon Sep 17 00:00:00 2001 From: Minseok Kim Date: Fri, 24 Apr 2026 20:43:39 +0900 Subject: [PATCH] Move codec-java to independent open-source coordinate Switch the codec-java module's published coordinate from com.kakao.actionbase:v2-core:1.0.14-SNAPSHOT to com.kakao.actionbase:codec-java:0.0.1-SNAPSHOT. This aligns codec-java with the per-module independent versioning policy documented in #269, cuts cleanly from the internal v2-core line to the open-source codec-java line, and starts the open-source codec-java release cadence fresh at 0.0.1. Internal module dependencies (server, engine) reference codec-java via the Gradle project path (project(":codec-java")) and are unaffected by the coordinate change. Co-Authored-By: Claude Opus 4.7 (1M context) --- codec-java/build.gradle.kts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/codec-java/build.gradle.kts b/codec-java/build.gradle.kts index 8501ad2d..7e227aa2 100644 --- a/codec-java/build.gradle.kts +++ b/codec-java/build.gradle.kts @@ -1,7 +1,7 @@ import actionbase.dependencies.Dependencies group = "com.kakao.actionbase" -version = "1.0.14-SNAPSHOT" +version = "0.0.1-SNAPSHOT" plugins { id("actionbase.java8-conventions") @@ -35,7 +35,7 @@ publishing { create("mavenJava") { from(components["java"]) groupId = "com.kakao.actionbase" - artifactId = "v2-core" + artifactId = "codec-java" } }