diff --git a/build-logic/android-library/src/main/kotlin/AndroidLibraryReleasePlugin.kt b/build-logic/android-library/src/main/kotlin/AndroidLibraryReleasePlugin.kt index 93e7418..b9aa366 100644 --- a/build-logic/android-library/src/main/kotlin/AndroidLibraryReleasePlugin.kt +++ b/build-logic/android-library/src/main/kotlin/AndroidLibraryReleasePlugin.kt @@ -46,7 +46,6 @@ private fun Project.setupReleaseBuild() { private fun Project.setupVersionInfo() { val versionProperties = File(project.rootDir, "version.properties") - println("version properties: $versionProperties") versionProperties.inputStream().use { inputStream -> Properties().apply { load(inputStream) @@ -68,7 +67,7 @@ private fun Project.setupPublishing(): Publication { register("release") { groupId = "de.sipgate" artifactId = project.name - version = "0.1" + version = project.version.toString() setPom()