Add unit tests for ExternalAPIUtil
[so.git] / bpmn / mso-infrastructure-bpmn / pom.xml
1 <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>bpmn</artifactId>
6                 <version>1.4.0-SNAPSHOT</version>
7         </parent>
8         <modelVersion>4.0.0</modelVersion>
9         <artifactId>mso-infrastructure-bpmn</artifactId>
10         <packaging>jar</packaging>
11         <build>
12                 <plugins>
13                         <plugin>
14                                 <groupId>org.apache.maven.plugins</groupId>
15                                 <artifactId>maven-dependency-plugin</artifactId>
16                                 <executions>
17                                         <execution>
18                                                 <id>unpack</id>
19                                                 <goals>
20                                                         <goal>unpack</goal>
21                                                 </goals>
22                                                 <configuration>
23                                                         <artifactItems>
24                                                                 <artifactItem>
25                                                                         <groupId>org.onap.so</groupId>
26                                                                         <artifactId>MSOCommonBPMN</artifactId>
27                                                                         <version>${project.version}</version>
28                                                                         <type>jar</type>
29                                                                         <overWrite>false</overWrite>
30                                                                         <outputDirectory>${project.build.outputDirectory}</outputDirectory>
31                                                                         <includes>**/*.bpmn</includes>
32                                                                 </artifactItem>
33                                                                 <artifactItem>
34                                                                         <groupId>org.onap.so</groupId>
35                                                                         <artifactId>so-bpmn-building-blocks</artifactId>
36                                                                         <version>${project.version}</version>
37                                                                         <type>jar</type>
38                                                                         <overWrite>false</overWrite>
39                                                                         <outputDirectory>${project.build.outputDirectory}</outputDirectory>
40                                                                         <includes>**/*.bpmn</includes>
41                                                                 </artifactItem>
42                                                                 <artifactItem>
43                                                                         <groupId>org.onap.so</groupId>
44                                                                         <artifactId>so-bpmn-infrastructure-flows</artifactId>
45                                                                         <version>${project.version}</version>
46                                                                         <type>jar</type>
47                                                                         <overWrite>false</overWrite>
48                                                                         <outputDirectory>${project.build.outputDirectory}</outputDirectory>
49                                                                         <includes>**/*.bpmn</includes>
50                                                                 </artifactItem>
51                                                         </artifactItems>
52                                                 </configuration>
53                                         </execution>
54                                 </executions>
55                         </plugin>
56                         <plugin>
57                                 <groupId>org.apache.maven.plugins</groupId>
58                                 <artifactId>maven-compiler-plugin</artifactId>
59                                 <executions>
60                                         <execution>
61                                                 <id>test-compile</id>
62                                                 <phase>compile</phase>
63                                                 <goals>
64                                                         <goal>testCompile</goal>
65                                                 </goals>
66                                                 <configuration>
67                                                         <skip>false</skip>
68                                                 </configuration>
69                                         </execution>
70                                 </executions>
71                         </plugin>
72                         <plugin>
73                                 <groupId>org.apache.maven.plugins</groupId>
74                                 <artifactId>maven-jar-plugin</artifactId>
75                                 <executions>
76                                         <execution>
77                                                 <id>tests</id>
78                                         </execution>
79                                         <execution>
80                                                 <id>original</id>
81                                         </execution>
82                                 </executions>
83                         </plugin>
84                         <plugin>
85                                 <groupId>org.springframework.boot</groupId>
86                                 <artifactId>spring-boot-maven-plugin</artifactId>
87                                 <version>${springboot.version}</version>
88                                 <configuration>
89                                         <mainClass>org.onap.so.bpmn.infrastructure.MSOInfrastructureApplication</mainClass>
90                                 </configuration>
91                                 <executions>
92                                         <execution>
93                                                 <goals>
94                                                         <goal>repackage</goal>
95                                                 </goals>
96                                         </execution>
97                                 </executions>
98                         </plugin>
99                         <plugin>
100                                 <groupId>org.apache.maven.plugins</groupId>
101                                 <artifactId>maven-dependency-plugin</artifactId>
102                                 <executions>
103                                         <execution>
104                                                 <id>extract-docker-file</id>
105                                         </execution>
106                                 </executions>
107                         </plugin>
108                         <plugin>
109                                 <groupId>io.fabric8</groupId>
110                                 <artifactId>fabric8-maven-plugin</artifactId>
111                                 <executions>
112                                         <execution>
113                                                 <id>start</id>
114                                         </execution>
115                                 </executions>
116                         </plugin>
117                 </plugins>
118         </build>
119         <dependencyManagement>
120                 <dependencies>
121                         <dependency>
122                                 <!-- Import dependency management from Spring Boot -->
123                                 <groupId>org.springframework.boot</groupId>
124                                 <artifactId>spring-boot-dependencies</artifactId>
125                                 <version>${springboot.version}</version>
126                                 <type>pom</type>
127                                 <scope>import</scope>
128                         </dependency>
129                 </dependencies>
130         </dependencyManagement>
131         <dependencies>
132                 <dependency>
133                         <groupId>org.camunda.bpm.springboot</groupId>
134                         <artifactId>camunda-bpm-spring-boot-starter</artifactId>
135                         <version>${camunda.springboot.version}</version>
136                 </dependency>
137                 <dependency>
138                         <groupId>org.camunda.bpm.springboot</groupId>
139                         <artifactId>camunda-bpm-spring-boot-starter-webapp</artifactId>
140                         <version>${camunda.springboot.version}</version>
141                 </dependency>
142                 <dependency>
143                         <groupId>org.camunda.bpm.springboot</groupId>
144                         <artifactId>camunda-bpm-spring-boot-starter-rest</artifactId>
145                         <version>${camunda.springboot.version}</version>
146                 </dependency>
147                 <dependency>
148                         <groupId>org.springframework.boot</groupId>
149                         <artifactId>spring-boot-starter-web</artifactId>
150                 </dependency>
151                 <dependency>
152                         <groupId>org.springframework.boot</groupId>
153                         <artifactId>spring-boot-starter-data-jpa</artifactId>
154                         <optional>true</optional>
155                 </dependency>
156                 <dependency>
157                         <groupId>org.springframework.boot</groupId>
158                         <artifactId>spring-boot-starter-test</artifactId>
159                         <scope>test</scope>
160                 </dependency>
161                 <dependency>
162                         <groupId>org.onap.so</groupId>
163                         <artifactId>so-bpmn-infrastructure-common</artifactId>
164                         <version>${project.version}</version>
165                 </dependency>
166                 <dependency>
167                         <groupId>org.onap.so</groupId>
168                         <artifactId>MSOCommonBPMN</artifactId>
169                         <version>${project.version}</version>
170                 </dependency>
171                 <dependency>
172                         <groupId>org.onap.so</groupId>
173                         <artifactId>MSOCommonBPMN</artifactId>
174                         <version>${project.version}</version>
175                         <type>test-jar</type>
176                         <scope>test</scope>
177                 </dependency>
178                 <dependency>
179                         <groupId>com.h2database</groupId>
180                         <artifactId>h2</artifactId>
181                 </dependency>
182                 <dependency>
183                         <groupId>org.springframework.cloud</groupId>
184                         <artifactId>spring-cloud-contract-wiremock</artifactId>
185                         <version>1.2.4.RELEASE</version>
186                         <scope>test</scope>
187                 </dependency>
188                 <dependency>
189                         <groupId>ch.vorburger.mariaDB4j</groupId>
190                         <artifactId>mariaDB4j</artifactId>
191                         <version>2.2.3</version>
192                         <scope>test</scope>
193                 </dependency>
194                 <dependency>
195                         <groupId>io.micrometer</groupId>
196                         <artifactId>micrometer-core</artifactId>
197                 </dependency>
198                 <dependency>
199                         <groupId>io.micrometer</groupId>
200                         <artifactId>micrometer-registry-prometheus</artifactId>                 
201                 </dependency>
202                 <dependency>
203                         <groupId>org.onap.so</groupId>
204                         <artifactId>so-bpmn-tasks</artifactId>
205                         <version>${project.version}</version>
206                 </dependency>
207                 <dependency>
208                         <groupId>org.onap.so</groupId>
209                         <artifactId>cxf-logging</artifactId>
210                         <version>${project.version}</version>
211                 </dependency>
212                 <dependency>
213                         <groupId>org.camunda.bpm.extension.mockito</groupId>
214                         <artifactId>camunda-bpm-mockito</artifactId>
215                         <version>3.2.1</version>
216                         <scope>test</scope>
217                 </dependency>
218                 <dependency>
219                         <groupId>org.camunda.bpm.extension</groupId>
220                         <artifactId>camunda-bpm-assert</artifactId>
221                         <version>2.0-alpha2</version>
222                         <scope>test</scope>
223                 </dependency>
224                 <dependency>
225                         <groupId>org.assertj</groupId>
226                         <artifactId>assertj-core</artifactId>
227                         <version>1.7.0</version>
228                         <scope>test</scope>
229                 </dependency>
230         </dependencies>
231 </project>