TursomServer/build.gradle.kts

87 lines
2.0 KiB
Plaintext
Raw Normal View History

2021-04-11 18:15:58 +08:00
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
ext["netty.version"] = "4.1.59.Final"
ext["excludeTest"] = { project: Project, tasks: TaskContainer ->
2021-07-10 12:04:11 +08:00
if (project.gradle.startParameter.taskNames.firstOrNull { taskName ->
taskName.endsWith(":test")
} == null) {
tasks {
test { enabled = false }
testClasses { enabled = false }
compileTestJava { enabled = false }
compileTestKotlin { enabled = false }
processTestResources { enabled = false }
2021-04-11 18:15:58 +08:00
}
2021-07-10 12:04:11 +08:00
}
2021-04-11 18:15:58 +08:00
}
plugins {
2021-07-10 12:04:11 +08:00
kotlin("jvm") version "1.5.20"
`maven-publish`
2021-04-11 18:15:58 +08:00
}
allprojects {
2021-07-10 12:04:11 +08:00
group = "cn.tursom"
version = "0.2"
2021-04-11 18:15:58 +08:00
2021-07-10 12:04:11 +08:00
repositories {
mavenLocal()
mavenCentral()
}
2021-04-11 18:15:58 +08:00
2021-07-10 12:04:11 +08:00
tasks.withType<JavaCompile> {
tasks.withType<KotlinCompile>().configureEach {
kotlinOptions.jvmTarget = "1.8"
kotlinOptions.freeCompilerArgs += "-Xopt-in=kotlin.RequiresOptIn"
2021-04-11 18:15:58 +08:00
}
2021-04-19 16:19:35 +08:00
2021-07-10 12:04:11 +08:00
if (project.gradle.startParameter.taskNames.firstOrNull { taskName ->
taskName.endsWith(":test")
} == null) {
tasks.withType<Test> {
enabled = false
}
2021-04-19 16:19:35 +08:00
}
2021-07-10 12:04:11 +08:00
}
tasks.withType<KotlinCompile>().configureEach {
kotlinOptions.jvmTarget = "1.8"
kotlinOptions.freeCompilerArgs += "-Xopt-in=kotlin.RequiresOptIn"
//kotlinOptions.useIR = true
}
2021-04-11 18:15:58 +08:00
}
@kotlin.Suppress("UNCHECKED_CAST")
(rootProject.ext["excludeTest"] as (Project, TaskContainer) -> Unit)(project, tasks)
dependencies {
2021-07-10 12:04:11 +08:00
api(kotlin("stdlib-jdk8"))
api(kotlin("reflect"))
testImplementation(group = "junit", name = "junit", version = "4.12")
2021-04-11 18:15:58 +08:00
}
2021-04-11 18:48:18 +08:00
2021-04-19 16:19:35 +08:00
artifacts {
2021-07-10 12:04:11 +08:00
archives(tasks["kotlinSourcesJar"])
2021-04-19 16:19:35 +08:00
}
2021-04-11 18:48:18 +08:00
tasks.register("install") {
2021-07-10 12:04:11 +08:00
finalizedBy(tasks["publishToMavenLocal"])
2021-04-11 18:48:18 +08:00
}
publishing {
2021-07-10 12:04:11 +08:00
publications {
create<MavenPublication>("maven") {
groupId = project.group.toString()
artifactId = project.name
version = project.version.toString()
2021-04-11 18:48:18 +08:00
2021-07-10 12:04:11 +08:00
from(components["java"])
try {
artifact(tasks["kotlinSourcesJar"])
} catch (e: Exception) {
}
2021-04-11 18:48:18 +08:00
}
2021-07-10 12:04:11 +08:00
}
2021-04-11 18:48:18 +08:00
}