-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle.kts
140 lines (115 loc) · 3.81 KB
/
build.gradle.kts
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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
import org.jetbrains.kotlin.gradle.dsl.JvmTarget
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
plugins {
id("fabric-loom") version "1.7-SNAPSHOT"
id("maven-publish")
id("org.jetbrains.kotlin.jvm") version "2.0.0"
}
version = property("mod_version").toString()
group = property("maven_group").toString()
base {
archivesName.set(property("archives_base_name").toString())
}
repositories {
// Add repositories to retrieve artifacts from in here.
// You should only use this when depending on other mods because
// Loom adds the essential maven repositories to download Minecraft and libraries from automatically.
// See https://docs.gradle.org/current/userguide/declaring_repositories.html
// for more information about repositories.
repositories {
// Patbox's SGui
maven("https://maven.nucleoid.xyz")
}
}
sourceSets {
create("testmod") {
compileClasspath += main.get().compileClasspath
runtimeClasspath += main.get().runtimeClasspath
}
}
loom {
splitEnvironmentSourceSets()
mods {
create("monkeyconfig") {
sourceSet(sourceSets.main.get())
sourceSet(sourceSets["client"])
}
}
runs {
create("testmodClient") {
client()
name = "Testmod Client"
source(sourceSets["testmod"])
}
create("testmodServer") {
server()
name = "Testmod Server"
source(sourceSets["testmod"])
}
}
}
dependencies {
minecraft("com.mojang:minecraft:${property("minecraft_version")}")
mappings("net.fabricmc:yarn:${property("yarn_mappings")}:v2")
modImplementation("net.fabricmc:fabric-loader:${property("loader_version")}")
modImplementation("net.fabricmc.fabric-api:fabric-api:${property("fabric_version")}")
modImplementation("net.fabricmc:fabric-language-kotlin:${property("fabric_kotlin_version")}")
include(implementation("com.electronwill.night-config:core:${property("night_config_version")}")!!)
include(implementation("com.electronwill.night-config:toml:${property("night_config_version")}")!!)
include(implementation("com.electronwill.night-config:json:${property("night_config_version")}")!!)
include(implementation("com.electronwill.night-config:yaml:${property("night_config_version")}")!!)
include(implementation("com.electronwill.night-config:hocon:${property("night_config_version")}")!!)
include(modImplementation("eu.pb4:sgui:${property("sgui_version")}")!!)
// Fabric Permissions API
//include(modImplementation("me.lucko:fabric-permissions-api:${property("fabric_permissions_api_version")}")!!)
"testmodImplementation"(sourceSets.main.get().output)
"testmodImplementation"("org.junit.jupiter:junit-jupiter-api:5.8.2")
"testmodRuntimeOnly"("org.junit.jupiter:junit-jupiter-engine:5.8.2")
}
tasks.processResources {
inputs.property("version", project.version)
filesMatching("fabric.mod.json") {
expand(mapOf("version" to project.version))
}
}
tasks.withType<JavaCompile>().configureEach {
options.release = 21
}
tasks.withType<KotlinCompile>().configureEach {
compilerOptions {
jvmTarget = JvmTarget.JVM_21
}
}
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_21
targetCompatibility = JavaVersion.VERSION_21
}
tasks.withType<Jar> {
from("LICENSE") {
rename { "${it}_${project.base.archivesName.get()}" }
}
}
// configure the maven publication
publishing {
repositories {
maven("https://maven.enjarai.dev/releases") {
name = "enjaraiMaven"
credentials(PasswordCredentials::class.java)
authentication {
create<BasicAuthentication>("basic")
}
}
}
publications {
create<MavenPublication>("mavenJava") {
groupId = project.group.toString()
artifactId = base.archivesName.get()
version = project.version.toString()
from(components["java"])
}
}
}