2022-07-09 14:26:57 +00:00
|
|
|
plugins {
|
|
|
|
java
|
|
|
|
`maven-publish`
|
|
|
|
}
|
|
|
|
|
|
|
|
repositories {
|
|
|
|
maven {
|
|
|
|
url = uri("https://repo.papermc.io/repository/maven-public/")
|
|
|
|
}
|
|
|
|
|
2023-08-29 00:12:48 +00:00
|
|
|
maven {
|
2022-07-09 14:26:57 +00:00
|
|
|
url = uri("https://nexus.telesphoreo.me/repository/plex/")
|
2023-08-29 00:12:48 +00:00
|
|
|
}
|
|
|
|
|
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()
|
2023-08-28 11:31:52 +00:00
|
|
|
mavenLocal()
|
2022-07-09 14:26:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2023-11-26 06:28:46 +00:00
|
|
|
compileOnly("org.projectlombok:lombok:1.18.30")
|
|
|
|
annotationProcessor("org.projectlombok:lombok:1.18.30")
|
2024-01-11 01:14:35 +00:00
|
|
|
compileOnly("io.papermc.paper:paper-api:1.20.4-R0.1-SNAPSHOT")
|
2022-07-09 14:26:57 +00:00
|
|
|
implementation("org.apache.commons:commons-lang3:3.12.0")
|
2023-08-28 11:31:52 +00:00
|
|
|
compileOnly("dev.plex:server:1.4-SNAPSHOT")
|
2024-01-11 01:14:35 +00:00
|
|
|
compileOnly("com.infernalsuite.aswm:api:1.20.4-R0.1-SNAPSHOT") {
|
2023-08-29 00:12:48 +00:00
|
|
|
exclude(group = "com.flowpowered")
|
2023-08-24 09:43:16 +00:00
|
|
|
}
|
2022-07-09 14:26:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
group = "dev.plex"
|
2023-08-29 00:12:48 +00:00
|
|
|
version = "1.4-SNAPSHOT"
|
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") {
|
2023-11-26 06:28:46 +00:00
|
|
|
archiveBaseName.set("Module-TFMExtras")
|
2022-07-09 14:26:57 +00:00
|
|
|
archiveVersion.set("")
|
|
|
|
}
|
|
|
|
|
|
|
|
tasks {
|
|
|
|
compileJava {
|
|
|
|
options.encoding = Charsets.UTF_8.name()
|
|
|
|
}
|
|
|
|
javadoc {
|
|
|
|
options.encoding = Charsets.UTF_8.name()
|
|
|
|
}
|
|
|
|
processResources {
|
|
|
|
filteringCharset = Charsets.UTF_8.name()
|
|
|
|
}
|
|
|
|
}
|