Hi,<br><br>I'm using BRMS to generate a .pkg for an application<br><br>i need to generate the same file without BRMS:<br>i'm trying to use a drools-ant task, but, pkg file generated with drools-ant task is not the same !!!
<br>i don't found a specific documentation to do that ? <br><br>Somebody can help me please ?<br><br>thanks for your help<br><br><project default="rules"><br> <property name="eclipsepath" value=""/>
<br> <br> <path id="qirules.classpath"><br> <pathelement location="${eclipsepath}../install/*"/><br> </path> <br> <br> <path id="drools.classpath">
<br> <fileset dir="${eclipsepath}../"><br> <include name="**/*.jar"/><br> </fileset> <br> <pathelement location="target"/><br> </path>
<br> <br> <taskdef name="rulebase" classname="org.drools.contrib.DroolsCompilerAntTask" classpathref="drools.classpath" /><br><br> <target name="rules" ><br> <rulebase
<br> srcdir="${eclipsepath}../rules/" <br> tofile="${eclipsepath}../rules/FLIResultsUpdateRules.pkg"<br> classpathref="qirules.classpath" > <br> <include name="*.drl" />
<br> </rulebase><br> </target><br> <br></project><br>