-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle.kts
69 lines (58 loc) · 1.58 KB
/
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
import org.jetbrains.kotlin.gradle.dsl.JvmTarget
import org.jetbrains.kotlin.gradle.dsl.KotlinVersion
plugins {
kotlin("jvm") version "2.0.20"
`maven-publish`
}
group = "dev.silenium.libs.flow-graph"
version = findProperty("deploy.version") as String? ?: "0.0.0-SNAPSHOT"
repositories {
mavenCentral()
}
dependencies {
val coroutines = "1.9.0"
api("org.jetbrains.kotlinx:kotlinx-coroutines-core:$coroutines")
val kotest = "5.9.1"
testImplementation("io.kotest:kotest-runner-junit5-jvm:$kotest")
testImplementation("io.kotest:kotest-assertions-core-jvm:$kotest")
testImplementation("io.kotest:kotest-property-jvm:$kotest")
testImplementation("org.jetbrains.kotlinx:kotlinx-coroutines-debug:$coroutines")
}
tasks.test {
useJUnitPlatform()
}
tasks.compileKotlin {
compilerOptions {
jvmTarget = JvmTarget.JVM_1_8
languageVersion = KotlinVersion.KOTLIN_1_7
}
}
tasks.compileTestKotlin {
compilerOptions {
jvmTarget = JvmTarget.JVM_1_8
languageVersion = KotlinVersion.DEFAULT
}
}
kotlin {
jvmToolchain(8)
}
java {
withSourcesJar()
}
publishing {
publications {
create<MavenPublication>("mavenJava") {
from(components["java"])
}
}
repositories {
val url = System.getenv("MAVEN_REPO_URL") ?: return@repositories
maven(url) {
name = "reposilite"
credentials {
username = System.getenv("MAVEN_REPO_USERNAME") ?: ""
password = System.getenv("MAVEN_REPO_PASSWORD") ?: ""
}
}
}
}