This repository has been archived by the owner on Dec 24, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.gradle.kts
81 lines (66 loc) · 1.81 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
import com.github.jengelman.gradle.plugins.shadow.tasks.ShadowJar
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
plugins {
kotlin("jvm") version "1.5.0-RC"
id("com.github.johnrengelman.shadow") version "6.1.0"
`maven-publish`
}
allprojects {
group = "io.github.skriptinsight"
version = "0.1-SNAPSHOT"
}
subprojects {
apply {
plugin("org.jetbrains.kotlin.jvm")
plugin("com.github.johnrengelman.shadow")
plugin("org.gradle.maven-publish")
}
repositories {
mavenCentral()
}
val shadow by configurations
val testImplementation by configurations
dependencies {
shadow(kotlin("stdlib"))
testImplementation(kotlin("stdlib"))
testImplementation("org.junit.jupiter:junit-jupiter:5.6.2")
}
tasks.withType<Test> {
useJUnitPlatform()
testLogging {
events("passed", "skipped", "failed")
}
}
// config JVM target to 11 for kotlin compilation tasks
tasks.withType<KotlinCompile>().configureEach {
kotlinOptions.jvmTarget = "11"
}
tasks.withType<ShadowJar> {
archiveClassifier.set(null as? String?)
}
publishing {
publications {
create("shadow", MavenPublication::class.java) {
project.shadow.component(this)
}
}
}
}
repositories {
mavenCentral()
}
tasks.withType<Test> {
outputs.upToDateWhen { false }
}
tasks.withType<ShadowJar> {
archiveClassifier.set(null as? String?)
relocate("kotlin", "${project.group}.depends.kotlin")
relocate("org.intellij", "${project.group}.depends.intellij")
relocate("org.jetbrains", "${project.group}.depends.jetbrains")
}
dependencies {
implementation(kotlin("stdlib"))
subprojects.forEach {
implementation(it)
}
}