blob: 79b1f7d5a41bfbe09d729135618dd2b7a67d25a4 [file] [log] [blame]
Boslet, Coryb7c956f2020-07-06 09:58:17 -04001<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3 <parent>
4 <groupId>org.onap.so</groupId>
5 <artifactId>so</artifactId>
seshukmadbd1c42020-08-03 19:23:51 +05306 <version>1.7.1-SNAPSHOT</version>
Boslet, Coryb7c956f2020-07-06 09:58:17 -04007 </parent>
8 <modelVersion>4.0.0</modelVersion>
9 <artifactId>so-optimization-clients</artifactId>
10 <build>
11 <plugins>
12 <plugin>
13 <groupId>org.apache.maven.plugins</groupId>
14 <artifactId>maven-surefire-plugin</artifactId>
15 <executions>
16 <execution>
17 <id>integration-test</id>
18 <goals>
19 <goal>test</goal>
20 </goals>
21 <configuration>
22 <includes>
23 <include>**/IntegrationTestSuite.java</include>
24 </includes>
25 </configuration>
26 </execution>
27 </executions>
28 <configuration>
29 <parallel>suites</parallel>
30 </configuration>
31 </plugin>
32 </plugins>
33 </build>
34 <dependencyManagement>
35 <dependencies>
36 <dependency>
37 <!-- Import dependency management from Spring Boot -->
38 <groupId>org.springframework.boot</groupId>
39 <artifactId>spring-boot-dependencies</artifactId>
40 <version>${springboot.version}</version>
41 <type>pom</type>
42 <scope>import</scope>
43 </dependency>
44 </dependencies>
45 </dependencyManagement>
46 <dependencies>
47 <dependency>
48 <groupId>org.camunda.bpm.springboot</groupId>
49 <artifactId>camunda-bpm-spring-boot-starter</artifactId>
50 <version>${camunda.springboot.version}</version>
51 <scope>test</scope>
52 </dependency>
53 <dependency>
54 <groupId>org.springframework.cloud</groupId>
55 <artifactId>spring-cloud-contract-wiremock</artifactId>
56 <version>1.2.4.RELEASE</version>
57 <scope>test</scope>
58 </dependency>
59 <dependency>
60 <groupId>org.springframework.boot</groupId>
61 <artifactId>spring-boot-starter-test</artifactId>
62 <scope>test</scope>
63 </dependency>
64 <dependency>
65 <groupId>org.apache.commons</groupId>
66 <artifactId>commons-lang3</artifactId>
67 </dependency>
68 <dependency>
69 <groupId>org.springframework.boot</groupId>
70 <artifactId>spring-boot-configuration-processor</artifactId>
71 <optional>true</optional>
72 </dependency>
73 <dependency>
74 <groupId>org.onap.so</groupId>
75 <artifactId>common</artifactId>
76 <version>${project.version}</version>
77 </dependency>
78 <dependency>
79 <groupId>ch.vorburger.mariaDB4j</groupId>
80 <artifactId>mariaDB4j</artifactId>
81 <version>2.2.3</version>
82 <scope>test</scope>
83 </dependency>
84 <dependency>
85 <groupId>org.mariadb.jdbc</groupId>
86 <artifactId>mariadb-java-client</artifactId>
87 </dependency>
88 </dependencies>
89</project>