-
Notifications
You must be signed in to change notification settings - Fork 17
/
build.gradle
39 lines (33 loc) · 894 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
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
apply plugin: "base"
apply plugin: "java"
apply plugin: "eclipse"
apply plugin: "idea"
sourceCompatibility = targetCompatibility = 1.8
version = "1.4.2"
group = "io.github.zekerzhayard"
archivesBaseName = rootProject.name
repositories {
maven {
name = "forge"
url = "https://files.minecraftforge.net/maven/"
}
}
dependencies {
compile "cpw.mods:modlauncher:4.1.0"
compile "net.minecraftforge:forge:1.14.4-28.2.0:installer"
}
jar {
manifest.attributes(
"Main-Class": "io.github.zekerzhayard.forgewrapper.converter.Main"
)
}
processResources {
inputs.property "version", project.version
from(sourceSets.main.resources.srcDirs) {
include "patches/net.minecraftforge.json"
expand "version": project.version
}
from(sourceSets.main.resources.srcDirs) {
exclude "patches/net.minecraftforge.json"
}
}