1
0
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:
chris
2024-03-13 15:34:58 +01:00
committed by GitHub
parent 0a1114b22f
commit 7a2caf6f5d
11 changed files with 108 additions and 79 deletions

View File

@@ -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/")
}
}