-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.gradle.kts
39 lines (36 loc) · 1.14 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
@file:Suppress("UnstableApiUsage")
pluginManagement {
repositories {
gradlePluginPortal()
mavenCentral()
mavenLocal()
}
}
dependencyResolutionManagement {
repositories {
mavenCentral()
mavenLocal()
}
}
include(":modules:kilua-rpc-annotations")
include(":modules:kilua-rpc-types")
include(":modules:kilua-rpc-core")
include(":modules:kilua-rpc-javalin")
include(":modules:kilua-rpc-jooby")
include(":modules:kilua-rpc-ktor-guice")
include(":modules:kilua-rpc-ktor-koin")
include(":modules:kilua-rpc-micronaut")
include(":modules:kilua-rpc-spring-boot")
include(":modules:kilua-rpc-vertx")
include(":plugins:kilua-rpc-gradle-plugin")
include(":plugins:kilua-rpc-ksp-processor")
include(":examples:fullstack-javalin")
include(":examples:fullstack-jooby")
include(":examples:fullstack-ktor-koin")
include(":examples:fullstack-ktor-guice")
include(":examples:fullstack-micronaut")
include(":examples:fullstack-micronaut:application")
include(":examples:fullstack-spring-boot")
include(":examples:fullstack-spring-boot:application")
include(":examples:fullstack-vertx")
include(":examples:fullstack-vertx:application")