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