aboutsummaryrefslogtreecommitdiff
path: root/build.gradle
diff options
context:
space:
mode:
authorshedaniel <daniel@shedaniel.me>2021-06-14 02:16:12 +0800
committershedaniel <daniel@shedaniel.me>2021-06-14 02:16:12 +0800
commit1ea5dbb1e8ea5d41852feeea28b713f5acb5654d (patch)
treefa8b88e1b599aed6cc3b836aba68a20e44033073 /build.gradle
parent6d815fc4d8c69517ab571a8dc6281ed8009b3b03 (diff)
downloadarchitectury-loom-1ea5dbb1e8ea5d41852feeea28b713f5acb5654d.tar.gz
architectury-loom-1ea5dbb1e8ea5d41852feeea28b713f5acb5654d.tar.bz2
architectury-loom-1ea5dbb1e8ea5d41852feeea28b713f5acb5654d.zip
Try switching to a regex and exclude in the repo that loom adds
Signed-off-by: shedaniel <daniel@shedaniel.me>
Diffstat (limited to 'build.gradle')
-rw-r--r--build.gradle5
1 files changed, 3 insertions, 2 deletions
diff --git a/build.gradle b/build.gradle
index e0a60edc..fac2e5b5 100644
--- a/build.gradle
+++ b/build.gradle
@@ -1,4 +1,5 @@
import com.github.jengelman.gradle.plugins.shadow.tasks.ShadowJar
+import org.w3c.dom.Document
plugins {
id 'java'
@@ -56,8 +57,8 @@ repositories {
maven { url "https://maven.architectury.dev/" }
maven {
url "https://maven.minecraftforge.net/"
- content{
- excludeGroupByRegex "org.eclipse.*"
+ content {
+ excludeGroupByRegex "org\\.eclipse\\.?.*"
}
}
}