feat: remove condition around JiJ
All checks were successful
ci/woodpecker/push/gradle Pipeline was successful
ci/woodpecker/push/pages Pipeline was successful

This commit is contained in:
Johannes Frohnmeyer 2024-07-18 15:40:22 +02:00
parent 45f5fcd9cb
commit 26f31906bb
Signed by: Johannes
GPG Key ID: E76429612C2929F4

View File

@ -101,14 +101,11 @@ afterEvaluate {
}
if (!isRoot) rootProject.dependencies {
if (rootArgs.isFabric && lomArgs.isFabric) {
api(project(path = project.path, configuration = "shadow"))
if (lomArgs.isSplitSources) clientImplementation(sourceSets.client.get().output)
testmodImplementation(sourceSets.testmod.get().output)
api(project(path = project.path, configuration = "shadow"))
if (lomArgs.isSplitSources) clientImplementation(sourceSets.client.get().output)
testmodImplementation(sourceSets.testmod.get().output)
if (!devOnly) include(project)
}
//TODO handle forge
if (!devOnly) include(project)
}
}