-
-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathsettings.gradle.kts
More file actions
39 lines (32 loc) · 784 Bytes
/
settings.gradle.kts
File metadata and controls
39 lines (32 loc) · 784 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
rootProject.name = "mappie"
pluginManagement {
repositories {
gradlePluginPortal()
}
includeBuild("build-logic")
}
plugins {
id("org.gradle.toolchains.foojay-resolver") version "1.0.0"
}
toolchainManagement {
jvm {
javaRepositories {
repository("foojay") {
resolverClass = org.gradle.toolchains.foojay.FoojayToolchainResolver::class.java
}
}
}
}
dependencyResolutionManagement {
repositories {
mavenCentral()
}
}
include(":compiler-plugin")
include(":gradle-plugin")
include(":mappie-api")
include(":maven-plugin")
include(":modules:kotlinx-datetime")
include(":modules:kotlinx-collections-immutable")
include(":testutil")
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")