-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbuild.gradle
More file actions
104 lines (79 loc) · 2.1 KB
/
build.gradle
File metadata and controls
104 lines (79 loc) · 2.1 KB
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
plugins {
id 'fabric-loom' version '1.9.2'
id 'maven-publish'
}
version = project.mod_version
group = project.maven_group
base {
archivesName = project.archives_base_name
}
repositories {
mavenLocal()
mavenCentral()
maven {
url = "https://maven.fabricmc.net/"
}
maven {
url = "https://api.modrinth.com/maven"
}
}
dependencies {
// Minecraft
minecraft "com.mojang:minecraft:1.21.1"
// Yarn mappings
mappings "net.fabricmc:yarn:1.21.1+build.3:v2"
// Fabric Loader
modImplementation "net.fabricmc:fabric-loader:0.16.5"
// Fabric API
modImplementation "net.fabricmc.fabric-api:fabric-api:0.116.12+1.21.1"
// Mod Menu (optional)
modCompileOnly "maven.modrinth:modmenu:11.0.3"
// Bundle guiAPI-advancement inside the guiAPI jar (skip during publishToMavenLocal bootstrap)
if (!project.hasProperty('skipAdvancement')) {
include(modImplementation("dev.toolkitmc:guiapi-advancement:${project.guiapi_advancement_version}"))
}
}
processResources {
inputs.property "version", project.version
filesMatching("fabric.mod.json") {
expand(
"version": project.version
)
}
}
tasks.withType(JavaCompile).configureEach {
options.release = 21
}
java {
withSourcesJar()
sourceCompatibility = JavaVersion.VERSION_21
targetCompatibility = JavaVersion.VERSION_21
}
jar {
from("LICENSE") {
rename { "${it}_${project.base.archivesName.get()}" }
}
}
publishing {
publications {
mavenJava(MavenPublication) {
groupId = project.maven_group
artifactId = project.archives_base_name
version = project.mod_version
artifact(remapJar) {
builtBy remapJar
}
artifact(remapSourcesJar) {
builtBy remapSourcesJar
classifier = 'sources'
}
pom {
name = project.archives_base_name
description = "guiAPI Fabric library"
}
}
}
repositories {
mavenLocal()
}
}