-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.gradle.kts
More file actions
27 lines (25 loc) · 808 Bytes
/
Copy pathsettings.gradle.kts
File metadata and controls
27 lines (25 loc) · 808 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
pluginManagement {
repositories {
gradlePluginPortal()
maven("https://maven.minecraftforge.net/")
}
}
plugins {
id("org.gradle.toolchains.foojay-resolver-convention") version "0.5.0"
}
rootProject.name = "CommandLib"
include("forge", "spigot", "paper")
include("common")
include("common-testing", "spigot-testing", "paper-testing")
include("integration-test")
include(
"integration-test:targets:paper-1.16.5",
"integration-test:targets:mohist-1.16.5",
"integration-test:targets:paper-1.19.4",
"integration-test:targets:paper-1.20.1",
"integration-test:targets:mohist-1.20.1",
"integration-test:targets:paper-1.20.4",
"integration-test:targets:paper-1.20.5",
"integration-test:targets:paper-1.20.6",
"integration-test:targets:paper-1.21.0",
)