22 lines
444 B
Groovy
22 lines
444 B
Groovy
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")
|
|
}
|
|
}
|
|
}
|
|
} |