-
-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathbuild.gradle
117 lines (99 loc) · 3.85 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
plugins {
id 'fabric-loom' version '1.9-SNAPSHOT'
id 'maven-publish'
}
version = property("mod.version") + "+" + stonecutter.current.version
group = "dev.imb11"
base {
archivesName = property("mod.name")
}
repositories {
mavenLocal()
mavenCentral()
maven { url 'https://maven.gegy.dev' }
maven { url 'https://jitpack.io' }
maven { url 'https://maven.terraformersmc.com/releases' }
maven { url 'https://maven.shedaniel.me/' }
maven { url 'https://maven.isxander.dev/releases' }
maven { url 'https://repo.inventivetalent.org/repository/public/' }
maven { url "https://maven.quiltmc.org/repository/release" }
maven { url = "https://pkgs.dev.azure.com/djtheredstoner/DevAuth/_packaging/public/maven/v1" }
maven {
url "https://cursemaven.com"
content {
includeGroup "curse.maven"
}
}
exclusiveContent {
forRepository {
maven {
name = "Modrinth"
url = "https://api.modrinth.com/maven"
}
}
filter {
includeGroup "maven.modrinth"
}
}
}
if (stonecutter.current.active) { // run configs for non-active version would be invalid
loom {
runConfigs.all {
ideConfigGenerated = true // generate IDE tasks for running client, server and testmod, datagen if those are present
runDir "../../run" // use a global run directory for all versions
}
}
}
loom {
accessWidenerPath = getRootProject().file("src/main/resources/aw/" + stonecutter.current.version + ".accesswidener")
}
dependencies {
minecraft "com.mojang:minecraft:${stonecutter.current.version}"
mappings "net.fabricmc:yarn:${property('deps.yarn')}:v2"
modImplementation "net.fabricmc:fabric-loader:${property('deps.loader')}"
modImplementation "net.fabricmc.fabric-api:fabric-api:${property('deps.fabric_api')}"
modLocalRuntime modCompileOnly("maven.modrinth:modmenu:${property('runtime.modmenu')}")
modLocalRuntime modCompileOnly("maven.modrinth:entitytexturefeatures:${property('runtime.etf')}")
include implementation('com.konghq:unirest-java:3.11.09:standalone')
include modImplementation("dev.lambdaurora:spruceui:${property('deps.spruceui')}")
modImplementation(include("dev.isxander:yet-another-config-lib:${property('deps.yacl')}"))
include implementation("org.jsoup:jsoup:1.16.1")
include implementation("org.mineskin:java-client:1.2.4-SNAPSHOT")
include implementation("commons-validator:commons-validator:1.7")
include implementation("com.drewnoakes:metadata-extractor:2.19.0")
modRuntimeOnly("me.djtheredstoner:DevAuth-fabric:1.2.0")
}
processResources {
filesMatching('fabric.mod.json') {
expand 'mod_version': version,
'target_minecraft': project.property('mod.target'),
'target_yacl': project.property('deps.yacl'),
'loader_version': project.property('deps.loader'),
'minecraft_version': stonecutter.current.version
}
}
java {
var version = stonecutter.eval(stonecutter.current.version, ">1.20.4") ? JavaVersion.VERSION_21 : JavaVersion.VERSION_17
sourceCompatibility = version
targetCompatibility = version
}
jar {
from("LICENSE") {
rename { "${it}_${project.base.archivesName.get()}"}
}
}
// configure the maven publication
publishing {
publications {
mavenJava(MavenPublication) {
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.
}
}