Skip to content
Snippets Groups Projects
Commit 2bfb0e88 authored by dgelessus's avatar dgelessus
Browse files

Remove manually defined cleanKernelSpec task

Gradle automatically generates a cleanCreateKernelSpec task, which has
the same effect. The only difference is that the auto-generated name's
wording sounds a bit strange.
parent 281a5df4
No related branches found
No related tags found
No related merge requests found
Pipeline #37154 failed
......@@ -71,11 +71,6 @@ mainClassName = "de.prob2.jupyter.Main"
final KERNEL_SPEC_OUTPUT_PATH = project.buildDir.toPath().resolve(Paths.get("kernelspec"))
task cleanKernelSpec(type: Delete) {
delete = [KERNEL_SPEC_OUTPUT_PATH.toFile()]
}
clean.dependsOn << cleanKernelSpec
task createKernelSpec(type: JavaExec) {
dependsOn = [shadowJar]
main = project.mainClassName
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment