forked from Kord-Extensions/kord-extensions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.gradle.kts
42 lines (31 loc) · 925 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
38
39
40
41
42
pluginManagement {
repositories {
google()
gradlePluginPortal()
}
plugins {
// NOTE: UPDATE THIS IF YOU UPDATE THE LIBS.VERSIONS.TOML
kotlin("jvm") version "1.5.10"
kotlin("plugin.serialization") version "1.5.10"
id("com.google.devtools.ksp") version "1.5.10-1.0.0-beta02"
id("io.gitlab.arturbosch.detekt") version "1.17.1"
id("org.jetbrains.dokka") version "1.4.10.2"
}
}
rootProject.name = "kord-extensions"
enableFeaturePreview("VERSION_CATALOGS")
dependencyResolutionManagement {
versionCatalogs {
create("libs") {
from(files("libs.versions.toml"))
}
}
}
include("annotations")
include("annotation-processor")
include("kord-extensions")
include("extra-modules:extra-common")
include("extra-modules:extra-mappings")
include("modules:java-time")
include("modules:time4j")
include("token-parser")