2022-04-05 06:00:05 +00:00
|
|
|
plugins {
|
|
|
|
java
|
|
|
|
`maven-publish`
|
|
|
|
}
|
|
|
|
|
|
|
|
repositories {
|
|
|
|
maven {
|
2022-05-22 01:55:29 +00:00
|
|
|
url = uri("https://repo.papermc.io/repository/maven-public/")
|
2022-04-05 06:00:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
maven {
|
|
|
|
url = uri("https://nexus.telesphoreo.me/repository/plex/")
|
|
|
|
}
|
|
|
|
|
|
|
|
mavenCentral()
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2024-10-16 21:26:39 +00:00
|
|
|
compileOnly("org.projectlombok:lombok:1.18.34")
|
|
|
|
annotationProcessor("org.projectlombok:lombok:1.18.34")
|
|
|
|
compileOnly("io.papermc.paper:paper-api:1.21.1-R0.1-SNAPSHOT")
|
|
|
|
implementation("org.apache.commons:commons-lang3:3.17.0")
|
|
|
|
compileOnly("dev.plex:server:1.5-SNAPSHOT")
|
|
|
|
compileOnly("org.json:json:20240303")
|
|
|
|
implementation("org.jetbrains:annotations:26.0.1")
|
2022-04-05 06:00:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
group = "dev.plex"
|
2024-10-16 21:26:39 +00:00
|
|
|
version = "1.5-SNAPSHOT"
|
2022-05-08 19:02:49 +00:00
|
|
|
description = "The Guilds module for Plex"
|
2022-04-05 06:00:05 +00:00
|
|
|
|
|
|
|
java {
|
2024-10-16 21:26:39 +00:00
|
|
|
toolchain.languageVersion.set(JavaLanguageVersion.of(21))
|
2022-04-05 06:00:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
publishing {
|
|
|
|
publications {
|
|
|
|
create<MavenPublication>("maven") {
|
|
|
|
from(components["java"])
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
tasks.getByName<Jar>("jar") {
|
2023-09-08 22:40:39 +00:00
|
|
|
archiveBaseName.set("Module-Guilds")
|
2022-04-05 06:00:05 +00:00
|
|
|
archiveVersion.set("")
|
|
|
|
}
|
|
|
|
|
|
|
|
tasks {
|
2022-05-08 19:02:49 +00:00
|
|
|
compileJava {
|
|
|
|
options.encoding = Charsets.UTF_8.name()
|
|
|
|
}
|
2022-04-05 06:00:05 +00:00
|
|
|
javadoc {
|
2022-05-08 19:02:49 +00:00
|
|
|
options.encoding = Charsets.UTF_8.name()
|
2022-04-05 06:00:05 +00:00
|
|
|
}
|
2022-05-08 19:02:49 +00:00
|
|
|
processResources {
|
|
|
|
filteringCharset = Charsets.UTF_8.name()
|
2022-05-08 05:54:22 +00:00
|
|
|
}
|
2022-05-08 19:02:49 +00:00
|
|
|
}
|