aboutsummaryrefslogtreecommitdiff
path: root/build.gradle
diff options
context:
space:
mode:
authormodmuss50 <modmuss50@gmail.com>2021-06-14 18:39:03 +0100
committerGitHub <noreply@github.com>2021-06-14 18:39:03 +0100
commit1f9f48052b4ac4ac2658b62128911f6a36127f8c (patch)
tree08659b68c3798e4f273d48f49589a969480e499e /build.gradle
parente179cccf64b23de5332852dfdc686ec6b25ab281 (diff)
downloadarchitectury-loom-1f9f48052b4ac4ac2658b62128911f6a36127f8c.tar.gz
architectury-loom-1f9f48052b4ac4ac2658b62128911f6a36127f8c.tar.bz2
architectury-loom-1f9f48052b4ac4ac2658b62128911f6a36127f8c.zip
Basic layered mappings with @ParchmentMC support (#413)
Diffstat (limited to 'build.gradle')
-rw-r--r--build.gradle4
1 files changed, 3 insertions, 1 deletions
diff --git a/build.gradle b/build.gradle
index ef171a3a..3e4cb362 100644
--- a/build.gradle
+++ b/build.gradle
@@ -45,6 +45,7 @@ configurations {
}
compileClasspath.extendsFrom bootstrap
runtimeClasspath.extendsFrom bootstrap
+ testRuntimeClasspath.extendsFrom bootstrap
}
dependencies {
@@ -74,6 +75,7 @@ dependencies {
implementation ('net.fabricmc:tiny-mappings-parser:0.3.0+build.17')
implementation 'net.fabricmc:access-widener:1.0.0'
+ implementation 'net.fabricmc:mapping-io:0.1.3'
implementation ('net.fabricmc:lorenz-tiny:3.0.0') {
transitive = false
@@ -92,7 +94,7 @@ dependencies {
// Testing
testImplementation(gradleTestKit())
- testImplementation('org.spockframework:spock-core:2.0-M5-groovy-3.0') {
+ testImplementation('org.spockframework:spock-core:2.0-groovy-3.0') {
exclude module: 'groovy-all'
}
testImplementation 'io.javalin:javalin:3.13.7'