How to deploy a simple Drools application?
Please note that this is not a web-application. It's just a simple rules engine application that evaluates a set of facts pertaining to a set of POJO variables.
I couldn't find any specific information on the official Drools website or in Google search results/stack overflow.
I'm working my way through the Drools examples (http://docs.jboss.org/drools/release/5.5.0.Final/drools-expert-docs/html_single/#d0e8772) on Eclipse and would like to deploy a simple example on a Linux machine - as a stepping stone to deploying a more complex application.
Shouldn't this be straightforward as in exporting a runnable JAR from Eclipse, copying out this JAR to a Linux machine and then invoking this JAR by way of # java -jar .jar ?
Help appreciated. Thanks.
1.Write the code and rules2.Package the app to JAR3.Run the app. Just make sure you have all the libs included in the package and that the rules are in a location where they can be executed by the app (classpath for example.) - kaskelotti