Module-HTTPD/build.gradle.kts

96 lines
2.3 KiB
Plaintext
Raw Normal View History

2022-04-02 03:59:47 +00:00
plugins {
java
`maven-publish`
idea
}
2022-04-02 04:14:12 +00:00
group = "dev.plex"
2022-04-13 01:16:47 +00:00
version = "1.0.1"
2022-04-02 04:14:12 +00:00
description = "Module-HTTPD"
2022-04-02 03:59:47 +00:00
repositories {
2022-04-04 07:21:36 +00:00
mavenLocal()
2022-04-02 03:59:47 +00:00
mavenCentral()
2022-04-02 04:14:12 +00:00
2022-04-02 03:59:47 +00:00
maven {
url = uri("https://papermc.io/repo/repository/maven-public/")
}
maven {
2022-04-02 04:14:12 +00:00
url = uri("https://nexus.telesphoreo.me/repository/plex/")
2022-04-02 03:59:47 +00:00
}
maven {
2022-04-02 04:14:12 +00:00
url = uri("https://nexus.telesphoreo.me/repository/totalfreedom/")
2022-04-02 03:59:47 +00:00
}
maven {
url = uri("https://jitpack.io")
}
}
dependencies {
implementation("org.projectlombok:lombok:1.18.22")
annotationProcessor("org.projectlombok:lombok:1.18.22")
implementation("io.papermc.paper:paper-api:1.18.2-R0.1-SNAPSHOT")
2022-04-09 03:21:42 +00:00
implementation("dev.plex:Plex:1.0")
2022-04-02 04:14:12 +00:00
implementation("org.json:json:20220320")
2022-04-02 03:59:47 +00:00
implementation("org.reflections:reflections:0.10.2")
implementation("org.eclipse.jetty:jetty-server:11.0.8")
implementation("org.eclipse.jetty:jetty-servlet:11.0.8")
implementation("org.eclipse.jetty:jetty-proxy:11.0.8")
implementation("com.github.MilkBowl:VaultAPI:1.7")
}
tasks {
compileJava {
options.encoding = Charsets.UTF_8.name() // We want UTF-8 for everything
// Set the release flag. This configures what version bytecode the compiler will emit, as well as what JDK APIs are usable.
// See https://openjdk.java.net/jeps/247 for more information.
options.release.set(17)
}
javadoc {
options.encoding = Charsets.UTF_8.name() // We want UTF-8 for everything
}
processResources {
filteringCharset = Charsets.UTF_8.name() // We want UTF-8 for everything
}
}
publishing {
publications {
create<MavenPublication>("maven") {
from(components["java"])
}
}
}
tasks.getByName<Jar>("jar") {
// duplicatesStrategy = DuplicatesStrategy.EXCLUDE
archiveBaseName.set("Plex-HTTPD")
archiveVersion.set("")
2022-04-02 03:59:47 +00:00
// from("src/main/resources") {
// include("**/**")
// }
// from("src/main/java") {
// include("**/**")
// }
}
sourceSets {
main {
resources {
srcDirs("src/main/java", "src/main/resources")
include("**/**")
exclude("**/**.java")
}
}
}
tasks.getByName<Copy>("processResources") {
duplicatesStrategy = DuplicatesStrategy.EXCLUDE
}