-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathbuild.gradle.kts
More file actions
29 lines (24 loc) · 826 Bytes
/
build.gradle.kts
File metadata and controls
29 lines (24 loc) · 826 Bytes
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
plugins {
`build-logic`
alias(libs.plugins.shadow)
}
group = "xyz.jpenilla"
version = "0.1.4-SNAPSHOT"
description = "reflection-remapper is a library to simplify making reflective calls, with specific support for remapped environments."
repositories {
maven("https://repo.papermc.io/repository/maven-public/")
}
dependencies {
compileOnlyApi(libs.checker.qual)
implementation(libs.mapping.io)
// testing dependencies
testImplementation(libs.memoryMeasurer)
memoryMeasurer(libs.memoryMeasurer)
devBundle(libs.mappingsTestDevBundle)
testImplementation(libs.junit.jupiter.api)
testRuntimeOnly(libs.junit.jupiter.engine)
testRuntimeOnly("org.junit.platform:junit-platform-launcher")
}
tasks.shadowJar {
relocate("net.fabricmc.mappingio", "xyz.jpenilla.reflectionremapper.internal.lib.mappingio")
}