forked from VazkiiMods/Patchouli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.gradle
31 lines (29 loc) · 915 Bytes
/
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
pluginManagement {
plugins {
id 'net.neoforged.gradle.userdev' version '7.0.142' apply false
id 'org.spongepowered.mixin' version '0.7-SNAPSHOT' apply false
id 'org.spongepowered.gradle.vanilla' version '0.2.1-SNAPSHOT' apply false
id 'fabric-loom' version '1.6-SNAPSHOT' apply false
}
repositories {
maven {
name = 'Fabric'
url = 'https://maven.fabricmc.net/'
}
maven {
name = 'NeoForge'
url = 'https://maven.neoforged.net/releases'
}
maven {
name = 'Sponge'
url = 'https://repo.spongepowered.org/repository/maven-public/'
}
gradlePluginPortal()
}
}
plugins {
// Required for NeoGradle
id 'org.gradle.toolchains.foojay-resolver-convention' version '0.8.0'
}
rootProject.name = 'Patchouli'
include("Xplat", "Fabric", "NeoForge")