forked from webbukkit/dynmap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.gradle
57 lines (54 loc) · 2.63 KB
/
settings.gradle
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
pluginManagement {
repositories {
gradlePluginPortal()
maven { url "https://papermc.io/repo/repository/maven-public/" }
maven { url "https://maven.fabricmc.net/" }
}
}
rootProject.name = 'dynmap-common'
include ':spigot'
include ':bukkit-helper-113-2'
include ':bukkit-helper-114-1'
include ':bukkit-helper-115'
include ':bukkit-helper-116'
include ':bukkit-helper-116-2'
include ':bukkit-helper-116-3'
include ':bukkit-helper-116-4'
include ':bukkit-helper-117'
include ':bukkit-helper-118'
include ':bukkit-helper-118-2'
include ':bukkit-helper-119'
include ':bukkit-helper-119-3'
include ':bukkit-helper-119-4'
include ':bukkit-helper-120'
include ':bukkit-helper-120-2'
include ':bukkit-helper-120-4'
include ':bukkit-helper-120-5'
include ':bukkit-helper-121'
include ':bukkit-helper'
include ':dynmap-api'
include ':DynmapCore'
include ':DynmapCoreAPI'
project(':spigot').projectDir = "$rootDir/spigot" as File
project(':bukkit-helper-113-2').projectDir = "$rootDir/bukkit-helper-113-2" as File
project(':bukkit-helper-114-1').projectDir = "$rootDir/bukkit-helper-114-1" as File
project(':bukkit-helper-115').projectDir = "$rootDir/bukkit-helper-115" as File
project(':bukkit-helper-116').projectDir = "$rootDir/bukkit-helper-116" as File
project(':bukkit-helper-116-2').projectDir = "$rootDir/bukkit-helper-116-2" as File
project(':bukkit-helper-116-3').projectDir = "$rootDir/bukkit-helper-116-3" as File
project(':bukkit-helper-116-4').projectDir = "$rootDir/bukkit-helper-116-4" as File
project(':bukkit-helper-117').projectDir = "$rootDir/bukkit-helper-117" as File
project(':bukkit-helper-118').projectDir = "$rootDir/bukkit-helper-118" as File
project(':bukkit-helper-118-2').projectDir = "$rootDir/bukkit-helper-118-2" as File
project(':bukkit-helper-119').projectDir = "$rootDir/bukkit-helper-119" as File
project(':bukkit-helper-119-3').projectDir = "$rootDir/bukkit-helper-119-3" as File
project(':bukkit-helper-119-4').projectDir = "$rootDir/bukkit-helper-119-4" as File
project(':bukkit-helper-120').projectDir = "$rootDir/bukkit-helper-120" as File
project(':bukkit-helper-120-2').projectDir = "$rootDir/bukkit-helper-120-2" as File
project(':bukkit-helper-120-4').projectDir = "$rootDir/bukkit-helper-120-4" as File
project(':bukkit-helper-120-5').projectDir = "$rootDir/bukkit-helper-120-5" as File
project(':bukkit-helper-121').projectDir = "$rootDir/bukkit-helper-121" 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