-
Notifications
You must be signed in to change notification settings - Fork 14
/
build.gradle
110 lines (85 loc) · 2.78 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
buildscript {
repositories {
jcenter()
mavenCentral()
maven { url = "http://files.minecraftforge.net/maven" }
}
dependencies {
classpath 'net.minecraftforge.gradle:ForgeGradle:2.3-SNAPSHOT'
classpath 'org.jetbrains.kotlin:kotlin-gradle-plugin:1.3.50'
}
}
apply plugin: 'net.minecraftforge.gradle.forge'
apply plugin: 'kotlin'
version = "0.0.3"
group = "com.jozufozu.exnihiloomnia"
archivesBaseName = "exnihiloomnia"
sourceCompatibility = targetCompatibility = compileJava.sourceCompatibility = compileJava.targetCompatibility = compileKotlin.kotlinOptions.jvmTarget = compileTestKotlin.kotlinOptions.jvmTarget = '1.8' // Need this here so eclipse task generates correctly.
minecraft {
version = project.mc_version + "-" + project.forge_version
runDir = "run"
replace '@VERSION@', project.mc_version + "-" + project.version
mappings = "snapshot_20170624"
}
repositories {
jcenter()
maven {
// location of the maven that hosts JEI files
name = "Progwml6 maven"
url = "http://dvs1.progwml6.com/files/maven"
}
maven {
// location of a maven mirror for JEI files, as a fallback
name = "ModMaven"
url = "modmaven.k-4u.nl"
}
maven { // TOP
name = 'tterrag maven'
url = "http://maven.tterrag.com/"
}
maven {
name = "CoFH Maven"
url = "http://maven.covers1624.net"
}
maven { //Albedo
url = 'https://repo.elytradev.com/'
}
maven {
url = "http://maven.shadowfacts.net/"
}
}
dependencies {
compile group: "net.shadowfacts", name: "Forgelin", version: "1.8.4"
deobfCompile "mezz.jei:jei_${mc_version}:${jei_version}"
deobfCompile "mcjty.theoneprobe:TheOneProbe-1.12:1.12-${top_version}"
//deobfCompile 'elucent:albedo:2.0-SNAPSHOT'
}
processResources {
inputs.property "version", project.version
inputs.property "mcversion", project.minecraft.version
from(sourceSets.main.resources.srcDirs) {
include 'mcmod.info'
expand 'version':project.version, 'mcversion':project.minecraft.version
}
from(sourceSets.main.resources.srcDirs) {
exclude 'mcmod.info'
}
}
jar {
archiveName = baseName + "_" + project.mc_version + "-" + project.version + "." + extension
exclude "**/*.bat"
exclude "**/*.psd"
exclude "**/*.exe"
}
task srcJar(type: Jar) {
from sourceSets.main.allSource
archiveName = baseName + "_" + project.mc_version + "-" + project.version + "-sources." + extension
}
task deobfJar(type: Jar) {
from sourceSets.main.output
archiveName = baseName + "_" + project.mc_version + "-" + project.version + "-deobf." + extension
}
// Tell the artifact system about our extra jars
artifacts {
archives srcJar, deobfJar
}