aboutsummaryrefslogtreecommitdiff
path: root/settings.gradle
blob: 6931c9f534c48d9f9123ba3e317a9451e0dfbb65 (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
29
30
31
32
33
34
35
36
37
38
39
40
pluginManagement {
    repositories {
        gradlePluginPortal()
        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 '0.8.0'
}

rootProject.name = 'spark'
include (
        'spark-api',
        'spark-common',
        'spark-bukkit',
        'spark-paper',
        'spark-bungeecord',
        'spark-velocity',
        'spark-velocity4',
        'spark-sponge7',
        'spark-sponge8',
        'spark-forge',
        'spark-neoforge',
        'spark-fabric',
        'spark-nukkit',
        'spark-waterdog',
        //'spark-minestom', // disabled until minestom publish their maven artifacts to a proper repo
)