-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.gradle
179 lines (151 loc) · 4.81 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
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
buildscript {
repositories {
maven { url = 'https://files.minecraftforge.net/maven' }
jcenter()
mavenCentral()
maven {url = 'https://dist.creeper.host/Sponge/maven' }
}
dependencies {
classpath group: 'net.minecraftforge.gradle', name: 'ForgeGradle', version: '3.+', changing: true
classpath 'org.spongepowered:mixingradle:0.7-SNAPSHOT'
}
}
plugins {
id 'eclipse'
id 'maven-publish'
id 'maven'
id 'signing'
}
apply plugin: 'net.minecraftforge.gradle'
apply plugin: 'org.spongepowered.mixin'
String semver = version_major + '.' + version_api + '.' + version_minor
version = mc + '-' + semver + '.' + version_patch
group = website
archivesBaseName = modId
sourceCompatibility = targetCompatibility = JavaVersion.VERSION_1_8
compileJava {
sourceCompatibility = targetCompatibility = JavaVersion.VERSION_1_8
}
sourceSets {
api
main
main.resources.srcDirs += 'src/generated/resources'
}
configurations {
apiCompile.extendsFrom(compile)
}
println('Java: ' + System.getProperty('java.version') + ' JVM: ' + System.getProperty('java.vm.version') + '(' + System.getProperty('java.vendor') + ') Arch: ' + System.getProperty('os.arch'))
minecraft {
mappings channel: 'snapshot', version: mappingsVersion
// accessTransformer = file('src/main/resources/META-INF/accesstransformer.cfg')
runs {
client {
workingDirectory project.file('run')
arg '-mixin.config=' + modId + '.mixins.json'
property 'forge.logging.markers', 'SCAN,REGISTRIES,REGISTRYDUMP'
property 'forge.logging.console.level', 'debug'
mods {
paranoia {
source sourceSets.main
source sourceSets.api
}
}
}
server {
workingDirectory project.file('run')
arg '-mixin.config=' + modId + '.mixins.json'
property 'forge.logging.markers', 'SCAN,REGISTRIES,REGISTRYDUMP'
property 'forge.logging.console.level', 'debug'
mods {
paranoia {
source sourceSets.main
source sourceSets.api
}
}
}
data {
workingDirectory project.file('run')
property 'forge.logging.markers', 'SCAN,REGISTRIES,REGISTRYDUMP'
property 'forge.logging.console.level', 'debug'
args '--mod', 'paranoia', '--all', '--output', file('src/generated/resources/'), '--existing', file('src/main/resources')
mods {
paranoia {
source sourceSets.main
source sourceSets.api
}
}
}
}
}
dependencies {
minecraft 'net.minecraftforge:forge:' + mc + '-' + forge
implementation sourceSets.api.output
}
jar {
from sourceSets.main.output.classesDirs
from sourceSets.main.output.resourcesDir
from sourceSets.api.output.classesDirs
from sourceSets.api.output.resourcesDir
manifest {
attributes([
"Specification-Title": "Paranoia",
"Specification-Vendor": "ChampionAsh5357",
"Specification-Version": semver,
"Implementation-Title": project.name,
"Implementation-Version": "${version}",
"Implementation-Vendor" :"ChampionAsh5357",
"Implementation-Timestamp": new Date().format("yyyy-MM-dd'T'HH:mm:ssZ"),
"MixinConfigs": "${modId}.mixins.json"
])
}
}
jar.finalizedBy('reobfJar')
task javadocJar(type: Jar, dependsOn: javadoc) {
classifier = "javadoc"
from javadoc.destinationDir
}
task sourcesJar(type: Jar) {
classifier = "sources"
from sourceSets.main.allJava
from sourceSets.api.allJava
}
task apiJar(type: Jar) {
classifier = "api"
from sourceSets.api.output
from sourceSets.api.allJava
}
artifacts {
archives javadocJar
archives sourcesJar
archives apiJar
}
task("uploadJars", dependsOn: "build") {
uploadArchives {
repositories {
mavenDeployer {
repository(url: "file://${local_maven}")
pom.project {
name="Paranoia"
description="Not Everything is What it Seems"
licenses {
license {
name="GNU Lesser General Public License v3.0"
url="https://www.gnu.org/licenses/lgpl-3.0.html"
}
}
developers {
developer {
name="ChampionAsh5357"
}
}
}
}
}
}
}
signing {
sign configurations.archives
}
mixin {
add sourceSets.main, "${modId}.refmap.json"
}