-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
build.gradle
35 lines (25 loc) · 1.09 KB
/
build.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
32
33
34
35
plugins {
id 'fabric-loom' version '1.2-SNAPSHOT'
}
apply from: 'https://dawnteammc.github.io/resources/gradle_scripts/fabric-mod/java-17.gradle'
repositories {
maven { url 'https://jitpack.io' } // Required for Dawn API
maven { url 'https://maven.terraformersmc.com/' } // Required for Mod Menu and Terraform APIs
maven { url 'https://maven.shedaniel.me/' } // Required for Cloth Config
maven { url 'https://maven.ryanliptak.com/' } // Required for AppleSkin
maven { url 'https://maven.minecraftforge.net/' } // Required for TerraBlender
maven { url 'https://www.cursemaven.com' } // Required for Columns
}
dependencies {
modApi "com.github.DawnTeamMC:DawnAPI:${dawn_version}"
includeMod "com.terraformersmc:biolith:${biolith_version}"
/* TODO haykam
modImplementation ("curse.maven:columns-385230:${columns_version}"){
exclude(group: "net.fabricmc.fabric-api")
}
*/
compileOnly "com.google.code.findbugs:jsr305:3.0.2"
}
loom {
accessWidenerPath = file("src/main/resources/promenade.accesswidener")
}