-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathsettings.gradle.kts
More file actions
54 lines (48 loc) · 1.41 KB
/
settings.gradle.kts
File metadata and controls
54 lines (48 loc) · 1.41 KB
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
rootProject.name = "tiny"
pluginManagement {
repositories {
maven {
url = uri("https://s01.oss.sonatype.org/content/repositories/snapshots/")
}.mavenContent {
includeVersionByRegex("com.github.minigdx", "(.*)", "LATEST-SNAPSHOT")
}
gradlePluginPortal()
google()
mavenCentral()
mavenLocal()
}
}
dependencyResolutionManagement {
repositories {
mavenCentral()
}
versionCatalogs {
create("kotlinWrappers") {
val wrappersVersion = "2025.10.4"
from("org.jetbrains.kotlin-wrappers:kotlin-wrappers-catalog:$wrappersVersion")
}
}
}
plugins {
id("com.gradle.develocity") version ("4.1")
}
include("tiny-cli")
include("tiny-doc")
include("tiny-doc-annotations")
include("tiny-annotation-processors:tiny-asciidoctor-dsl")
include("tiny-annotation-processors:tiny-lua-dsl")
include("tiny-annotation-processors:tiny-api-to-json-generator")
include("tiny-annotation-processors:tiny-lua-stub-generator")
include("tiny-engine")
include("tiny-samples:breakout")
include("tiny-samples:home")
include("tiny-web-editor")
include("tiny-debugger")
develocity {
buildScan {
termsOfUseUrl.set("https://gradle.com/help/legal-terms-of-use")
termsOfUseAgree.set("yes")
// Publish only if build from Github Action.
publishing.onlyIf { System.getenv("CI") == "true" }
}
}