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