-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsettings.gradle.kts
36 lines (30 loc) · 939 Bytes
/
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
rootProject.name = "kotlin-suspend-transform-compiler-plugin"
// compose for test
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
pluginManagement {
repositories {
maven("https://maven.pkg.jetbrains.space/public/p/compose/dev")
google()
gradlePluginPortal()
mavenCentral()
}
}
@Suppress("UnstableApiUsage")
dependencyResolutionManagement {
repositories {
google()
mavenCentral()
maven("https://maven.pkg.jetbrains.space/public/p/compose/dev")
}
}
include(":compiler:suspend-transform-plugin")
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")