-
Notifications
You must be signed in to change notification settings - Fork 9
/
settings.gradle
37 lines (29 loc) · 1.06 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
pluginManagement {
repositories {
gradlePluginPortal()
maven {
url "https://papermc.io/repo/repository/maven-public/"
}
maven {
url "https://repo.jpenilla.xyz/snapshots/"
}
}
}
rootProject.name = 'NtRpgParent'
include ':Generator',
':Common',
':Database-Persistence',
':FlatFiles-Persistence',
':Common-Persistence-Test',
':Spigot-NMS',
':Spigot-118',
':Spigot-119',
':Spigot'
project(':Common').projectDir = file('Common')
project(':Database-Persistence').projectDir = file('Peristence/Database')
project(':FlatFiles-Persistence').projectDir = file('Peristence/FlatFiles')
project(':Common-Persistence-Test').projectDir = file('Peristence/Common-Tests')
project(':Spigot').projectDir = file('Implementations/Spigot')
project(':Spigot-NMS').projectDir = file('Implementations/Spigot-Lib/NMS')
project(':Spigot-118').projectDir = file('Implementations/Spigot-Lib/1.18')
project(':Spigot-119').projectDir = file('Implementations/Spigot-Lib/1.19')