forked from vaci/capnproto-java-rpc
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.gradle.kts
More file actions
40 lines (32 loc) · 807 Bytes
/
settings.gradle.kts
File metadata and controls
40 lines (32 loc) · 807 Bytes
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
/*
* This file was generated by the Gradle 'init' task.
*
* This project uses @Incubating APIs which are subject to change.
*/
import build.less.plugin.settings.buildless
pluginManagement {
repositories {
maven("https://gradle.pkg.st/")
}
}
plugins {
id("build.less") version("1.0.0-beta1")
}
dependencyResolutionManagement {
repositoriesMode = RepositoriesMode.PREFER_PROJECT
repositories {
maven("https://maven.pkg.st/")
}
}
buildless {
// no configuration at this time
}
rootProject.name = "capnproto-java"
include(":examples")
include(":runtime")
include(":benchmark")
include(":runtime-rpc")
include(":compiler")
enableFeaturePreview("STABLE_CONFIGURATION_CACHE")
enableFeaturePreview("GROOVY_COMPILATION_AVOIDANCE")
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")