45 lines
1.4 KiB
Kotlin
45 lines
1.4 KiB
Kotlin
pluginManagement {
|
|
repositories {
|
|
gradlePluginPortal()
|
|
}
|
|
includeBuild("gradle/build-logic")
|
|
}
|
|
|
|
rootProject.name = "kobweb"
|
|
|
|
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
|
|
|
|
include(":common:client-server-internal")
|
|
include(":common:framework-annotations")
|
|
include(":common:kobweb-common")
|
|
include(":common:kobweb-serialization")
|
|
include(":common:kobwebx-frontmatter")
|
|
include(":common:kobwebx-serialization-kotlinx")
|
|
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:aggregate-docs")
|
|
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")
|