Skip to content

Commit 071236a

Browse files
committed
Settings. Add subproject for common logic
1 parent ff30cd0 commit 071236a

File tree

4 files changed

+14
-0
lines changed

4 files changed

+14
-0
lines changed
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
plugins {
2+
`kotlin-dsl`
3+
}
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
11
plugins {
22
`kotlin-dsl`
33
}
4+
5+
dependencies {
6+
implementation(projects.common)
7+
}
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,13 @@
11
rootProject.name = "build-logic-settings"
22

3+
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
4+
35
dependencyResolutionManagement {
46
repositories {
57
mavenCentral()
68
}
79
}
810

11+
include("common")
912
include("generatorbuild")
1013
include("wrappersbuild")
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
11
plugins {
22
`kotlin-dsl`
33
}
4+
5+
dependencies {
6+
implementation(projects.common)
7+
}

0 commit comments

Comments
 (0)