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
195
196
197
198
199
200
|
plugins {
id 'fabric-loom' version '1.1.+'
id 'io.github.juuxel.loom-quiltflower' version '1.8.0'
id 'maven-publish'
id 'checkstyle'
}
if(rootProject.file('private.gradle').exists()) { //Publishing details
apply from: 'private.gradle'
}
archivesBaseName = project.archives_base_name
version = "$project.mod_version+$project.minecraft_version"
group = project.maven_group
sourceSets {
javadoc {
}
testMod {
compileClasspath += main.compileClasspath
runtimeClasspath += main.runtimeClasspath
}
}
loom {
createRemapConfigurations(sourceSets.testMod)
runs {
testModClient {
client()
name = 'Test Mod Client'
source sourceSets.testMod
}
testModServer {
server()
name = 'Test Mod Server'
source sourceSets.testMod
}
}
}
// Work around https://github.com/FabricMC/fabric-loom/issues/890.
afterEvaluate {
for (def config : [configurations.apiElements, configurations.runtimeElements]) {
def parents = new HashSet<>(config.extendsFrom)
parents.removeIf { it.name.startsWith 'modTestMod' }
config.extendsFrom = parents
}
}
repositories {
maven {
url "https://server.bbkr.space/artifactory/libs-release"
content {
includeGroup "io.github.cottonmc"
}
}
maven {
url = "https://maven.terraformersmc.com/releases"
content {
includeGroup "com.terraformersmc"
}
}
}
dependencies {
minecraft "com.mojang:minecraft:${project.minecraft_version}"
mappings "net.fabricmc:yarn:${project.yarn_mappings}:v2"
modImplementation "net.fabricmc:fabric-loader:${project.loader_version}"
// True: module classes are used in public API classes/methods/fields
def fabricApiModules = [
'fabric-api-base': true,
'fabric-lifecycle-events-v1': false,
'fabric-networking-api-v1': true,
'fabric-rendering-v1': false,
]
fabricApiModules.forEach { module, api ->
def dependency = fabricApi.module(module, project.fabric_version)
if (api) {
modApi dependency
} else {
modImplementation dependency
}
}
modImplementation "io.github.cottonmc:Jankson-Fabric:${project.jankson_version}"
include "io.github.cottonmc:Jankson-Fabric:${project.jankson_version}"
include api("io.github.juuxel:libninepatch:${project.libninepatch_version}")
modCompileOnly("com.terraformersmc:modmenu:$project.modmenu_version") {
exclude group: 'net.fabricmc.fabric-api'
}
// Test mod dependencies
testModImplementation sourceSets.main.output
modTestModImplementation "net.fabricmc.fabric-api:fabric-api:${project.fabric_version}"
modTestModRuntimeOnly("com.terraformersmc:modmenu:$project.modmenu_version") {
exclude group: 'net.fabricmc.fabric-api'
}
}
processResources {
inputs.property "version", project.version
filesMatching("fabric.mod.json") {
expand "version": project.version
}
}
java {
withSourcesJar()
withJavadocJar()
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
}
tasks.withType(JavaCompile) {
// ensure that the encoding is set to UTF-8, no matter what the system default is
// this fixes some edge cases with special characters not displaying correctly
// see http://yodaconditions.net/blog/fix-for-java-file-encoding-problems-with-gradle.html
options.encoding = "UTF-8"
options.release.set 17
}
jar {
from "CREDITS.txt", "LICENSE"
}
checkstyle {
configFile = rootProject.file('checkstyle.xml')
configProperties = [suppressions: rootProject.file('checkstyle.suppressions.xml').absolutePath]
toolVersion = '10.9.2'
}
def javadocBuildJar = tasks.register('javadocBuildJar', Jar) {
destinationDirectory = file('build/devlibs')
archiveClassifier = 'javadoc-build'
from sourceSets.javadoc.output
}
javadoc {
dependsOn javadocBuildJar
options {
links "https://maven.fabricmc.net/docs/yarn-$project.yarn_mappings"
links 'https://javadoc.io/doc/org.jetbrains/annotations/19.0.0'
taglets 'io.github.cottonmc.cotton.gui.jd.ExperimentalTaglet',
'io.github.cottonmc.cotton.gui.jd.PropertyTaglet'
tagletPath javadocBuildJar.get().archiveFile.get().asFile
}
exclude("**/impl/**")
}
// configure the maven publication
publishing {
publications {
maven(MavenPublication) {
from components.java
pom {
name = "LibGui"
description = "Minecraft GUI Library"
url = "https://github.com/CottonMC/LibGui"
licenses {
license {
name = "MIT"
url = "https://github.com/CottonMC/LibGui/blob/HEAD/LICENSE"
}
}
developers {
developer {
name = "CottonMC"
url = "https://github.com/CottonMC"
}
}
}
}
}
// select the repositories you want to publish to
repositories {
if (project.hasProperty("artifactoryUsername")) {
maven {
url = "https://server.bbkr.space/artifactory/libs-release/"
credentials {
username = artifactoryUsername
password = artifactoryPassword
}
}
} else {
println "Cannot configure artifactory; please define ext.artifactoryUsername and ext.artifactoryPassword before running publish"
}
}
}
|