mirror of
https://github.com/GeyserMC/PackConverter.git
synced 2025-12-19 14:59:21 +00:00
39 lines
1.1 KiB
Plaintext
39 lines
1.1 KiB
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/")
|
|
|
|
// This repo is dead.
|
|
// maven { // We need a snapshot version of creative for now
|
|
// url = uri("https://s01.oss.sonatype.org/content/repositories/snapshots/")
|
|
// }
|
|
|
|
// But we still need creative... jitpack it is
|
|
maven("https://jitpack.io")
|
|
}
|
|
} |