fix: removed nonexistant deps
Signed-off-by: limited_dev <loginakkisativ@gmail.com>
This commit is contained in:
parent
005be67fd0
commit
35ec799d5b
1 changed files with 2 additions and 1 deletions
|
@ -83,11 +83,12 @@ tasks {
|
||||||
}
|
}
|
||||||
// To add all of the dependencies
|
// To add all of the dependencies
|
||||||
from(sourceSets.main.get().output)
|
from(sourceSets.main.get().output)
|
||||||
|
/*
|
||||||
dependsOn(configurations.runtimeClasspath)
|
dependsOn(configurations.runtimeClasspath)
|
||||||
from({
|
from({
|
||||||
configurations.runtimeClasspath.get().filter { it.name.endsWith("jar") }.map { zipTree(it) }
|
configurations.runtimeClasspath.get().filter { it.name.endsWith("jar") }.map { zipTree(it) }
|
||||||
})
|
})
|
||||||
|
*/
|
||||||
duplicatesStrategy = DuplicatesStrategy.INCLUDE
|
duplicatesStrategy = DuplicatesStrategy.INCLUDE
|
||||||
dependsOn("generateTemplates", "processResources")
|
dependsOn("generateTemplates", "processResources")
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue