-
Notifications
You must be signed in to change notification settings - Fork 2
/
build.gradle
169 lines (142 loc) · 4.39 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
plugins {
id "dev.architectury.loom" version "0.12.0-SNAPSHOT"
id "com.matthewprenger.cursegradle" version "1.4.0"
id "maven-publish"
}
def ENV = System.getenv()
sourceCompatibility = targetCompatibility = JavaVersion.VERSION_17
version = project.mod_version
group = project.maven_group
archivesBaseName = project.archives_base_name
// needs to be done AFTER version is set
apply from: "https://raw.githubusercontent.com/FTBTeam/mods-meta/main/gradle/publishing.gradle"
loom {
silentMojangMappingsLicense()
forge {
// specify the mixin configs used in this mod
// this will be added to the jar manifest as well!
mixinConfigs = [
"ftbteamdimensions.mixins.json"
]
dataGen {
mod project.mod_id
}
}
launches {
data {
arg "--existing", file("src/main/resources").absolutePath
}
}
}
repositories {
mavenLocal()
maven {
name = 'ParchmentMC'
url = 'https://maven.parchmentmc.org'
}
maven {
url "https://maven.saps.dev/minecraft"
}
maven {
url "https://maven.nanite.dev/releases"
}
maven {
url "https://www.cursemaven.com"
content {
includeGroup "curse.maven"
}
}
}
dependencies {
// to change the versions see the gradle.properties file
minecraft "com.mojang:minecraft:${project.minecraft_version}"
mappings loom.layered() {
officialMojangMappings()
parchment("org.parchmentmc.data:parchment-1.19.2:2022.11.27@zip")
}
forge "net.minecraftforge:forge:${project.forge_version}"
modImplementation("dev.ftb.mods:ftb-teams-forge:${teams_version}")
modLocalRuntime("com.sunekaer.mods:structure-expansion:${structure_expansion_version}")
}
apply from: "https://raw.githubusercontent.com/FTBTeam/mods-meta/main/gradle/extra-local-mods.gradle"
processResources {
inputs.property "version", project.version
filesMatching("META-INF/mods.toml") {
expand "version": project.version
}
}
tasks.withType(JavaCompile) {
options.encoding = "UTF-8"
options.release = 17
}
java {
withSourcesJar()
}
jar {
manifest {
attributes([
"Specification-Title" : project.mod_id,
"Specification-Vendor" : project.mod_author,
"Specification-Version" : "1",
"Implementation-Title" : project.name,
"Implementation-Version" : version,
"Implementation-Vendor" : project.mod_author,
"Implementation-Timestamp": new Date().format("yyyy-MM-dd'T'HH:mm:ssZ")
])
}
}
// configure the maven publication
publishing {
publications {
mavenJava(MavenPublication) {
artifactId = project.archivesBaseName
version ftbPublishing.mavenVersion
// add all the jars that should be included when publishing to maven
artifact(remapJar) {
builtBy remapJar
}
artifact(sourcesJar) {
builtBy remapSourcesJar
}
}
}
// See https://docs.gradle.org/current/userguide/publishing_maven.html for information on how to set up publishing.
repositories {
if (ftbPublishing.ftbToken) {
maven {
url ftbPublishing.ftbURL
credentials {
username = ftbPublishing.ftbUser
password = ftbPublishing.ftbToken
}
}
}
if (ftbPublishing.sapsToken) {
maven {
url ftbPublishing.sapsURL
credentials {
username = ftbPublishing.sapsUser
password = ftbPublishing.sapsToken
}
}
}
}
}
if (ENV.CURSEFORGE_KEY) {
curseforge {
apiKey = ENV.CURSEFORGE_KEY
project {
id = project.curseforge_id
releaseType = ftbPublishing.relType
addGameVersion "Forge"
addGameVersion rootProject.minecraft_version
mainArtifact(remapJar.archiveFile)
relations {
requiredDependency 'ftb-library-forge'
requiredDependency 'ftb-teams-forge'
}
changelog = ENV.CHANGELOG // expected to exist if ENV.CURSEFORGE does
changelogType = 'markdown'
}
}
}