From 5e8ef6d66facf465adbc1ad186923b71dd60eb39 Mon Sep 17 00:00:00 2001 From: slhafzjw Date: Sun, 8 Mar 2026 13:30:39 +0800 Subject: [PATCH] refactor(build): add kotlin-maven-plugin setup to Partner-Core and Partner-Framework poms --- Partner-Core/pom.xml | 29 ++++++++++++++++++++++++++++- Partner-Framework/pom.xml | 34 +++++++++++++++++++++++++++++++++- 2 files changed, 61 insertions(+), 2 deletions(-) diff --git a/Partner-Core/pom.xml b/Partner-Core/pom.xml index b469a4e1..be5cab45 100644 --- a/Partner-Core/pom.xml +++ b/Partner-Core/pom.xml @@ -107,7 +107,34 @@ true + + org.jetbrains.kotlin + kotlin-maven-plugin + ${kotlin.version} + + + compile + process-sources + + compile + + + + test-compile + test-compile + + test-compile + + + + + ${maven.compiler.target} + + ${project.basedir}/src/main/java + + + - \ No newline at end of file + diff --git a/Partner-Framework/pom.xml b/Partner-Framework/pom.xml index 72c2d2aa..521a4ce0 100644 --- a/Partner-Framework/pom.xml +++ b/Partner-Framework/pom.xml @@ -81,4 +81,36 @@ UTF-8 - \ No newline at end of file + + + + org.jetbrains.kotlin + kotlin-maven-plugin + ${kotlin.version} + + + compile + process-sources + + compile + + + + test-compile + test-compile + + test-compile + + + + + ${maven.compiler.target} + + ${project.basedir}/src/main/java + + + + + + +