-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
66 lines (55 loc) · 1.64 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
plugins {
id 'java'
id 'xyz.wagyourtail.unimined' version '0.4.10-SNAPSHOT'
}
group 'com.example'
version '1.0.0'
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
repositories {
mavenCentral()
maven { url "https://maven.wagyourtail.xyz/releases" }
maven { url "https://maven.wagyourtail.xyz/snapshots" }
ivy {
url = "https://github.com/"
patternLayout {
artifact "[organisation]/releases/download/[revision]/[module]"
m2compatible = true
}
metadataSources { artifact() }
}
}
unimined {
useGlobalCache = false
}
minecraft {
clientSourceSets = [sourceSets.main]
jarMod {
devFallbackNamespace = "searge"
}
mcRemapper.tinyRemapperConf = {
ignoreFieldDesc(true)
ignoreConflicts(true)
}
}
mappings {
stub("COMBINED").withMappings(["searge", "mcp"]) {
c("ModLoader", "net/minecraft/src/ModLoader", "net/minecraft/src/ModLoader")
c("BaseMod", "net/minecraft/src/BaseMod", "net/minecraft/src/BaseMod")
}
stub("CLIENT").withMappings(["searge", "mcp"]) {
c("ModLoader", "net/minecraft/src/ModLoader", "net/minecraft/src/ModLoader")
c("BaseMod", "net/minecraft/src/BaseMod", "net/minecraft/src/BaseMod")
}
}
// Add your dependencies here.
dependencies {
minecraft "net.minecraft:minecraft:b1.7.3"
jarMod "risugami:modloader:b1.7.3"
// Uncomment the following line if you want to use Forge
// jarMod "Meefy777.Reforged:reforged-client-1.0.2.zip:1.0.2"
mappings "de.oceanlabs.mcp:mcp_legacy:4.3-b1.7.3@zip"
}
jar {
from('LICENSE')
}