0 Replies Latest reply on Nov 7, 2013 9:24 PM by bxf12315

    How to adding dependencies  in BPMS?

    bxf12315

      I met some problem , as follow.

      QQ截图20131108095933.png

       

      1 upload my project into "business-central"

      2 this is my pom.xml

      <?xml version="1.0" encoding="UTF-8"?>
      <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
        <modelVersion>4.0.0</modelVersion>
        <groupId>com.redhat</groupId>
        <artifactId>newhire</artifactId>
        <version>6</version>
        <dependencies>
          <dependency>
            <groupId>com.redhat.engineering.hss</groupId>
            <artifactId>hss-service-client-common</artifactId>
            <version>0.1</version>
          </dependency>
          <dependency>
            <groupId>commons-beanutils</groupId>
            <artifactId>commons-beanutils-bean-collections</artifactId>
            <version>1.8.3</version>
          </dependency>
          <dependency>
            <groupId>commons-codec</groupId>
            <artifactId>commons-codec</artifactId>
            <version>1.8</version>
          </dependency>
          <dependency>
            <groupId>commons-lang</groupId>
            <artifactId>commons-lang</artifactId>
            <version>2.6</version>
          </dependency>
          <dependency>
            <groupId>org.testng</groupId>
            <artifactId>testng</artifactId>
            <version>6.8.7</version>
          </dependency>
          <dependency>
            <groupId>commons-collections</groupId>
            <artifactId>commons-collections</artifactId>
            <version>3.2.1</version>
          </dependency>
          <dependency>
          <groupId>org.slf4j</groupId>
          <artifactId>slf4j-api</artifactId>
          <version>1.7.5</version>
          </dependency>
        </dependencies>
        <repositories>
        <!--   <repository>
            <id>guvnor-m2-repo</id>
            <name>Guvnor M2 Repo</name>
            <url>http://localhost:8080/business-central/maven2/</url>
          </repository> -->
          <repository>
            <id>repository.engineering.redhat.com</id>
            <name>RedHat Engineering Operations</name>
            <url>https://repository.engineering.redhat.com/nexus/content/repositories/hss-tools</url>
          </repository>
        </repositories>
      </project>
      

      3 maven version 3.1.1

      4 BPMS version 6.0.0.aplah

      5 this project is correct at local

      But i can not build this project in BPMS.

      Could anybody help me to solve this issue?

      Very thanks.