mirror of
https://github.com/plexusorg/Module-Shop.git
synced 2024-11-17 02:06:11 +00:00
72 lines
1.6 KiB
Plaintext
72 lines
1.6 KiB
Plaintext
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
|
|
|
|
plugins {
|
|
java
|
|
`maven-publish`
|
|
kotlin("jvm") version "1.8.20-RC"
|
|
}
|
|
|
|
repositories {
|
|
maven {
|
|
url = uri("https://repo.papermc.io/repository/maven-public/")
|
|
}
|
|
|
|
maven {
|
|
url = uri("https://nexus.telesphoreo.me/repository/plex/")
|
|
}
|
|
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
compileOnly("org.projectlombok:lombok:1.18.26")
|
|
annotationProcessor("org.projectlombok:lombok:1.18.26")
|
|
compileOnly("io.papermc.paper:paper-api:1.19.3-R0.1-SNAPSHOT")
|
|
compileOnly("dev.plex:server:1.3-SNAPSHOT")
|
|
implementation(kotlin("stdlib-jdk8"))
|
|
}
|
|
|
|
group = "dev.plex"
|
|
version = "1.3-SNAPSHOT"
|
|
description = "ShopModule"
|
|
|
|
java {
|
|
toolchain.languageVersion.set(JavaLanguageVersion.of(17))
|
|
}
|
|
|
|
publishing {
|
|
publications {
|
|
create<MavenPublication>("maven") {
|
|
from(components["java"])
|
|
}
|
|
}
|
|
}
|
|
|
|
tasks.getByName<Jar>("jar") {
|
|
archiveBaseName.set("Plex-Shop")
|
|
archiveVersion.set("")
|
|
duplicatesStrategy = org.gradle.api.file.DuplicatesStrategy.EXCLUDE
|
|
from({
|
|
configurations.runtimeClasspath.get().filter { it.name.endsWith("jar") }.map { zipTree(it) }
|
|
})
|
|
}
|
|
|
|
tasks {
|
|
compileJava {
|
|
options.encoding = Charsets.UTF_8.name()
|
|
}
|
|
javadoc {
|
|
options.encoding = Charsets.UTF_8.name()
|
|
}
|
|
processResources {
|
|
filteringCharset = Charsets.UTF_8.name()
|
|
}
|
|
}
|
|
val compileKotlin: KotlinCompile by tasks
|
|
compileKotlin.kotlinOptions {
|
|
jvmTarget = "17"
|
|
}
|
|
val compileTestKotlin: KotlinCompile by tasks
|
|
compileTestKotlin.kotlinOptions {
|
|
jvmTarget = "17"
|
|
} |