File tree Expand file tree Collapse file tree 8 files changed +18
-11
lines changed Expand file tree Collapse file tree 8 files changed +18
-11
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,9 @@ plugins {
5
5
`java- gradle- plugin`
6
6
}
7
7
8
+ group = " org.sdkotlin.buildlogic"
9
+ version = " 1.0.0-SNAPSHOT"
10
+
8
11
dependencies {
9
12
10
13
implementation(platform(" org.sdkotlin.platforms:plugins-platform" ))
Original file line number Diff line number Diff line change @@ -13,11 +13,6 @@ plugins {
13
13
alias(libs.plugins.versions.gradle.plugin)
14
14
}
15
15
16
- allprojects {
17
- group = " org.sdkotlin"
18
- version = " 0.0.1-SNAPSHOT"
19
- }
20
-
21
16
dependencyAnalysis {
22
17
issues {
23
18
all {
Original file line number Diff line number Diff line change @@ -3,4 +3,7 @@ org.gradle.configuration-cache=true
3
3
org.gradle.configureondemand =true
4
4
org.gradle.parallel =true
5
5
6
+ # Gradle Versions Plugin `dependencyUpdates` task fails with:
7
+ # org.gradle.unsafe.isolated-projects=true
8
+
6
9
dependency.analysis.print.build.health =true
Original file line number Diff line number Diff line change @@ -2,8 +2,6 @@ plugins {
2
2
id(" java-platform" )
3
3
}
4
4
5
- group = " org.sdkotlin.platforms"
6
-
7
5
javaPlatform {
8
6
allowDependencies()
9
7
}
Original file line number Diff line number Diff line change @@ -2,8 +2,6 @@ plugins {
2
2
id(" java-platform" )
3
3
}
4
4
5
- group = " org.sdkotlin.platforms"
6
-
7
5
dependencies {
8
6
constraints {
9
7
api(libs.jvm.dependency.conflict.resolution.gradle.plugin.dependency)
Original file line number Diff line number Diff line change @@ -8,6 +8,12 @@ dependencyResolutionManagement {
8
8
9
9
rootProject.name = " platforms"
10
10
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
+
11
17
include(" app-platform" )
12
18
include(" test-platform" )
13
19
include(" plugins-platform" )
Original file line number Diff line number Diff line change @@ -2,8 +2,6 @@ plugins {
2
2
id(" java-platform" )
3
3
}
4
4
5
- group = " org.sdkotlin.platforms"
6
-
7
5
javaPlatform {
8
6
allowDependencies()
9
7
}
Original file line number Diff line number Diff line change @@ -33,6 +33,12 @@ rootProject.name = "sd-kotlin-spring-talks"
33
33
34
34
includeBuild(" platforms" )
35
35
36
+ gradle.beforeProject {
37
+ // Set group and version properties for all projects
38
+ group = " org.sdkotlin"
39
+ version = " 1.0.0-SNAPSHOT"
40
+ }
41
+
36
42
include(" subprojects:app" )
37
43
include(" subprojects:child-context:domain-service" )
38
44
include(" subprojects:child-context:rest-api" )
You can’t perform that action at this time.
0 commit comments