-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
44 lines (34 loc) · 901 Bytes
/
build.gradle
File metadata and controls
44 lines (34 loc) · 901 Bytes
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
buildscript {
repositories {
maven { url = "https://maven.minecraftforge.net/" }
}
dependencies {
classpath("net.minecraftforge.gradle:ForgeGradle:5.+")
}
}
apply plugin: 'net.minecraftforge.gradle'
group = 'me.jiyun233'
version = '1.0-SNAPSHOT'
repositories {
mavenCentral()
}
dependencies {
minecraft "net.minecraftforge:forge:1.12.2-14.23.5.2860"
}
minecraft {
mappings channel: "stable", version: "39-1.12"
runs {
client {
workingDirectory project.file('run')
property 'forge.logging.markers', 'SCAN,REGISTRIES,REGISTRYDUMP'
property 'forge.logging.console.level', 'debug'
}
}
}
processResources {
inputs.property 'version', project.version
from(sourceSets.main.resources.srcDirs) {
duplicatesStrategy = DuplicatesStrategy.INCLUDE
include 'mcmod.info'
}
}