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
31 lines
816 B
Plaintext
31 lines
816 B
Plaintext
@file:Suppress("UnstableApiUsage")
|
|
|
|
rootProject.name = "packconverter-parent"
|
|
|
|
include(":bootstrap")
|
|
include(":converter")
|
|
|
|
include(":pack-schema-api")
|
|
include(":bedrock-pack-schema")
|
|
include(":schema-generator")
|
|
|
|
project(":pack-schema-api").projectDir = file("pack-schema/api")
|
|
project(":bedrock-pack-schema").projectDir = file("pack-schema/bedrock")
|
|
project(":schema-generator").projectDir = file("pack-schema/generator")
|
|
|
|
pluginManagement {
|
|
includeBuild("build-logic")
|
|
}
|
|
|
|
dependencyResolutionManagement {
|
|
repositories {
|
|
mavenCentral()
|
|
|
|
// Geyser, Floodgate, Cumulus etc.
|
|
maven("https://repo.opencollab.dev/main")
|
|
maven("https://repo.opencollab.dev/maven-snapshots")
|
|
|
|
// Java pack library
|
|
maven("https://repo.unnamed.team/repository/unnamed-public/")
|
|
}
|
|
} |