Hi Michael,<br><br>This time I didn&#39;t it by mistake but intentionally (well, kind of): for some reason my Intellij Idea didn&#39;t like the pom when I wrote it without specifying the version of that dependency. I spent a while to figure out why, but in the end the only way I found to make Idea &quot;eating&quot; the pom was by adding that version. Honestly I don&#39;t know why. I knew it was wrong, but I also needed to run it inside Idea to debug it, so I had no choice.<br>
<br>However this morning I updated what you pushed and found that idea wasn&#39;t complaining anymore. Probably I just omitted to try the most obvious thing: reboot it ;)<br><br>Lesson learned for the future.<br>Thanks for having fixed this.<br>
<br>Mario<br><br><div class="gmail_quote">On Mon, Feb 11, 2013 at 5:29 PM, Michael Anstis <span dir="ltr">&lt;<a href="mailto:michael.anstis@gmail.com" target="_blank">michael.anstis@gmail.com</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
Hi Mario,<br><br>During the release of Alpha7 I had to change a couple of poms by hand as dependencies&#39; version numbers were hard-coded: <a href="https://github.com/droolsjbpm/drools/commit/faa3bb0ff51d469ad37601d023234272aae4f7e1" target="_blank">https://github.com/droolsjbpm/drools/commit/faa3bb0ff51d469ad37601d023234272aae4f7e1</a><br>

<br>Ideally the dependency version should be a variable in the parent pom. For example the dependency of &quot;org.drools.default-kiesession&quot; should probably be &quot;${drools.version}&quot;:-<br><br style="font-family:courier new,monospace">

<span style="font-family:courier new,monospace">&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;</span><br style="font-family:courier new,monospace"><span style="font-family:courier new,monospace">&lt;project xmlns=&quot;<a href="http://maven.apache.org/POM/4.0.0" target="_blank">http://maven.apache.org/POM/4.0.0</a>&quot;</span><br style="font-family:courier new,monospace">

<span style="font-family:courier new,monospace">         xmlns:xsi=&quot;<a href="http://www.w3.org/2001/XMLSchema-instance" target="_blank">http://www.w3.org/2001/XMLSchema-instance</a>&quot;</span><br style="font-family:courier new,monospace">

<span style="font-family:courier new,monospace">         xsi:schemaLocation=&quot;<a href="http://maven.apache.org/POM/4.0.0" target="_blank">http://maven.apache.org/POM/4.0.0</a> <a href="http://maven.apache.org/xsd/maven-4.0.0.xsd" target="_blank">http://maven.apache.org/xsd/maven-4.0.0.xsd</a>&quot;&gt;</span><br style="font-family:courier new,monospace">

<span style="font-family:courier new,monospace">  &lt;parent&gt;</span><br style="font-family:courier new,monospace"><span style="font-family:courier new,monospace">    &lt;artifactId&gt;drools-examples-api&lt;/artifactId&gt;</span><br style="font-family:courier new,monospace">

<span style="font-family:courier new,monospace">    &lt;groupId&gt;org.drools&lt;/groupId&gt;</span><br style="font-family:courier new,monospace"><span style="font-family:courier new,monospace">    &lt;version&gt;6.0.0-SNAPSHOT&lt;/version&gt;</span><br style="font-family:courier new,monospace">

<span style="font-family:courier new,monospace">  &lt;/parent&gt;</span><br style="font-family:courier new,monospace"><span style="font-family:courier new,monospace">  &lt;modelVersion&gt;4.0.0&lt;/modelVersion&gt;</span><br style="font-family:courier new,monospace">

<br style="font-family:courier new,monospace"><span style="font-family:courier new,monospace">  &lt;artifactId&gt;default-kiesession-from-file&lt;/artifactId&gt;</span><br style="font-family:courier new,monospace"><span style="font-family:courier new,monospace">  &lt;name&gt;Drools API examples - Default KieSession From File&lt;/name&gt;</span><br style="font-family:courier new,monospace">

<br style="font-family:courier new,monospace"><span style="font-family:courier new,monospace">  &lt;dependencies&gt;</span><br style="font-family:courier new,monospace"><span style="font-family:courier new,monospace">    &lt;dependency&gt;</span><br style="font-family:courier new,monospace">

<span style="font-family:courier new,monospace">      &lt;groupId&gt;org.drools&lt;/groupId&gt;</span><br style="font-family:courier new,monospace"><span style="font-family:courier new,monospace">      &lt;artifactId&gt;drools-compiler&lt;/artifactId&gt;</span><br style="font-family:courier new,monospace">

<span style="font-family:courier new,monospace">    &lt;/dependency&gt;</span><br style="font-family:courier new,monospace"><span style="font-family:courier new,monospace">    &lt;dependency&gt;</span><br style="font-family:courier new,monospace">

<span style="font-family:courier new,monospace">      &lt;groupId&gt;org.drools&lt;/groupId&gt;</span><br style="font-family:courier new,monospace"><span style="font-family:courier new,monospace">      &lt;artifactId&gt;default-kiesession&lt;/artifactId&gt;</span><br style="font-family:courier new,monospace">

<span style="font-family:courier new,monospace">      <b style="color:rgb(255,0,0)">&lt;version&gt;6.0.0-SNAPSHOT&lt;/version&gt;</b></span><br style="font-family:courier new,monospace"><span style="font-family:courier new,monospace">    &lt;/dependency&gt;</span><br style="font-family:courier new,monospace">

<span style="font-family:courier new,monospace">  &lt;/dependencies&gt;</span><br style="font-family:courier new,monospace"><br style="font-family:courier new,monospace"><span style="font-family:courier new,monospace">&lt;/project&gt;</span><br>

<br>With kind regards,<br><br>Mike<br>
</blockquote></div><br>