1 Reply Latest reply on Jun 19, 2014 11:36 PM by alisons

    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

       

       

      1. <?xml version="1.0" encoding="UTF-8"?> 
      2. <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" 
      3.     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> 
      4.   <modelVersion>4.0.0</modelVersion> 
      5.   <groupId>com.redhat</groupId> 
      6.   <artifactId>newhire</artifactId> 
      7.   <version>6</version> 
      8.   <dependencies> 
      9.     <dependency> 
      10.       <groupId>com.redhat.engineering.hss</groupId> 
      11.       <artifactId>hss-service-client-common</artifactId> 
      12.       <version>0.1</version> 
      13.     </dependency> 
      14.     <dependency> 
      15.       <groupId>commons-beanutils</groupId> 
      16.       <artifactId>commons-beanutils-bean-collections</artifactId> 
      17.       <version>1.8.3</version> 
      18.     </dependency> 
      19.     <dependency> 
      20.       <groupId>commons-codec</groupId> 
      21.       <artifactId>commons-codec</artifactId> 
      22.       <version>1.8</version> 
      23.     </dependency> 
      24.     <dependency> 
      25.       <groupId>commons-lang</groupId> 
      26.       <artifactId>commons-lang</artifactId> 
      27.       <version>2.6</version> 
      28.     </dependency> 
      29.     <dependency> 
      30.       <groupId>org.testng</groupId> 
      31.       <artifactId>testng</artifactId> 
      32.       <version>6.8.7</version> 
      33.     </dependency> 
      34.     <dependency> 
      35.       <groupId>commons-collections</groupId> 
      36.       <artifactId>commons-collections</artifactId> 
      37.       <version>3.2.1</version> 
      38.     </dependency> 
      39.     <dependency> 
      40.     <groupId>org.slf4j</groupId> 
      41.     <artifactId>slf4j-api</artifactId> 
      42.     <version>1.7.5</version> 
      43.     </dependency> 
      44.   </dependencies> 
      45.   <repositories> 
      46.   <!--   <repository> 
      47.       <id>guvnor-m2-repo</id> 
      48.       <name>Guvnor M2 Repo</name> 
      49.       <url>http://localhost:8080/business-central/maven2/</url> 
      50.     </repository> --> 
      51.     <repository> 
      52.       <id>repository.engineering.redhat.com</id> 
      53.       <name>RedHat Engineering Operations</name> 
      54.       <url>https://repository.engineering.redhat.com/nexus/content/repositories/hss-tools</url> 
      55.     </repository> 
      56.   </repositories> 
      57. </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.