0 Replies Latest reply on Apr 13, 2011 11:16 AM by jbride

    pom.xml broke with mvel upgrade

    jbride

      Hi,

        i just cloned the latest jbpm5 source from git and encountered a problem with the build process.  maven seems to complain about mvel2 (2.1-SNAPSHOT) not existing in the configured repositories.  The fix appears to simply flip the 'snapshot enabled'  flag to 'true' for the 'jboss-public-repository-group' repo.  setting this flag to 'true' does not appear to introduce any side effects as I was able to build successfully.  sample xml snippet from pom.xml as follows :

       

      {code}

      56     <repository>

      57       <id>jboss-public-repository-group</id>

      58       <name>JBoss Public Maven Repository Group</name>

      59       <url>https://repository.jboss.org/nexus/content/groups/public/</url>

      60       <layout>default</layout>

      61       <releases>

      62         <enabled>true</enabled>

      63         <updatePolicy>never</updatePolicy>

      64       </releases>

      65       <snapshots>

      66         <enabled>true</enabled>

      67       </snapshots>

      68     </repository>

      {code}

       

       

      thanks, jeff