Skip to content

Commit

Permalink
Merge pull request #19 from onebeastchris/ooops
Browse files Browse the repository at this point in the history
Don't provide bedrock-pack-schema in the pack-schema-api artifact
  • Loading branch information
onebeastchris authored Mar 18, 2024
2 parents c7fd094 + 47a2b1d commit e35066b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions converter/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand Down
2 changes: 1 addition & 1 deletion pack-schema/api/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -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")
}
Expand Down

0 comments on commit e35066b

Please sign in to comment.