forked from ReplayMod/remap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle.kts
83 lines (65 loc) · 2.19 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
plugins {
kotlin("jvm") version "1.5.21"
`maven-publish`
}
tasks.withType<KotlinCompile>().configureEach {
kotlinOptions.jvmTarget = "1.8"
}
group = "com.github.replaymod"
version = "SNAPSHOT"
repositories {
mavenCentral()
maven("https://repo.spongepowered.org/repository/maven-public/")
}
val testA by sourceSets.creating
val testB by sourceSets.creating
kotlinVersion("1.5.21", isPrimaryVersion = true)
kotlinVersion("1.6.20")
dependencies {
api("org.jetbrains.kotlin:kotlin-compiler-embeddable:1.5.21")
implementation(kotlin("stdlib"))
api("org.cadixdev:lorenz:0.5.8")
runtimeOnly("net.java.dev.jna:jna:5.10.0") // don't strictly need this but IDEA spams log without
testImplementation("org.junit.jupiter:junit-jupiter:5.7.1")
testImplementation("io.kotest:kotest-assertions-core:4.6.3")
testRuntimeOnly(testA.output)
testRuntimeOnly(testB.output)
testRuntimeOnly("org.spongepowered:mixin:0.8.4")
}
tasks.named<Jar>("jar") {
archiveBaseName.set("remap")
}
publishing {
publications {
create("maven", MavenPublication::class) {
from(components["java"])
}
}
}
tasks.test {
useJUnitPlatform()
}
fun kotlinVersion(version: String, isPrimaryVersion: Boolean = false) {
val name = version.replace(".", "")
val sourceSet = sourceSets.create("kotlin$name")
val testClasspath = configurations.create("kotlin${name}TestClasspath") {
extendsFrom(configurations.testRuntimeClasspath.get())
extendsFrom(configurations[sourceSet.compileOnlyConfigurationName])
}
dependencies {
implementation(sourceSet.output)
sourceSet.compileOnlyConfigurationName("org.jetbrains.kotlin:kotlin-compiler-embeddable:$version")
}
tasks.jar {
from(sourceSet.output)
}
if (!isPrimaryVersion) {
val testTask = tasks.register("testKotlin$name", Test::class) {
useJUnitPlatform()
testClassesDirs = sourceSets.test.get().output.classesDirs
classpath = testClasspath + sourceSets.test.get().output + sourceSets.main.get().output
}
tasks.check { dependsOn(testTask) }
}
}