-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle.kts
105 lines (86 loc) · 2.28 KB
/
build.gradle.kts
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
plugins {
id("maven-publish")
alias(libs.plugins.fabric.loom)
}
project.version = "0.4.0-beta.1+1.21.4"
project.group = "io.github.ennuil"
repositories {
maven("https://maven.parchmentmc.org")
}
dependencies {
minecraft(libs.minecraft)
mappings(loom.layered {
officialMojangMappings()
parchment(libs.parchment)
})
modImplementation(libs.fabric.loader)
modImplementation(libs.fabric.api)
}
sourceSets {
register("testmod") {
compileClasspath += sourceSets.main.get().compileClasspath
runtimeClasspath += sourceSets.main.get().runtimeClasspath
}
}
loom {
mods {
register("ennuis_bigger_inventories") {
sourceSet("main")
}
register("ennuis_bigger_inventories_testmod") {
sourceSet("testmod")
}
}
mixin {
useLegacyMixinAp = false
}
runs {
register("testmodClient") {
client()
configName = "Testmod Client"
source("testmod")
}
}
}
tasks.named<ProcessResources>("processResources").configure {
val version = project.version
inputs.property("version", version)
filesMatching("fabric.mod.json") {
expand("version" to version)
}
}
tasks.withType<JavaCompile> {
options.release = 21
}
java {
// Loom will automatically attach sourcesJar to a RemapSourcesJar task and to the "build" task if it is present.
// If you remove this line, sources will not be generated.
withSourcesJar()
// If this mod is going to be a library, then it should also generate Javadocs in order to aid with development.
// Uncomment this line to generate them.
// withJavadocJar()
}
// If you plan to use a different file for the license, don't forget to change the file name here!
tasks.named<Jar>("jar").configure {
val name = project.name
inputs.files("LICENSE.md")
inputs.property("name", name)
from("LICENSE.md") {
rename { "LICENSE_${name}.md" }
}
}
// Configure the maven publication
publishing {
publications {
register<MavenPublication>("mavenJava") {
from(components["java"])
}
}
// See https://docs.gradle.org/current/userguide/publishing_maven.html for information on how to set up publishing.
repositories {
// Add repositories to publish to here.
// Notice: This block does NOT have the same function as the block in the top level.
// The repositories here will be used for publishing your artifact, not for
// retrieving dependencies.
}
}