This repository was archived by the owner on Dec 17, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.gradle
141 lines (119 loc) · 2.95 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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
def corePlugin = "com.mcmoddev.lib.asm.ASMPlugin"
buildscript {
repositories {
jcenter()
maven {
name = "forge"
url = "http://files.minecraftforge.net/maven"
}
maven {
name = "sonatype"
url = "https://oss.sonatype.org/content/groups/public"
}
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "net.minecraftforge.gradle:ForgeGradle:2.2-SNAPSHOT"
}
}
apply plugin: "net.minecraftforge.gradle.forge"
apply plugin: "maven-publish"
sourceCompatibility = targetCompatibility = "1.8"
compileJava {
sourceCompatibility = targetCompatibility = "1.8"
}
def v = "1.10.2-1.0.0"
group = "com.mcmoddev"
archivesBaseName = "MMDLib"
if(System.getenv().BUILD_NUMBER) {
version = v+"."+System.getenv().BUILD_NUMBER
} else {
version = v
}
minecraft {
version = "1.10.2-12.18.3.2185"
runDir = "run"
mappings = "stable_29"
clientJvmArgs = ["-Dfml.coreMods.load=$corePlugin"]
serverJvmArgs = ["-Dfml.coreMods.load=$corePlugin"]
useDepAts = true
}
class Secrets {
def data = null
def getProperty(String key) {
return data ? data[key] : ""
}
}
import groovy.json.JsonSlurper
def secretFile
if (System.getenv().SECRET_FILE) {
secretFile = file System.getenv().SECRET_FILE
} else {
secretFile = file "secret.json"
}
project.ext.secret = new Secrets()
if (secretFile.exists()) {
secretFile.withReader {
project.ext.secret.data = new JsonSlurper().parse it
}
}
jar {
manifest {
attributes "FMLCorePlugin": corePlugin
attributes "FMLCorePluginContainsFMLMod": "true"
attributes "FMLAT" : "mmdlib_at.cfg"
}
}
repositories {
mavenCentral()
}
dependencies {
}
task deobfJar(type: Jar) {
classifier = "deobf"
from sourceSets.main.output
}
artifacts {
// archives apiJar
archives deobfJar
archives sourceJar
}
publishing {
publications {
mavenJava(MavenPublication) {
groupId project.group
artifactId project.archivesBaseName
version project.version
from components.java
artifact sourceJar {
classifier "sources"
}
artifact deobfJar {
classifier "deobf"
}
}
}
repositories {
maven {
credentials {
username secret.username
password secret.password
}
url secret.url
}
}
}
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"
}
rename '(.+_at.cfg)', 'META-INF/$1'
}