0 Replies Latest reply on Mar 17, 2014 4:57 AM by marcj

    Maven build error with artifact jbpm-shared-services

    marcj

      Hey guys,

      I still have issues with the customer relationships example provided via GIT under https://github.com/droolsjbpm/jbpm-playground

       

      When executing Maven build, this error occurs:

       

      [ERROR] Failed to execute goal on project customer-relationships-tests: Could not resolve dependencies for project org.jbpm:customer-relationships-tests:jar:1.0: Could not find artifact org.jbpm:jbpm-shared-services:jar:btm:6.1.0-SNAPSHOT in jboss-public-repository-group (http://repository.jboss.org/nexus/content/groups/public/) -> [Help 1]

       

      I checked the GIT repository and the requested jar files are there. The relevant pom.xml section looks as follows:

       

      .....

      <dependency>

        <groupId>org.jbpm</groupId>

        <artifactId>jbpm-shared-services</artifactId>

        <version>6.1.0-SNAPSHOT</version>

        <classifier>btm</classifier>

        <scope>test</scope>

        <exclusions>

        <exclusion>

        <artifactId>slf4j-api</artifactId>

        <groupId>org.slf4j</groupId>

        </exclusion>

        </exclusions>

      </dependency>

      .......

       

      Did anyone run into the same error and was able to solve it?