This repository has been archived by the owner on Sep 24, 2024. It is now read-only.
generated from MeteorDevelopment/meteor-addon-template
-
Notifications
You must be signed in to change notification settings - Fork 26
/
build.gradle
90 lines (76 loc) · 2.6 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
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" }
maven { url = "https://masa.dy.fi/maven" }
// YACL
maven {
url = uri("https://maven.isxander.dev/releases")
}
// YACL Snapshots
maven {
name = "Xander Snapshot Maven"
url = uri("https://maven.isxander.dev/snapshots")
}
// Where Is It, JackFredLib
maven {
url = uri("https://maven.jackf.red/releases/")
}
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\\baritone-unoptimized-fabric-1.10.1-11-g3ed49fd4.jar")
modImplementation files("libs\\meteor-client-0.5.8-2149.jar")
// Journey Map
modCompileOnlyApi group: 'info.journeymap', name: 'journeymap-api', version: project.journeymap_api_fabric_version, changing: true
modCompileOnly "maven.modrinth:journeymap:${project.jm_fabric_version}"
// Xaero's Mods
modCompileOnly "maven.modrinth:xaeros-world-map:${project.xwm_fabric_version}" // Xaero's World Map
modCompileOnly "maven.modrinth:xaeros-minimap:${project.xmm_fabric_version}" // Xaero's Minimap
// Litematica
modImplementation "curse.maven:litematica-${project.litematica_projectid}:${project.litematica_fileid}"
modImplementation "curse.maven:litematica-${project.malilib_projectid}:${project.malilib_fileid}"
// Chest Tracker
modImplementation("red.jackf:whereisit:${project.where_is_it_version}")
}
loom {
accessWidenerPath = file("src/main/resources/meteorplus.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")
}