-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle.kts
80 lines (65 loc) · 1.86 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
plugins {
id("maven-publish")
alias(libs.plugins.quilt.loom)
}
project.version = "0.3.0-beta.1+1.21.3"
project.group = "io.github.ennuil"
loom {
mods {
register("ennuis_bigger_inventories") {
sourceSet(sourceSets["main"])
}
}
mixin {
useLegacyMixinAp = false
}
}
repositories {}
dependencies {
minecraft(libs.minecraft)
mappings(loom.officialMojangMappings())
modImplementation(libs.quilt.loader)
modImplementation(libs.fabric.api)
}
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.
}
}