Hello,
I'm new to crash, so please forgive me any stupid questions.
I want to write crash commands using gradle as build tool.
My build.gradle looks like this:
apply plugin: 'groovy'
apply plugin: 'application'
mainClassName = "org.crsh.standalone.CRaSH"
repositories {
mavenCentral()
}
dependencies {
compile 'org.crashub:crash.shell:1.3.0'
}
When I put my commands into src/main/groovy/crash/commands they won't be loaded by crash.
I guess this is because the class files are in the classpath not the groovy sources.
Is there a way to tell crash to use compiled commands ?
Or what is the best way to build crash commands with gradle ?
I could play a bit around and try to tell gradle to put the groovy files into the classpath.
thanks
Volker