forked from kotlin-orm/ktorm
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.gradle.kts
More file actions
32 lines (28 loc) · 797 Bytes
/
Copy pathsettings.gradle.kts
File metadata and controls
32 lines (28 loc) · 797 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
plugins {
id("com.gradle.enterprise") version "3.14.1"
}
include("ktorm-core")
include("ktorm-global")
include("ktorm-jackson")
include("ktorm-ksp-annotations")
include("ktorm-ksp-compiler")
include("ktorm-ksp-compiler-maven-plugin")
include("ktorm-ksp-spi")
include("ktorm-support-mysql")
include("ktorm-support-oracle")
include("ktorm-support-postgresql")
include("ktorm-support-sqlite")
include("ktorm-support-sqlserver")
rootProject.name = "ktorm"
rootProject.children.forEach { project ->
project.buildFileName = "${project.name}.gradle.kts"
}
gradleEnterprise {
if (System.getenv("CI") == "true") {
buildScan {
publishAlways()
termsOfServiceUrl = "https://gradle.com/terms-of-service"
termsOfServiceAgree = "yes"
}
}
}