Skip to content

Commit 1f34166

Browse files
authored
Merge branch 'develop' into feat/logging/colorful
2 parents 5368b0f + 4dfb167 commit 1f34166

File tree

2 files changed

+1
-4
lines changed

2 files changed

+1
-4
lines changed

buildSrc/src/main/kotlin/io/tnboot/gradle/build/PublishUtil.kt

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,5 +37,3 @@ val Project.publishedProjects get() = rootProject.allprojects.filter {
3737
it != project && it.plugins.hasPlugin(PublishPlugin::class.java) &&
3838
it.extensions.getByType(PublishPlugin.Extension::class.java).isPublished
3939
}
40-
41-
val Project.notation get() = "$group:$name:$version"

telenor-boot-dependencies/build.gradle.kts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
import io.tnboot.gradle.build.DependencyGroups
22
import io.tnboot.gradle.build.mavenPublish
3-
import io.tnboot.gradle.build.notation
43
import io.tnboot.gradle.build.publishedProjects
54

65
plugins {
@@ -17,7 +16,7 @@ val bom = DependencyGroups(
1716
dependencies {
1817
constraints {
1918
bom.dependencies.forEach { add("api", it) }
20-
publishedProjects.forEach { add("api", it.notation) }
19+
publishedProjects.forEach { add("api", "${it.group}:${it.name}:\${tnboot.version}") }
2120
}
2221
}
2322

0 commit comments

Comments
 (0)