blob: 04a291af8c4dfec5351ac3d5a350310abff383c0 [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>
seshukmb9af26a2020-02-26 19:30:17 +08006 <version>1.6.0-SNAPSHOT</version>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -04007 </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>
Benjamin, Max7e372112019-11-08 10:32:10 -050096 <id>tests-jar</id>
97 <goals>
98 <goal>test-jar</goal>
99 </goals>
100 <configuration>
101 <skip>false</skip>
102 </configuration>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -0400103 </execution>
104 <execution>
105 <id>original</id>
Benjamin, Max7e372112019-11-08 10:32:10 -0500106 <configuration>
107 <skip>false</skip>
108 </configuration>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -0400109 </execution>
110 </executions>
111 </plugin>
112 <plugin>
113 <groupId>org.springframework.boot</groupId>
114 <artifactId>spring-boot-maven-plugin</artifactId>
115 <version>${springboot.version}</version>
116 <configuration>
117 <mainClass>org.onap.so.bpmn.infrastructure.MSOInfrastructureApplication</mainClass>
118 </configuration>
119 <executions>
120 <execution>
121 <goals>
122 <goal>repackage</goal>
123 </goals>
124 </execution>
125 </executions>
126 </plugin>
127 <plugin>
128 <groupId>org.apache.maven.plugins</groupId>
129 <artifactId>maven-dependency-plugin</artifactId>
130 <executions>
131 <execution>
132 <id>extract-docker-file</id>
133 </execution>
134 </executions>
135 </plugin>
136 <plugin>
137 <groupId>io.fabric8</groupId>
138 <artifactId>fabric8-maven-plugin</artifactId>
139 <executions>
140 <execution>
141 <id>start</id>
142 </execution>
143 </executions>
144 </plugin>
145 </plugins>
MichaelMorris37cacbd2019-08-02 23:20:31 +0000146 <resources>
147 <resource>
148 <directory>src/main/resources</directory>
149 <filtering>true</filtering>
150 <excludes>
151 <exclude>**/*.p12</exclude>
152 <exclude>**/*.jks</exclude>
153 </excludes>
154 </resource>
155 <resource>
156 <directory>src/main/resources</directory>
157 <filtering>false</filtering>
158 <includes>
159 <include>**/*.p12</include>
160 <include>**/*.jks</include>
161 </includes>
162 </resource>
163 </resources>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -0400164 </build>
165 <dependencyManagement>
166 <dependencies>
167 <dependency>
168 <!-- Import dependency management from Spring Boot -->
169 <groupId>org.springframework.boot</groupId>
170 <artifactId>spring-boot-dependencies</artifactId>
171 <version>${springboot.version}</version>
172 <type>pom</type>
173 <scope>import</scope>
174 </dependency>
175 </dependencies>
176 </dependencyManagement>
177 <dependencies>
178 <dependency>
179 <groupId>org.camunda.bpm.springboot</groupId>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -0400180 <artifactId>camunda-bpm-spring-boot-starter-rest</artifactId>
181 <version>${camunda.springboot.version}</version>
zm33084a1b182019-04-23 18:08:56 +0800182 <exclusions>
183 <exclusion>
184 <groupId>org.camunda.bpmn</groupId>
185 <artifactId>camunda-engine-rest-core</artifactId>
186 </exclusion>
Sangalang, Felix785fab52019-06-21 10:46:38 -0400187 <exclusion>
188 <groupId>commons-fileupload</groupId>
189 <artifactId>commons-fileupload</artifactId>
190 </exclusion>
zm33084a1b182019-04-23 18:08:56 +0800191 </exclusions>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -0400192 </dependency>
193 <dependency>
194 <groupId>org.camunda.bpm.springboot</groupId>
195 <artifactId>camunda-bpm-spring-boot-starter-webapp</artifactId>
196 <version>${camunda.springboot.version}</version>
197 <exclusions>
198 <exclusion>
199 <groupId>org.camunda.bpmn</groupId>
200 <artifactId>camunda-engine-rest-core</artifactId>
201 </exclusion>
202 </exclusions>
203 </dependency>
204 <dependency>
205 <groupId>org.springframework.boot</groupId>
206 <artifactId>spring-boot-starter-web</artifactId>
207 </dependency>
208 <dependency>
209 <groupId>org.springframework.boot</groupId>
210 <artifactId>spring-boot-starter-data-jpa</artifactId>
211 <exclusions>
212 <exclusion>
213 <groupId>org.apache.tomcat</groupId>
214 <artifactId>tomcat-jdbc</artifactId>
215 </exclusion>
216 </exclusions>
217 <optional>true</optional>
218 </dependency>
219 <dependency>
220 <groupId>org.springframework.boot</groupId>
221 <artifactId>spring-boot-starter-jdbc</artifactId>
222 </dependency>
223 <dependency>
224 <groupId>org.springframework.boot</groupId>
225 <artifactId>spring-boot-starter-test</artifactId>
226 <scope>test</scope>
227 </dependency>
228 <dependency>
229 <groupId>org.onap.so</groupId>
230 <artifactId>so-bpmn-infrastructure-common</artifactId>
231 <version>${project.version}</version>
232 </dependency>
233 <dependency>
234 <groupId>org.onap.so</groupId>
235 <artifactId>MSOCommonBPMN</artifactId>
236 <version>${project.version}</version>
237 </dependency>
238 <dependency>
239 <groupId>org.onap.so</groupId>
240 <artifactId>MSOCommonBPMN</artifactId>
241 <version>${project.version}</version>
242 <type>test-jar</type>
243 <scope>test</scope>
244 </dependency>
245 <dependency>
246 <groupId>org.onap.so</groupId>
247 <artifactId>so-bpmn-building-blocks</artifactId>
248 <version>${project.version}</version>
249 </dependency>
250 <dependency>
251 <groupId>org.onap.so</groupId>
252 <artifactId>so-bpmn-infrastructure-flows</artifactId>
253 <version>${project.version}</version>
254 </dependency>
255 <dependency>
256 <groupId>com.h2database</groupId>
257 <artifactId>h2</artifactId>
258 </dependency>
259 <dependency>
260 <groupId>org.springframework.cloud</groupId>
261 <artifactId>spring-cloud-contract-wiremock</artifactId>
262 <version>1.2.4.RELEASE</version>
263 <scope>test</scope>
264 </dependency>
265 <dependency>
266 <groupId>ch.vorburger.mariaDB4j</groupId>
267 <artifactId>mariaDB4j</artifactId>
268 <version>2.2.3</version>
269 <scope>test</scope>
270 </dependency>
271 <dependency>
272 <groupId>io.micrometer</groupId>
273 <artifactId>micrometer-core</artifactId>
274 </dependency>
275 <dependency>
276 <groupId>io.micrometer</groupId>
277 <artifactId>micrometer-registry-prometheus</artifactId>
278 </dependency>
279 <dependency>
280 <groupId>org.onap.so</groupId>
281 <artifactId>so-bpmn-tasks</artifactId>
282 <version>${project.version}</version>
283 </dependency>
284 <dependency>
285 <groupId>org.onap.so</groupId>
286 <artifactId>cxf-logging</artifactId>
287 <version>${project.version}</version>
288 </dependency>
289 <dependency>
290 <groupId>org.camunda.bpm.extension.mockito</groupId>
291 <artifactId>camunda-bpm-mockito</artifactId>
292 <version>3.2.1</version>
293 <scope>test</scope>
294 </dependency>
295 <dependency>
296 <groupId>org.camunda.bpm.extension</groupId>
297 <artifactId>camunda-bpm-assert</artifactId>
298 <version>2.0-alpha2</version>
299 <scope>test</scope>
300 </dependency>
301 <dependency>
302 <groupId>org.assertj</groupId>
303 <artifactId>assertj-core</artifactId>
304 <version>1.7.0</version>
305 <scope>test</scope>
306 </dependency>
Ramesh Parthasarathy837beb72019-11-21 02:04:03 +0000307 <dependency>
308 <groupId>org.onap.aaf.authz</groupId>
309 <artifactId>aaf-cadi-aaf</artifactId>
310 <version>2.1.9</version>
311 <exclusions>
312 <exclusion>
313 <groupId>javax.servlet</groupId>
314 <artifactId>servlet-api</artifactId>
315 </exclusion>
316 </exclusions>
317 </dependency>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -0400318 </dependencies>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400319</project>