blob: 25913eabba433648f6066824d89a1b9ecb432bb2 [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>
MichaelMorris37cacbd2019-08-02 23:20:31 +0000137 <resources>
138 <resource>
139 <directory>src/main/resources</directory>
140 <filtering>true</filtering>
141 <excludes>
142 <exclude>**/*.p12</exclude>
143 <exclude>**/*.jks</exclude>
144 </excludes>
145 </resource>
146 <resource>
147 <directory>src/main/resources</directory>
148 <filtering>false</filtering>
149 <includes>
150 <include>**/*.p12</include>
151 <include>**/*.jks</include>
152 </includes>
153 </resource>
154 </resources>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -0400155 </build>
156 <dependencyManagement>
157 <dependencies>
158 <dependency>
159 <!-- Import dependency management from Spring Boot -->
160 <groupId>org.springframework.boot</groupId>
161 <artifactId>spring-boot-dependencies</artifactId>
162 <version>${springboot.version}</version>
163 <type>pom</type>
164 <scope>import</scope>
165 </dependency>
166 </dependencies>
167 </dependencyManagement>
168 <dependencies>
169 <dependency>
170 <groupId>org.camunda.bpm.springboot</groupId>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -0400171 <artifactId>camunda-bpm-spring-boot-starter-rest</artifactId>
172 <version>${camunda.springboot.version}</version>
zm33084a1b182019-04-23 18:08:56 +0800173 <exclusions>
174 <exclusion>
175 <groupId>org.camunda.bpmn</groupId>
176 <artifactId>camunda-engine-rest-core</artifactId>
177 </exclusion>
Sangalang, Felix785fab52019-06-21 10:46:38 -0400178 <exclusion>
179 <groupId>commons-fileupload</groupId>
180 <artifactId>commons-fileupload</artifactId>
181 </exclusion>
zm33084a1b182019-04-23 18:08:56 +0800182 </exclusions>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -0400183 </dependency>
184 <dependency>
185 <groupId>org.camunda.bpm.springboot</groupId>
186 <artifactId>camunda-bpm-spring-boot-starter-webapp</artifactId>
187 <version>${camunda.springboot.version}</version>
188 <exclusions>
189 <exclusion>
190 <groupId>org.camunda.bpmn</groupId>
191 <artifactId>camunda-engine-rest-core</artifactId>
192 </exclusion>
193 </exclusions>
194 </dependency>
195 <dependency>
196 <groupId>org.springframework.boot</groupId>
197 <artifactId>spring-boot-starter-web</artifactId>
198 </dependency>
199 <dependency>
200 <groupId>org.springframework.boot</groupId>
201 <artifactId>spring-boot-starter-data-jpa</artifactId>
202 <exclusions>
203 <exclusion>
204 <groupId>org.apache.tomcat</groupId>
205 <artifactId>tomcat-jdbc</artifactId>
206 </exclusion>
207 </exclusions>
208 <optional>true</optional>
209 </dependency>
210 <dependency>
211 <groupId>org.springframework.boot</groupId>
212 <artifactId>spring-boot-starter-jdbc</artifactId>
213 </dependency>
214 <dependency>
215 <groupId>org.springframework.boot</groupId>
216 <artifactId>spring-boot-starter-test</artifactId>
217 <scope>test</scope>
218 </dependency>
219 <dependency>
220 <groupId>org.onap.so</groupId>
221 <artifactId>so-bpmn-infrastructure-common</artifactId>
222 <version>${project.version}</version>
223 </dependency>
224 <dependency>
225 <groupId>org.onap.so</groupId>
226 <artifactId>MSOCommonBPMN</artifactId>
227 <version>${project.version}</version>
228 </dependency>
229 <dependency>
230 <groupId>org.onap.so</groupId>
231 <artifactId>MSOCommonBPMN</artifactId>
232 <version>${project.version}</version>
233 <type>test-jar</type>
234 <scope>test</scope>
235 </dependency>
236 <dependency>
237 <groupId>org.onap.so</groupId>
238 <artifactId>so-bpmn-building-blocks</artifactId>
239 <version>${project.version}</version>
240 </dependency>
241 <dependency>
242 <groupId>org.onap.so</groupId>
243 <artifactId>so-bpmn-infrastructure-flows</artifactId>
244 <version>${project.version}</version>
245 </dependency>
246 <dependency>
247 <groupId>com.h2database</groupId>
248 <artifactId>h2</artifactId>
249 </dependency>
250 <dependency>
251 <groupId>org.springframework.cloud</groupId>
252 <artifactId>spring-cloud-contract-wiremock</artifactId>
253 <version>1.2.4.RELEASE</version>
254 <scope>test</scope>
255 </dependency>
256 <dependency>
257 <groupId>ch.vorburger.mariaDB4j</groupId>
258 <artifactId>mariaDB4j</artifactId>
259 <version>2.2.3</version>
260 <scope>test</scope>
261 </dependency>
262 <dependency>
263 <groupId>io.micrometer</groupId>
264 <artifactId>micrometer-core</artifactId>
265 </dependency>
266 <dependency>
267 <groupId>io.micrometer</groupId>
268 <artifactId>micrometer-registry-prometheus</artifactId>
269 </dependency>
270 <dependency>
271 <groupId>org.onap.so</groupId>
272 <artifactId>so-bpmn-tasks</artifactId>
273 <version>${project.version}</version>
274 </dependency>
275 <dependency>
276 <groupId>org.onap.so</groupId>
277 <artifactId>cxf-logging</artifactId>
278 <version>${project.version}</version>
279 </dependency>
280 <dependency>
281 <groupId>org.camunda.bpm.extension.mockito</groupId>
282 <artifactId>camunda-bpm-mockito</artifactId>
283 <version>3.2.1</version>
284 <scope>test</scope>
285 </dependency>
286 <dependency>
287 <groupId>org.camunda.bpm.extension</groupId>
288 <artifactId>camunda-bpm-assert</artifactId>
289 <version>2.0-alpha2</version>
290 <scope>test</scope>
291 </dependency>
292 <dependency>
293 <groupId>org.assertj</groupId>
294 <artifactId>assertj-core</artifactId>
295 <version>1.7.0</version>
296 <scope>test</scope>
297 </dependency>
298 </dependencies>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400299</project>