-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
build.gradle
22 lines (17 loc) · 917 Bytes
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
plugins {
id 'fabric-loom' version '1.0-SNAPSHOT'
}
apply from: 'https://dawnteammc.github.io/resources/gradle_scripts/fabric-mod/java-17.gradle'
apply from: 'https://dawnteammc.github.io/resources/gradle_scripts/fabric-publish.gradle'
apply from: 'https://dawnteammc.github.io/resources/gradle_scripts/fabric-translate.gradle'
repositories {
maven { url 'https://jitpack.io' } // Required for Dawn API
maven { url 'https://maven.terraformersmc.com/' } // Required for Mod Menu
maven { url 'https://maven.shedaniel.me/' } // Required for Cloth Config
maven { url 'https://maven.ryanliptak.com/' } // Required for AppleSkin
}
dependencies {
modApi "com.github.DawnTeamMC:DawnAPI:v${dawn_version}"
// modImplementation "me.shedaniel.cloth:cloth-config-fabric:${cloth_version}"
// include "me.shedaniel.cloth:cloth-config-fabric:${cloth_version}"
}