-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle.kts
50 lines (42 loc) · 994 Bytes
/
build.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
plugins {
kotlin("jvm") version "2.0.0"
}
group = "org.readutf.orchestrator"
version = "1.8.0"
dependencies {
testImplementation(kotlin("test"))
}
repositories {
mavenLocal()
maven {
name = "utfunderscoreReleases"
url = uri("https://repo.readutf.org/releases")
}
}
extra["hermesVersion"] = "1.6.5"
extra["nettyVersion"] = "4.1.111.Final"
extra["log4jVersion"] = "2.23.1"
subprojects {
version = rootProject.version
repositories {
mavenLocal()
maven {
name = "utfunderscore"
url = uri("https://repo.readutf.org/snapshots")
credentials(PasswordCredentials::class)
authentication {
create<BasicAuthentication>("basic")
}
maven {
name = "utfunderscoreReleases"
url = uri("https://repo.readutf.org/releases")
}
}
}
}
tasks.test {
useJUnitPlatform()
}
kotlin {
jvmToolchain(17)
}