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