-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
60 lines (50 loc) · 1.46 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
plugins {
id "fabric-loom" version "1.7-SNAPSHOT"
id "maven-publish"
}
sourceCompatibility = targetCompatibility = JavaVersion.VERSION_21
archivesBaseName = project.archives_base_name
version = project.mod_version
group = project.maven_group
configurations.all {
// Check for snapshots more frequently than Gradle's default of 1 day. 0 = every build.
resolutionStrategy.cacheChangingModulesFor 0, 'seconds'
}
repositories {
maven {
url "https://jm.gserv.me/repository/maven-public/"
content {
includeGroup "info.journeymap"
}
}
maven {
url "https://api.modrinth.com/maven/"
content {
includeGroup "maven.modrinth"
}
}
maven { url = "https://www.cursemaven.com" }
mavenCentral()
gradlePluginPortal()
}
dependencies {
// Fabric
minecraft "com.mojang:minecraft:${project.minecraft_version}"
mappings "net.fabricmc:yarn:${project.yarn_mappings}:v2"
modImplementation "net.fabricmc:fabric-loader:${project.loader_version}"
// Mixin extras
include(implementation(annotationProcessor("io.github.llamalad7:mixinextras-fabric:0.4.1")))
// Meteor Client
modImplementation files("libs\\meteor-client-0.5.9.jar")
}
loom {
accessWidenerPath = file("src/main/resources/protrainer.accesswidener")
}
processResources {
filesMatching("fabric.mod.json") {
expand "version": project.mod_version, "mc_version": project.minecraft_version, "gh_hash": (System.getenv("GITHUB_SHA") ?: "")
}
}
tasks.withType(JavaCompile).configureEach {
it.options.encoding("UTF-8")
}