-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
194 lines (159 loc) · 5.61 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
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
buildscript {
repositories {
maven { url = 'https://repo.u-team.info' }
}
dependencies {
classpath 'info.u-team.curse_gradle_uploader:curse_gradle_uploader:1.5.0'
classpath 'com.github.breadmoirai:github-release:2.3.7'
}
}
plugins {
id 'eclipse'
id 'maven-publish'
id 'net.minecraftforge.gradle' version '5.1.+'
id 'org.parchmentmc.librarian.forgegradle' version '1.+'
id 'com.github.breadmoirai.github-release' version '2.3.7'
}
if(System.getenv("CI_VERSION")) {
version = System.getenv("CI_VERSION")
} else {
def stdout = new ByteArrayOutputStream()
exec {
commandLine 'git', 'describe', '--tags', '--abbrev=0'
standardOutput = stdout
}
version = stdout.toString().replace("\n", "").replace("\r", "").trim()
}
group = 'ca.fireball1725.devworld' // http://maven.apache.org/guides/mini/guide-naming-conventions.html
archivesBaseName = "${project.name}"
// Mojang ships Java 17 to end users in 1.18+, so your mod should target Java 17.
java.toolchain.languageVersion = JavaLanguageVersion.of(17)
println "Java: ${System.getProperty 'java.version'}, JVM: ${System.getProperty 'java.vm.version'} (${System.getProperty 'java.vendor'}), Arch: ${System.getProperty 'os.arch'}"
minecraft {
mappings channel: 'official', version: '1.19'
runs {
client {
workingDirectory project.file('run')
property 'forge.logging.markers', 'REGISTRIES'
property 'forge.logging.console.level', 'debug'
property 'forge.enabledGameTestNamespaces', 'devworld'
mods {
devworld {
source sourceSets.main
}
}
}
server {
workingDirectory project.file('run')
property 'forge.logging.markers', 'REGISTRIES'
property 'forge.logging.console.level', 'debug'
property 'forge.enabledGameTestNamespaces', 'devworld'
mods {
devworld {
source sourceSets.main
}
}
}
gameTestServer {
workingDirectory project.file('run')
property 'forge.logging.markers', 'REGISTRIES'
property 'forge.logging.console.level', 'debug'
property 'forge.enabledGameTestNamespaces', 'devworld'
mods {
devworld {
source sourceSets.main
}
}
}
data {
workingDirectory project.file('run')
property 'forge.logging.markers', 'REGISTRIES'
property 'forge.logging.console.level', 'debug'
args '--mod', 'devworld', '--all', '--output', file('src/generated/resources/'), '--existing', file('src/main/resources/')
mods {
devworld {
source sourceSets.main
}
}
}
}
}
sourceSets.main.resources { srcDir 'src/generated/resources' }
repositories {
}
dependencies {
minecraft 'net.minecraftforge:forge:1.19-41.1.0'
}
jar {
archiveClassifier.set("${project_type}")
manifest {
attributes([
"Specification-Title" : "DevWorld3",
"Specification-Vendor" : "FireBall1725",
"Specification-Version" : "1", // We are version 1 of ourselves
"Implementation-Title" : "${project_name}",
"Implementation-Version" : "${project.version}",
"Implementation-Vendor" : "FireBall1725",
"Implementation-Timestamp": new Date().format("yyyy-MM-dd'T'HH:mm:ssZ")
])
}
}
jar.finalizedBy('reobfJar')
publishing {
publications {
mavenJava(MavenPublication) {
groupId project.group
artifactId project.archivesBaseName
version project.version
artifact jar
pom.withXml {
// Go through all the dependencies.
asNode().dependencies.dependency.each { dep ->
println 'Surpressing artifact ' + dep.artifactId.last().value().last() + ' from maven dependencies.'
assert dep.parent().remove(dep)
}
}
}
}
repositories {
maven {
url = uri("file://${System.getenv("local_maven")}")
}
}
}
tasks.withType(JavaCompile).configureEach {
options.encoding = 'UTF-8' // Use the UTF-8 charset for Java compilation
}
apply plugin: 'info.u_team.curse_gradle_uploader'
curseforge {
apiKey = System.getenv('CURSE_API_KEY') ?: ''
project {
id = curse_project_id
changelog = file('CHANGELOG.md')
releaseType = curse_release_type
addGameVersion minecraft_version
mainArtifact(jar) {
}
}
}
apply plugin: 'com.github.breadmoirai.github-release'
String readChangelogString(String filePath) {
File file = new File(filePath)
if(file.exists()) {
return file.text
}
return ""
}
githubRelease {
token System.getenv("GITHUB_TOKEN") ?: "InvalidP@ssword"
owner System.getenv("CIRCLE_PROJECT_USERNAME") ?: ""
repo System.getenv("CIRCLE_PROJECT_REPONAME") ?: ""
targetCommitish = System.getenv("CIRCLE_SHA1") ?: ""
body {
return readChangelogString("CHANGELOG.md")
}
releaseAssets jar.destinationDir.listFiles()
overwrite true
tagName = project.version
releaseName = "v${project.version}"
}