mirror of
https://github.com/GeyserMC/PackConverter.git
synced 2025-12-19 14:59:21 +00:00
Proper publishing setup (#17)
* 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
This commit is contained in:
@@ -1,3 +1,5 @@
|
||||
@file:Suppress("UnstableApiUsage")
|
||||
|
||||
rootProject.name = "packconverter-parent"
|
||||
|
||||
include(":bootstrap")
|
||||
@@ -9,4 +11,21 @@ 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")
|
||||
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/")
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user