blob: eb587327965d45521d5668865255120671da9d69 [file] [log] [blame]
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -04001<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -04002 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-rest</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-webapp</artifactId>
164 <version>${camunda.springboot.version}</version>
165 <exclusions>
166 <exclusion>
167 <groupId>org.camunda.bpmn</groupId>
168 <artifactId>camunda-engine-rest-core</artifactId>
169 </exclusion>
170 </exclusions>
171 </dependency>
172 <dependency>
173 <groupId>org.springframework.boot</groupId>
174 <artifactId>spring-boot-starter-web</artifactId>
175 </dependency>
176 <dependency>
177 <groupId>org.springframework.boot</groupId>
178 <artifactId>spring-boot-starter-data-jpa</artifactId>
179 <exclusions>
180 <exclusion>
181 <groupId>org.apache.tomcat</groupId>
182 <artifactId>tomcat-jdbc</artifactId>
183 </exclusion>
184 </exclusions>
185 <optional>true</optional>
186 </dependency>
187 <dependency>
188 <groupId>org.springframework.boot</groupId>
189 <artifactId>spring-boot-starter-jdbc</artifactId>
190 </dependency>
191 <dependency>
192 <groupId>org.springframework.boot</groupId>
193 <artifactId>spring-boot-starter-test</artifactId>
194 <scope>test</scope>
195 </dependency>
196 <dependency>
197 <groupId>org.onap.so</groupId>
198 <artifactId>so-bpmn-infrastructure-common</artifactId>
199 <version>${project.version}</version>
200 </dependency>
201 <dependency>
202 <groupId>org.onap.so</groupId>
203 <artifactId>MSOCommonBPMN</artifactId>
204 <version>${project.version}</version>
205 </dependency>
206 <dependency>
207 <groupId>org.onap.so</groupId>
208 <artifactId>MSOCommonBPMN</artifactId>
209 <version>${project.version}</version>
210 <type>test-jar</type>
211 <scope>test</scope>
212 </dependency>
213 <dependency>
214 <groupId>org.onap.so</groupId>
215 <artifactId>so-bpmn-building-blocks</artifactId>
216 <version>${project.version}</version>
217 </dependency>
218 <dependency>
219 <groupId>org.onap.so</groupId>
220 <artifactId>so-bpmn-infrastructure-flows</artifactId>
221 <version>${project.version}</version>
222 </dependency>
223 <dependency>
224 <groupId>com.h2database</groupId>
225 <artifactId>h2</artifactId>
226 </dependency>
227 <dependency>
228 <groupId>org.springframework.cloud</groupId>
229 <artifactId>spring-cloud-contract-wiremock</artifactId>
230 <version>1.2.4.RELEASE</version>
231 <scope>test</scope>
232 </dependency>
233 <dependency>
234 <groupId>ch.vorburger.mariaDB4j</groupId>
235 <artifactId>mariaDB4j</artifactId>
236 <version>2.2.3</version>
237 <scope>test</scope>
238 </dependency>
239 <dependency>
240 <groupId>io.micrometer</groupId>
241 <artifactId>micrometer-core</artifactId>
242 </dependency>
243 <dependency>
244 <groupId>io.micrometer</groupId>
245 <artifactId>micrometer-registry-prometheus</artifactId>
246 </dependency>
247 <dependency>
248 <groupId>org.onap.so</groupId>
249 <artifactId>so-bpmn-tasks</artifactId>
250 <version>${project.version}</version>
251 </dependency>
252 <dependency>
253 <groupId>org.onap.so</groupId>
254 <artifactId>cxf-logging</artifactId>
255 <version>${project.version}</version>
256 </dependency>
257 <dependency>
258 <groupId>org.camunda.bpm.extension.mockito</groupId>
259 <artifactId>camunda-bpm-mockito</artifactId>
260 <version>3.2.1</version>
261 <scope>test</scope>
262 </dependency>
263 <dependency>
264 <groupId>org.camunda.bpm.extension</groupId>
265 <artifactId>camunda-bpm-assert</artifactId>
266 <version>2.0-alpha2</version>
267 <scope>test</scope>
268 </dependency>
269 <dependency>
270 <groupId>org.assertj</groupId>
271 <artifactId>assertj-core</artifactId>
272 <version>1.7.0</version>
273 <scope>test</scope>
274 </dependency>
275 </dependencies>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400276</project>