forked from varabyte/kobweb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.gradle.kts
41 lines (38 loc) · 1.3 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
pluginManagement {
repositories {
gradlePluginPortal()
}
includeBuild("gradle/build-logic")
}
rootProject.name = "kobweb"
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
include(":common:kobweb-common")
include(":common:kobweb-serialization")
include(":common:kobwebx-serialization-kotlinx")
include(":common:client-server-internal")
include(":frontend:kobweb-core")
include(":frontend:kobweb-compose")
include(":frontend:kobweb-silk")
include(":frontend:kobweb-worker")
include(":frontend:kobweb-worker-interface")
include(":frontend:silk-foundation")
include(":frontend:silk-widgets")
include(":frontend:silk-widgets-kobweb")
include(":frontend:silk-icons-fa")
include(":frontend:silk-icons-mdi")
include(":frontend:kobwebx-markdown")
include(":frontend:compose-html-ext")
include(":frontend:browser-ext")
include(":frontend:test:compose-test-utils")
include(":backend:kobweb-api")
include(":backend:server")
include(":backend:server-plugin")
include(":tools:gradle-plugins:core")
include(":tools:gradle-plugins:library")
include(":tools:gradle-plugins:application")
include(":tools:gradle-plugins:worker")
include(":tools:gradle-plugins:extensions:markdown")
include(":tools:ksp:site-processors")
include(":tools:ksp:worker-processor")
include(":tools:ksp:ksp-ext")
include(":tools:processor-common")