-
-
Notifications
You must be signed in to change notification settings - Fork 184
Expand file tree
/
Copy pathsettings.gradle
More file actions
38 lines (36 loc) · 851 Bytes
/
settings.gradle
File metadata and controls
38 lines (36 loc) · 851 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
28
29
30
31
32
33
34
35
36
37
38
pluginManagement {
repositories {
gradlePluginPortal()
mavenCentral()
maven {
name = 'Fabric'
url = 'https://maven.fabricmc.net/'
}
maven {
name = 'Forge'
url = 'https://maven.minecraftforge.net/'
}
maven {
name = 'NeoForge'
url = 'https://maven.neoforged.net/releases'
}
}
}
plugins {
id 'org.gradle.toolchains.foojay-resolver-convention' version '1.0.0'
}
rootProject.name = 'spark'
include (
'spark-api',
'spark-bukkit',
'spark-bungeecord',
'spark-common',
'spark-fabric',
'spark-forge',
'spark-minecraft',
'spark-neoforge',
'spark-paper',
'spark-sponge',
'spark-standalone-agent',
'spark-velocity',
)