blob: fc72d025e1523e69cb3f39dd4e2ff1262d1761a9 (
plain)
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
|
pluginManagement {
repositories {
jcenter()
maven {
name = 'Fabric'
url = 'https://maven.fabricmc.net/'
}
gradlePluginPortal()
}
}
rootProject.name = 'spark'
include (
'spark-api',
'spark-common',
'spark-bukkit',
'spark-bungeecord',
'spark-velocity',
'spark-velocity4',
'spark-sponge',
'spark-sponge8',
'spark-forge',
'spark-forge1122',
'spark-fabric',
'spark-nukkit',
'spark-waterdog',
'spark-universal'
)
|