blob: 7e44c270e9f1bf4b664a3362fc0681d70fd3aacf (
plain)
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
|
plugins.apply 'fabric-loom'
plugins.apply 'io.shcm.shsupercm.fabric.fletchingtable'
version = "${property('mod.version')}+${stonecutter.current().version()}"
group = 'shcm.shsupercm.fabric.citresewn.defaults'
repositories {
maven { url 'https://maven.terraformersmc.com/releases/' }
maven { url 'https://maven.shedaniel.me/' }
}
dependencies {
minecraft "com.mojang:minecraft:${stonecutter.current().version()}"
mappings "net.fabricmc:yarn:${property('deps.yarn')}:v2"
modCompileOnly "net.fabricmc:fabric-loader:${property('deps.fabric-loader')}"
modCompileOnly "net.fabricmc.fabric-api:fabric-api:${property('deps.fabric-api')}"
modCompileOnly "com.terraformersmc:modmenu:${property('deps.modmenu')}"
modCompileOnly "me.shedaniel.cloth:cloth-config-fabric:${property('deps.cloth-config')}"
implementation project(path: ":${stonecutter.current().version()}", configuration: "namedElements")
// testing mods
modRuntimeOnly "net.fabricmc:fabric-loader:${property('deps.fabric-loader')}"
modRuntimeOnly "net.fabricmc.fabric-api:fabric-api:${property('deps.fabric-api')}"
modRuntimeOnly "com.terraformersmc:modmenu:${property('deps.modmenu')}"
modRuntimeOnly "me.shedaniel.cloth:cloth-config-fabric:${property('deps.cloth-config')}"
}
fletchingTable {
defaultMixinEnvironment = "auto"
}
loom {
accessWidenerPath = file("../../src/main/resources/citresewn-defaults.accesswidener")
runConfigs.client.ideConfigGenerated = false
runConfigs.server.ideConfigGenerated = false
}
java {
withSourcesJar()
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
archivesBaseName = "${property('mod.jarname')}-defaults"
}
processResources {
filesMatching('fabric.mod.json') {
expand 'mod_version': version
}
}
jar {
archiveClassifier.set 'dev'
from rootProject.file('LICENSE')
}
if (stonecutter.current().isActiveVersion()) {
loom.runConfigs.client.ideConfigGenerated = true
plugins.apply 'com.modrinth.minotaur'
modrinth {
token = TOKEN_MODRINTH
projectId = property('publish.modrinth.defaults.id')
uploadFile = remapJar
versionNumber = version
versionName = "v" + version
additionalFiles = [sourcesJar.outputs.getFiles().singleFile]
gameVersions = Arrays.asList(property('publish.target-mc').split(","))
}
rootProject.tasks.named('publishActive') {
Task remapJarTask = tasks.getByName 'remapJar'
Task modrinthTask = tasks.getByName 'modrinth'
dependsOn remapJarTask, modrinthTask
modrinthTask.mustRunAfter remapJarTask
}
}
|