-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsettings.gradle.kts
41 lines (34 loc) · 1.12 KB
/
settings.gradle.kts
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
40
41
rootProject.name = "kotlin-suspend-transform-compiler-plugin"
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
pluginManagement {
repositories {
maven("https://maven.pkg.jetbrains.space/public/p/compose/dev")
google()
gradlePluginPortal()
mavenCentral()
mavenLocal()
}
}
dependencyResolutionManagement {
@Suppress("UnstableApiUsage")
repositories {
google()
mavenCentral()
maven("https://maven.pkg.jetbrains.space/public/p/compose/dev")
// mavenLocal()
}
}
include(":compiler:suspend-transform-plugin")
include(":compiler:suspend-transform-plugin-cli")
include(":compiler:suspend-transform-plugin-deprecated-configuration")
include(":compiler:suspend-transform-plugin-configuration")
include(":compiler:suspend-transform-plugin-embeddable")
include(":runtime:suspend-transform-annotation")
include(":runtime:suspend-transform-runtime")
include(":plugins:suspend-transform-plugin-gradle")
// include(":local-helper")
//Samples
// include(":tests:test-jvm")
// include(":tests:test-js")
// include(":tests:test-kmp")
// include(":tests:test-android")