2022-07-09 14:26:57 +00:00
|
|
|
plugins {
|
|
|
|
java
|
|
|
|
`maven-publish`
|
|
|
|
}
|
|
|
|
|
|
|
|
repositories {
|
|
|
|
maven {
|
|
|
|
url = uri("https://repo.papermc.io/repository/maven-public/")
|
|
|
|
}
|
|
|
|
|
|
|
|
maven {
|
|
|
|
url = uri("https://nexus.telesphoreo.me/repository/plex/")
|
|
|
|
}
|
2023-08-24 09:43:16 +00:00
|
|
|
maven {
|
|
|
|
url = uri("https://repo.infernalsuite.com/repository/maven-snapshots/")
|
|
|
|
}
|
2022-07-09 14:26:57 +00:00
|
|
|
|
|
|
|
mavenCentral()
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2023-07-23 04:11:54 +00:00
|
|
|
compileOnly("org.projectlombok:lombok:1.18.28")
|
|
|
|
annotationProcessor("org.projectlombok:lombok:1.18.28")
|
|
|
|
compileOnly("io.papermc.paper:paper-api:1.20.1-R0.1-SNAPSHOT")
|
2022-07-09 14:26:57 +00:00
|
|
|
implementation("org.apache.commons:commons-lang3:3.12.0")
|
2023-07-23 04:11:54 +00:00
|
|
|
compileOnly("dev.plex:server:1.3")
|
2023-08-24 09:43:16 +00:00
|
|
|
compileOnly("com.infernalsuite.aswm:api:1.20-R0.1-SNAPSHOT") {
|
|
|
|
exclude(group="com.flowpowered")
|
|
|
|
}
|
2022-07-09 14:26:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
group = "dev.plex"
|
2023-07-23 04:11:54 +00:00
|
|
|
version = "1.3"
|
2022-07-09 14:26:57 +00:00
|
|
|
description = "Module-TFMExtras"
|
|
|
|
|
|
|
|
java {
|
|
|
|
toolchain.languageVersion.set(JavaLanguageVersion.of(17))
|
|
|
|
}
|
|
|
|
|
|
|
|
publishing {
|
|
|
|
publications {
|
|
|
|
create<MavenPublication>("maven") {
|
|
|
|
from(components["java"])
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
tasks.getByName<Jar>("jar") {
|
|
|
|
archiveBaseName.set("Plex-TFMExtras")
|
|
|
|
archiveVersion.set("")
|
|
|
|
}
|
|
|
|
|
|
|
|
tasks {
|
|
|
|
compileJava {
|
|
|
|
options.encoding = Charsets.UTF_8.name()
|
|
|
|
}
|
|
|
|
javadoc {
|
|
|
|
options.encoding = Charsets.UTF_8.name()
|
|
|
|
}
|
|
|
|
processResources {
|
|
|
|
filteringCharset = Charsets.UTF_8.name()
|
|
|
|
}
|
|
|
|
}
|