2022-04-01 05:14:49 +00:00
|
|
|
plugins {
|
|
|
|
java
|
|
|
|
`maven-publish`
|
|
|
|
}
|
|
|
|
|
|
|
|
repositories {
|
|
|
|
maven {
|
2023-03-03 05:13:19 +00:00
|
|
|
url = uri("https://repo.papermc.io/repository/maven-public/")
|
2022-04-01 05:14:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
maven {
|
|
|
|
url = uri("https://nexus.telesphoreo.me/repository/plex/")
|
|
|
|
}
|
|
|
|
|
|
|
|
mavenCentral()
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2023-03-03 05:13:19 +00:00
|
|
|
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")
|
2022-11-28 04:23:06 +00:00
|
|
|
compileOnly("dev.plex:server:1.3-SNAPSHOT")
|
2022-04-01 05:14:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
group = "dev.plex"
|
|
|
|
version = "1.0"
|
|
|
|
description = "ExampleModule"
|
|
|
|
|
|
|
|
java {
|
|
|
|
toolchain.languageVersion.set(JavaLanguageVersion.of(17))
|
|
|
|
}
|
|
|
|
|
|
|
|
publishing {
|
|
|
|
publications {
|
|
|
|
create<MavenPublication>("maven") {
|
|
|
|
from(components["java"])
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
tasks.getByName<Jar>("jar") {
|
|
|
|
archiveBaseName.set("Plex-ExampleModule")
|
|
|
|
archiveVersion.set("")
|
|
|
|
}
|
|
|
|
|
|
|
|
tasks {
|
2022-05-09 02:24:19 +00:00
|
|
|
compileJava {
|
|
|
|
options.encoding = Charsets.UTF_8.name()
|
|
|
|
}
|
2022-04-01 05:14:49 +00:00
|
|
|
javadoc {
|
2022-05-09 02:24:19 +00:00
|
|
|
options.encoding = Charsets.UTF_8.name()
|
2022-04-01 05:14:49 +00:00
|
|
|
}
|
2022-05-09 02:24:19 +00:00
|
|
|
processResources {
|
|
|
|
filteringCharset = Charsets.UTF_8.name()
|
2022-05-08 18:55:31 +00:00
|
|
|
}
|
|
|
|
}
|