-
-
Notifications
You must be signed in to change notification settings - Fork 15
/
settings.gradle.kts
37 lines (32 loc) · 986 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
37
plugins {
id("com.gradle.develocity") version "3.18.1"
}
rootProject.name = "krossbow"
dependencyResolutionManagement {
repositories {
mavenCentral()
}
}
includeBuild("gradle/plugins")
includeBuild("test-server")
include("krossbow-io")
include("krossbow-stomp-core")
include("krossbow-stomp-kxserialization")
include("krossbow-stomp-kxserialization-json")
include("krossbow-stomp-jackson")
include("krossbow-stomp-moshi")
include("krossbow-websocket-core")
include("krossbow-websocket-builtin")
include("krossbow-websocket-ktor")
include("krossbow-websocket-okhttp")
include("krossbow-websocket-sockjs")
include("krossbow-websocket-spring")
include("krossbow-websocket-test")
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
develocity {
buildScan {
termsOfUseUrl = "https://gradle.com/terms-of-service"
termsOfUseAgree = "yes"
uploadInBackground = false // background upload is bad for CI, and not critical for local runs
}
}