nebula-clojure-plugin
nebula-clojure-plugin copied to clipboard
Plugin providing Clojuresque with compatibility fixes for Gradle 2.12 and later
Could you give an example on how to send a Java system property to the tasks clojureRun and clojureTest? I have been trying for an hour and I cannot figure...
How do I start a REPL after applying this plugin to a project? Also, are there any docs on how to use this plugin?
- exception was 'Cannot query the value of task ':****:clojureTest' property 'outputDir' because it has no value available.
This problem does not occur on Mac and Linux. gradle version: 8.13 My temporary solution is to add the following configuration in build.gradle.kts ` tasks.withType().configureEach { destinationDir = file("$buildDir/classes/java/main") }...