forked from GeyserMC/PackConverter
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.gradle.kts
More file actions
39 lines (29 loc) · 1.08 KB
/
settings.gradle.kts
File metadata and controls
39 lines (29 loc) · 1.08 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
@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")
}
}