1
0
mirror of https://github.com/GeyserMC/PackConverter.git synced 2025-12-19 14:59:21 +00:00

Merge pull request #19 from onebeastchris/ooops

Don't provide bedrock-pack-schema in the pack-schema-api artifact
This commit is contained in:
chris
2024-03-18 14:11:57 +01:00
committed by GitHub
2 changed files with 2 additions and 1 deletions

View File

@@ -12,6 +12,7 @@ sourceSets {
dependencies {
api(project(":pack-schema-api"))
compileOnly(project(":bedrock-pack-schema")) // Is provided by pack-schema-api for consumers, but not for us during compile time
implementation("com.google.code.gson:gson:2.10.1")
implementation("commons-io:commons-io:2.11.0")
implementation("com.twelvemonkeys.imageio:imageio-tga:3.9.4")

View File

@@ -1,5 +1,5 @@
dependencies {
compileOnlyApi(project(":bedrock-pack-schema")) // Available on compile, but not runtime classpath - we shade it in task below
compileOnly(project(":bedrock-pack-schema")) // Available on compile, but not runtime classpath - we shade it in task below
implementation("com.google.code.gson:gson:2.10.1")
implementation("org.jetbrains:annotations:24.0.1")
}