mirror of
https://github.com/plexusorg/Module-HTTPD.git
synced 2024-10-31 17:37:10 +00:00
96 lines
2.3 KiB
Plaintext
96 lines
2.3 KiB
Plaintext
plugins {
|
|
java
|
|
`maven-publish`
|
|
idea
|
|
// id("com.github.johnrengelman.shadow") version "7.1.2"
|
|
}
|
|
|
|
group = "dev.plex"
|
|
version = "1.0"
|
|
description = "Module-HTTPD"
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
|
|
maven {
|
|
url = uri("https://papermc.io/repo/repository/maven-public/")
|
|
}
|
|
|
|
maven {
|
|
url = uri("https://nexus.telesphoreo.me/repository/plex/")
|
|
}
|
|
|
|
maven {
|
|
url = uri("https://nexus.telesphoreo.me/repository/totalfreedom/")
|
|
}
|
|
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")
|
|
implementation("dev.plex:Plex:0.10-SNAPSHOT")
|
|
implementation("org.json:json:20220320")
|
|
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("")
|
|
// 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
|
|
}
|
|
|