mirror of
https://github.com/plexusorg/ItemizerX.git
synced 2024-11-09 22:46:06 +00:00
64 lines
1.6 KiB
Plaintext
64 lines
1.6 KiB
Plaintext
plugins {
|
|
id("java")
|
|
id("com.github.johnrengelman.shadow") version "8.1.1"
|
|
}
|
|
|
|
group = "dev.plex"
|
|
version = "2.1"
|
|
|
|
subprojects {
|
|
apply(plugin = "java")
|
|
apply(plugin = "com.github.johnrengelman.shadow")
|
|
java.sourceCompatibility = JavaVersion.VERSION_17
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
|
|
maven {
|
|
url = uri("https://repo.codemc.org/repository/nms/")
|
|
}
|
|
|
|
maven {
|
|
url = uri("https://repo.papermc.io/repository/maven-public/")
|
|
}
|
|
|
|
maven {
|
|
url = uri("https://maven.playpro.com/")
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
if (project.name != "shared") {
|
|
implementation(project(":shared"))
|
|
}
|
|
|
|
compileOnly("net.coreprotect:coreprotect:21.3")
|
|
}
|
|
}
|
|
|
|
tasks {
|
|
shadowJar {
|
|
archiveBaseName.set("ItemizerX")
|
|
archiveClassifier.set("")
|
|
archiveVersion.set("")
|
|
}
|
|
assemble {
|
|
dependsOn("shadowJar")
|
|
}
|
|
|
|
jar {
|
|
enabled = false
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation(project(path = ":core", configuration = "shadow"))
|
|
implementation(project(path = ":shared", configuration = "shadow"))
|
|
implementation(project(path = ":v1_20_R1", configuration = "shadow"))
|
|
implementation(project(path = ":v1_19_R3", configuration = "shadow"))
|
|
implementation(project(path = ":v1_19_R2", configuration = "shadow"))
|
|
implementation(project(path = ":v1_19_R1", configuration = "shadow"))
|
|
implementation(project(path = ":v1_18_R2", configuration = "shadow"))
|
|
implementation(project(path = ":v1_18_R1", configuration = "shadow"))
|
|
implementation(project(path = ":v1_17_R1", configuration = "shadow"))
|
|
} |