-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathbuild.gradle
More file actions
121 lines (94 loc) · 2.92 KB
/
build.gradle
File metadata and controls
121 lines (94 loc) · 2.92 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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
plugins {
id "net.fabricmc.fabric-loom" version '1.15-SNAPSHOT'
id "fr.brouillard.oss.gradle.jgitver" version "0.9.1"
id 'com.gradleup.shadow' version '9.3.1'
id 'maven-publish'
}
version = project.mod_version
group = project.maven_group
base {
archivesName = project.archives_base_name
}
repositories {
mavenCentral()
maven {
name = "Terraformers"
url = "https://maven.terraformersmc.com/"
}
maven {
name = "Modrinth"
url = "https://api.modrinth.com/maven"
}
maven {
name = "Forge"
url = "https://maven.minecraftforge.net/"
}
}
loom {
splitEnvironmentSourceSets()
mods {
"lighterend" {
sourceSet sourceSets.main
sourceSet sourceSets.client
}
}
}
fabricApi {
configureDataGeneration {
client = true
}
}
dependencies {
minecraft "com.mojang:minecraft:${project.minecraft_version}"
implementation "net.fabricmc:fabric-loader:$project.loader_version"
implementation "net.fabricmc.fabric-api:fabric-api:${project.fabric_version}"
compileOnly("com.terraformersmc:modmenu:${project.modmenu_version}")
// runtimeOnly("com.terraformersmc:modmenu:${project.modmenu_version}")
// runtimeOnly("maven.modrinth:jade:${project.jade_version}")
// compileOnly("com.github.glitchfiend:TerraBlender-fabric:${project.terrablender_version}")
// Only comment in the line below when you're explicitly testing TerraBlender compat
// runtimeOnly("com.github.glitchfiend:TerraBlender-fabric:${project.terrablender_version}")
compileOnly "org.yaml:snakeyaml:2.2"
shadow(implementation("org.yaml:snakeyaml:2.2"))
}
processResources {
inputs.property "version", project.version
filesMatching("fabric.mod.json") {
expand "version": project.version
}
// exclude means "keep original" (assets takes priority over generated assets)
duplicatesStrategy = DuplicatesStrategy.EXCLUDE
}
tasks.withType(JavaCompile).configureEach {
it.options.release = 25
}
java {
// Loom will automatically attach sourcesJar to a RemapSourcesJar task and to the "build" task
// if it is present.
// If you remove this line, sources will not be generated.
withSourcesJar()
sourceCompatibility = JavaVersion.VERSION_25
targetCompatibility = JavaVersion.VERSION_25
}
shadowJar {
from sourceSets.main.output
from sourceSets.client.output
configurations = [project.configurations.shadow]
archiveClassifier.set("dev")
relocate "org.yaml", "${project.maven_group}.shadow.org.yaml"
}
jar {
dependsOn(shadowJar)
from("LICENSE") {
rename { "${it}_${project.base.archivesName.get()}" }
}
}
sourcesJar {
// exclude means "keep original" (assets takes priority over generated assets)
duplicatesStrategy = DuplicatesStrategy.EXCLUDE
}
jgitver {
useDirty = true
useGitCommitID = true
gitCommitIDLength = 8
}