File tree Expand file tree Collapse file tree 9 files changed +19
-21
lines changed
Expand file tree Collapse file tree 9 files changed +19
-21
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,9 @@ plugins {
44 `kotlin- dsl`
55}
66
7+ group = " org.sdkotlin.buildlogic"
8+ version = " 1.0.0-SNAPSHOT"
9+
710dependencies {
811
912 implementation(platform(" org.sdkotlin.platforms:plugins-platform" ))
Original file line number Diff line number Diff line change @@ -13,20 +13,6 @@ plugins {
1313 alias(libs.plugins.versions.gradle.plugin)
1414}
1515
16- allprojects {
17- group = " org.sdkotlin"
18- version = " 1.0-SNAPSHOT"
19- }
20-
21- subprojects {
22- tasks {
23- register<DependencyReportTask >(" allDependencies" ) {
24- description = " Display dependencies report for all subprojects."
25- group = " help"
26- }
27- }
28- }
29-
3016dependencyAnalysis {
3117 issues {
3218 all {
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ plugins {
66}
77
88group = " org.sdkotlin.detekt"
9- version = " 1.0-SNAPSHOT"
9+ version = " 1.0.0 -SNAPSHOT"
1010
1111dependencies {
1212
Original file line number Diff line number Diff line change @@ -5,6 +5,9 @@ org.gradle.jvmargs=-Xmx4g
55org.gradle.kotlin.dsl.skipMetadataVersionCheck =false
66org.gradle.parallel =true
77
8+ # KSP and Gradle Versions Plugin `dependencyUpdates` task fails with:
9+ # org.gradle.unsafe.isolated-projects=true
10+
811ksp.useKSP2 =true
912
1013dependency.analysis.print.build.health =true
Original file line number Diff line number Diff line change @@ -2,8 +2,6 @@ plugins {
22 id(" java-platform" )
33}
44
5- group = " org.sdkotlin.platforms"
6-
75javaPlatform {
86 allowDependencies()
97}
Original file line number Diff line number Diff line change @@ -2,8 +2,6 @@ plugins {
22 id(" java-platform" )
33}
44
5- group = " org.sdkotlin.platforms"
6-
75dependencies {
86 constraints {
97 api(libs.dependency.analysis.gradle.plugin.dependency)
Original file line number Diff line number Diff line change @@ -8,6 +8,12 @@ dependencyResolutionManagement {
88
99rootProject.name = " platforms"
1010
11+ gradle.beforeProject {
12+ // Set group and version properties for all projects
13+ group = " org.sdkotlin.platforms"
14+ version = " 1.0.0-SNAPSHOT"
15+ }
16+
1117include(" app-platform" )
1218include(" test-platform" )
1319include(" plugins-platform" )
Original file line number Diff line number Diff line change @@ -2,8 +2,6 @@ plugins {
22 id(" java-platform" )
33}
44
5- group = " org.sdkotlin.platforms"
6-
75javaPlatform {
86 allowDependencies()
97}
Original file line number Diff line number Diff line change @@ -33,6 +33,12 @@ rootProject.name = "sd-kotlin-talks"
3333
3434includeBuild(" platforms" )
3535
36+ gradle.beforeProject {
37+ // Set group and version properties for all projects
38+ group = " org.sdkotlin"
39+ version = " 1.0.0-SNAPSHOT"
40+ }
41+
3642include(" subprojects:di-with-koin" )
3743include(" subprojects:effective-kotlin" )
3844include(" subprojects:kotlin-dl" )
You can’t perform that action at this time.
0 commit comments