Can someone give me some clues regarding configuration of this Gradle plugin? -
i'm new groovy, gradle, , drools. :-|
https://github.com/loosebits/drools-compiler-plugin
completely undocumented. clue have been nice.
having never developed plug-in of own, don't know maps what. can figure out looks :
[some name] { sourcefiles "/some/files" destinationfiles "/some/directory" }
idk if [some name]
refers plug-in name or task name. i've done searches , not found examples of people using it. have been able figure out, how buildsrc/
since documented in gradle docs.
[some name]
refers extension name. here:
project.extensions.create("drools", droolspluginextension, compiledroolstask)
you some-name drools
. can define in extension here. can do:
drools{ srcdir file classpath filecollection outputfile file }
note none of take strings inputs.
Comments
Post a Comment