File tree Expand file tree Collapse file tree 2 files changed +1
-4
lines changed
buildSrc/src/main/kotlin/io/tnboot/gradle/build
telenor-boot-dependencies Expand file tree Collapse file tree 2 files changed +1
-4
lines changed Original file line number Diff line number Diff line change @@ -37,5 +37,3 @@ val Project.publishedProjects get() = rootProject.allprojects.filter {
37
37
it != project && it.plugins.hasPlugin(PublishPlugin ::class .java) &&
38
38
it.extensions.getByType(PublishPlugin .Extension ::class .java).isPublished
39
39
}
40
-
41
- val Project .notation get() = " $group :$name :$version "
Original file line number Diff line number Diff line change 1
1
import io.tnboot.gradle.build.DependencyGroups
2
2
import io.tnboot.gradle.build.mavenPublish
3
- import io.tnboot.gradle.build.notation
4
3
import io.tnboot.gradle.build.publishedProjects
5
4
6
5
plugins {
@@ -17,7 +16,7 @@ val bom = DependencyGroups(
17
16
dependencies {
18
17
constraints {
19
18
bom.dependencies.forEach { add(" api" , it) }
20
- publishedProjects.forEach { add(" api" , it.notation ) }
19
+ publishedProjects.forEach { add(" api" , " ${ it.group} : ${it.name} : \$ {tnboot.version} " ) }
21
20
}
22
21
}
23
22
You can’t perform that action at this time.
0 commit comments