Merge "Add unit tests for ExternalAPIUtil"
authorRob Daugherty <rd472p@att.com>
Mon, 10 Dec 2018 13:54:18 +0000 (13:54 +0000)
committerGerrit Code Review <gerrit@onap.org>
Mon, 10 Dec 2018 13:54:18 +0000 (13:54 +0000)
1  2 
bpmn/mso-infrastructure-bpmn/pom.xml

@@@ -20,7 -20,6 +20,7 @@@
                                                        <goal>unpack</goal>
                                                </goals>
                                                <configuration>
 +                                                      <skip>true</skip>
                                                        <artifactItems>
                                                                <artifactItem>
                                                                        <groupId>org.onap.so</groupId>
                                        </execution>
                                </executions>
                        </plugin>
 +                      <plugin>
 +                              <groupId>org.apache.maven.plugins</groupId>
 +                              <artifactId>maven-surefire-plugin</artifactId>
 +                              <executions>
 +                                      <execution>
 +                                              <id>integration-test</id>
 +                                              <goals>
 +                                                      <goal>test</goal>
 +                                              </goals>
 +                                              <configuration>
 +                                                      <skip>true</skip>
 +                                                      <includes>
 +                                                              <include>**/IntegrationTestSuite.java</include>
 +                                                      </includes>
 +                                              </configuration>
 +                                      </execution>
 +                              </executions>
 +                      </plugin>
                        <plugin>
                                <groupId>org.apache.maven.plugins</groupId>
                                <artifactId>maven-compiler-plugin</artifactId>
                        <type>test-jar</type>
                        <scope>test</scope>
                </dependency>
 +              <dependency>
 +                      <groupId>org.onap.so</groupId>
 +                      <artifactId>so-bpmn-building-blocks</artifactId>
 +                      <version>${project.version}</version>
 +              </dependency>
 +              <dependency>
 +                      <groupId>org.onap.so</groupId>
 +                      <artifactId>so-bpmn-infrastructure-flows</artifactId>
 +                      <version>${project.version}</version>
 +              </dependency>
                <dependency>
                        <groupId>com.h2database</groupId>
                        <artifactId>h2</artifactId>
                        <artifactId>camunda-bpm-assert</artifactId>
                        <version>2.0-alpha2</version>
                        <scope>test</scope>
-               </dependency>   
+               </dependency>
                <dependency>
-             <groupId>org.assertj</groupId>
-             <artifactId>assertj-core</artifactId>
-             <version>1.7.0</version>
-             <scope>test</scope>
-         </dependency> 
+                       <groupId>org.assertj</groupId>
+                       <artifactId>assertj-core</artifactId>
+                       <version>1.7.0</version>
+                       <scope>test</scope>
+               </dependency>
        </dependencies>
  </project>