generated from calmilamsy/stationapi-example-mod
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
123 lines (108 loc) · 2.95 KB
/
build.gradle
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
plugins {
id("fabric-loom") version "1.7.2"
id("babric-loom-extension") version "1.6.10"
id("maven-publish")
}
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
archivesBaseName = project.archives_base_name
version = project.mod_version
group = project.maven_group
loom {
mixin {
useLegacyMixinAp = true
}
customMinecraftManifest.set("https://babric.github.io/manifest-polyfill/${minecraft_version}.json")
intermediaryUrl.set("https://maven.glass-launcher.net/babric/babric/intermediary/%1\$s/intermediary-%1\$s-v2.jar")
}
repositories {
// Used for the fabric toolchain in this project.
maven {
name = "Babric"
url = "https://maven.glass-launcher.net/babric"
}
// Used for mappings.
maven {
name = "Glass Releases"
url = "https://maven.glass-launcher.net/releases"
}
// Used for StationAPI and HowManyItems.
maven {
name = "Glass Snapshots"
url = "https://maven.glass-launcher.net/snapshots"
}
// Used for a StationAPI dependency.
maven {
name = "Froge"
url "https://maven.minecraftforge.net/"
}
// Used for projects that do not have a maven repository, but do have a GitHub repository with working build scripts.
maven {
name = "Jitpack"
url = "https://jitpack.io"
}
// Used for Nostalgia mappings
maven {
name = "Wisp Forest"
url = "https://maven.wispforest.io"
}
// Used for another StationAPI dependency
exclusiveContent {
forRepository {
maven {
name = "Modrinth"
url = "https://api.modrinth.com/maven"
}
}
filter {
includeGroup("maven.modrinth")
}
}
mavenCentral()
}
dependencies {
minecraft("com.mojang:minecraft:${project.minecraft_version}")
// mappings("net.glasslauncher:biny:${project.yarn_mappings}:v2")
mappings("me.alphamode:nostalgia:${project.nostalgia_mappings}:v2")
modImplementation("babric:fabric-loader:${project.loader_version}")
implementation("org.slf4j:slf4j-api:1.8.0-beta4")
implementation("org.apache.logging.log4j:log4j-slf4j18-impl:2.17.2")
implementation("blue.endless:jankson:1.2.1")
modImplementation("net.modificationstation:StationAPI:${project.stapi_version}")
// Optional, but convenient mods for mod creators and users alike.
modImplementation("maven.modrinth:modmenu-beta:${project.modmenu_version}") {
transitive false
}
// modImplementation("net.glasslauncher.mods:GlassConfigAPI:${project.gcapi_version}") {
// transitive false
// }
modImplementation("net.glasslauncher:HowManyItems-Fabric-Unofficial:${project.howmanyitems_version}") {
transitive false
}
}
processResources {
inputs.property("version", project.version)
filesMatching("fabric.mod.json") {
expand("version": project.version)
}
}
tasks.withType(JavaCompile).configureEach {
it.options.release = 17
}
java {
withSourcesJar()
}
jar {
from("LICENSE") {
rename { "${it}_${project.archivesBaseName}"}
}
}
// configure the maven publication
publishing {
publications {
mavenJava(MavenPublication) {
from components.java
}
}
repositories { }
}