mirror of
https://github.com/GeyserMC/PackConverter.git
synced 2025-12-19 14:59:21 +00:00
* Attempt at fixing published artifact * wohoo it works * attempt at excluding bootstrap's shadow jar from publishing * Update gradle, fix publishing (aka, dont publish shadowed bootstrap build to maven) * Don't apply shadow plugin for the converter * why are we publishing the lib as an artifact...? * make these implementation * Shade bedrock-pack-schema into pack-schema-api
13 lines
318 B
Plaintext
13 lines
318 B
Plaintext
plugins {
|
|
id("pack.base-conventions")
|
|
}
|
|
|
|
subprojects{
|
|
plugins.apply("pack.base-conventions")
|
|
plugins.apply("pack.publish-conventions")
|
|
group = "org.geysermc.pack"
|
|
version = "3.1-SNAPSHOT"
|
|
|
|
java.sourceCompatibility = JavaVersion.VERSION_17
|
|
java.targetCompatibility = JavaVersion.VERSION_17
|
|
} |