1 2 Previous Next 16 Replies Latest reply on Jul 18, 2008 4:38 AM by jbarrez Go to original post
      • 15. Re: jBPM3 switched to maven
        heiko.braun

        Are you using maven 2.0.9?

        • 16. Re: jBPM3 switched to maven
          jbarrez

          Ok, I've got it working!

          It seems that the profile must be set as an active profile in order to work (which is logical off course ...)

          Perhaps something to add to the Wiki?

          Btw, this is my settings.xml:

          <settings>
           <profiles>
           <profile>
           <id>jboss</id>
           <repositories>
           <repository>
           <id>jboss-snapshots</id>
           <url>http://snapshots.jboss.org/maven2</url>
           </repository>
           </repositories>
           </profile>
           </profiles>
          
           <activeProfiles>
           <activeProfile>jboss</activeProfile>
           </activeProfiles>
          
          </settings>



          Now I still have troubles with JAXB which isn't found...but I'll figure it out

          1 2 Previous Next