forked from devnatan/inventory-framework
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.gradle.kts
More file actions
33 lines (29 loc) · 1022 Bytes
/
settings.gradle.kts
File metadata and controls
33 lines (29 loc) · 1022 Bytes
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
pluginManagement {
includeBuild("build-logic")
}
dependencyResolutionManagement {
repositories {
mavenCentral()
maven("https://jitpack.io")
maven("https://hub.spigotmc.org/nexus/content/repositories/snapshots/")
maven("https://oss.sonatype.org/content/repositories/snapshots")
maven("https://repo.papermc.io/repository/maven-public/")
maven("https://repo.tcoded.com/releases")
}
}
rootProject.name = "inventory-framework"
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
include(
"inventory-framework-test",
"inventory-framework-api",
"inventory-framework-core",
"inventory-framework-platform",
"inventory-framework-platform-paper",
"inventory-framework-platform-bukkit",
"inventory-framework-platform-minestom",
"inventory-framework-anvil-input",
"example-paper",
"example-minestom"
)
project(":example-paper").projectDir = file("examples/paper")
project(":example-minestom").projectDir = file("examples/minestom")