-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
46 lines (36 loc) · 1.21 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
36
37
38
39
40
41
42
43
44
45
46
plugins {
id 'fabric-loom' version '0.2.3-SNAPSHOT'
}
sourceCompatibility = 1.8
targetCompatibility = 1.8
archivesBaseName = "presstowalk"
version = "1.0.2"
minecraft {
}
repositories {
maven { url = "https://maven.fabricmc.net/" }
maven { url = "https://minecraft.curseforge.com/api/maven" }
maven { url = 'http://maven.sargunv.s3-website-us-west-2.amazonaws.com/' }
}
dependencies {
minecraft "com.mojang:minecraft:1.14.2"
mappings "net.fabricmc:yarn:1.14.2+build.2"
modCompile "net.fabricmc:fabric-loader:0.4.8+build.154"
// cloth & autoconfig
modCompile "cloth-config:ClothConfig:0.2.1.14"
modCompile "me.sargunvohra.mcmods:auto-config:1.1.2+mc1.14.1"
// jij
include "cloth-config:ClothConfig:0.2.1.14"
include "me.sargunvohra.mcmods:auto-config:1.0.0+mc1.14"
// mod menu compat
modCompile "io.github.prospector.modmenu:ModMenu:1.5.4-85"
//Fabric api
modCompile "net.fabricmc.fabric-api:fabric-api:0.3.0-pre+build.165"
}
// Loom will automatically attach sourcesJar to a RemapSourcesJar task and to the "build" task
// if it is present.
// If you remove this task, sources will not be generated.
task sourcesJar(type: Jar, dependsOn: classes) {
classifier = 'sources'
from sourceSets.main.allSource
}