Running with Redirects

This commit is contained in:
skippyall
2026-05-16 22:06:40 +02:00
parent f01f8ba570
commit 8423d9c7cd
37 changed files with 1586 additions and 0 deletions
+22
View File
@@ -0,0 +1,22 @@
plugins {
id 'java'
}
group = 'io.github.skippyall'
version = '1.0-SNAPSHOT'
subprojects {
repositories {
exclusiveContent {
forRepository {
maven {
name = "minebench-repo"
url = "https://repo.minebench.de/"
}
}
filter {
includeModule("de.themoep", "minedown-adventure")
}
}
}
}