-
Notifications
You must be signed in to change notification settings - Fork 1
/
settings.gradle.kts
57 lines (49 loc) · 1.33 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
/*
* Copyright (c) 2022 Matthias Geisler (bitPogo) / All rights reserved.
*
* Use of this source code is governed by Apache v2.0
*/
import tech.antibytes.gradle.dependency.node.nodeToDependencyCatalog
import tech.antibytes.gradle.dependency.settings.fullCache
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
pluginManagement {
repositories {
val antibytesPlugins = "^tech\\.antibytes\\.[\\.a-z\\-]+"
gradlePluginPortal()
mavenCentral()
google()
maven {
setUrl("https://raw.github.com/bitPogo/maven-snapshots/main/snapshots")
content {
includeGroupByRegex(antibytesPlugins)
}
}
maven {
setUrl("https://raw.github.com/bitPogo/maven-rolling-releases/main/rolling")
content {
includeGroupByRegex(antibytesPlugins)
}
}
}
}
plugins {
id("tech.antibytes.gradle.dependency.settings") version "601dc8e"
}
includeBuild("setup")
dependencyResolutionManagement {
versionCatalogs {
create("local") {
from(files("./gradle/libs.versions.toml"))
nodeToDependencyCatalog(files("./gradle/package.json"))
}
}
}
include(
":core",
":ktx-datetime",
":docs",
)
buildCache {
fullCache(rootDir)
}
rootProject.name = "kfixture"