-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.gradle
More file actions
34 lines (30 loc) · 1.3 KB
/
settings.gradle
File metadata and controls
34 lines (30 loc) · 1.3 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
pluginManagement {
repositories {
gradlePluginPortal()
maven { url "https://maven.fabricmc.net/" }
maven { url "https://papermc.io/repo/repository/maven-public/" }
}
}
rootProject.name = 'dynmap-common'
include ':spigot'
include ':bukkit-helper-121-6'
include ':bukkit-helper-121-10'
include ':bukkit-helper-121-11'
include ':bukkit-helper'
include ':dynmap-api'
include ':DynmapCore'
include ':DynmapCoreAPI'
// include ':fabric-1.21.6'
// include ':fabric-1.21.11'
// include ':forge-1.21.6'
project(':spigot').projectDir = "$rootDir/spigot" as File
project(':bukkit-helper-121-6').projectDir = "$rootDir/bukkit-helper-121-6" as File
project(':bukkit-helper-121-10').projectDir = "$rootDir/bukkit-helper-121-10" as File
project(':bukkit-helper-121-11').projectDir = "$rootDir/bukkit-helper-121-11" as File
project(':bukkit-helper').projectDir = "$rootDir/bukkit-helper" as File
project(':dynmap-api').projectDir = "$rootDir/dynmap-api" as File
project(':DynmapCore').projectDir = "$rootDir/DynmapCore" as File
project(':DynmapCoreAPI').projectDir = "$rootDir/DynmapCoreAPI" as File
// project(':fabric-1.21.6').projectDir = "$rootDir/fabric-1.21.6" as File
// project(':fabric-1.21.11').projectDir = "$rootDir/fabric-1.21.11" as File
// project(':forge-1.21.6').projectDir = "$rootDir/forge-1.21.6" as File