blob: 7a00d1281ce37a0a0bb6c86ad0bba7b5547c97ae [file] [log] [blame]
Gary Wu1c1fc782018-08-24 15:30:22 -07001<?xml version="1.0"?>
2<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -04003 <parent>
4 <groupId>org.onap.so</groupId>
5 <artifactId>bpmn</artifactId>
Rob Daugherty325d4e22018-10-19 15:13:38 -04006 <version>1.4.0-SNAPSHOT</version>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -04007 </parent>
8 <modelVersion>4.0.0</modelVersion>
9 <artifactId>so-bpmn-infrastructure-flows</artifactId>
10 <packaging>jar</packaging>
11 <properties>
12 <camunda.version>7.8.0</camunda.version>
13 </properties>
14 <build>
15 <plugins>
16 <plugin>
17 <groupId>org.apache.cxf</groupId>
18 <artifactId>cxf-codegen-plugin</artifactId>
19 <version>2.5.2</version>
20 </plugin>
21 <plugin>
22 <groupId>org.apache.maven.plugins</groupId>
23 <artifactId>maven-dependency-plugin</artifactId>
24 </plugin>
25 <plugin>
26 <artifactId>maven-failsafe-plugin</artifactId>
27 <version>2.6</version>
28 <executions>
29 <execution>
30 <goals>
31 <goal>integration-test</goal>
32 <goal>verify</goal>
33 </goals>
34 </execution>
35 </executions>
36 </plugin>
37 </plugins>
38 <pluginManagement>
39 <plugins>
40 <!--This plugin's configuration is used to store Eclipse m2e settings
41 only. It has no influence on the Maven build itself. -->
42 <plugin>
43 <groupId>org.eclipse.m2e</groupId>
44 <artifactId>lifecycle-mapping</artifactId>
45 <version>1.0.0</version>
46 <configuration>
47 <lifecycleMappingMetadata>
48 <pluginExecutions>
49 <pluginExecution>
50 <pluginExecutionFilter>
51 <groupId>
52 org.apache.maven.plugins
53 </groupId>
54 <artifactId>
55 maven-antrun-plugin
56 </artifactId>
57 <versionRange>
58 [1.3,)
59 </versionRange>
60 <goals>
61 <goal>run</goal>
62 </goals>
63 </pluginExecutionFilter>
64 <action>
Gary Wu1c1fc782018-08-24 15:30:22 -070065 <ignore/>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -040066 </action>
67 </pluginExecution>
68 </pluginExecutions>
69 </lifecycleMappingMetadata>
70 </configuration>
71 </plugin>
72 <plugin>
73 <groupId>org.apache.maven.plugins</groupId>
74 <artifactId>maven-surefire-plugin</artifactId>
75 <executions>
Smokowski, Steve (ss835w)1db2da22018-08-08 16:03:53 -040076 <execution>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -040077 <id>default-test</id>
78 <goals>
79 <goal>test</goal>
80 </goals>
Smokowski, Steve (ss835w)1db2da22018-08-08 16:03:53 -040081 <configuration>
82 <includes>
83 <include>**/AllTestsTestSuite.java</include>
84 </includes>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -040085 </configuration>
86 </execution>
87 <execution>
88 <id>tasks-test</id>
89 <goals>
90 <goal>test</goal>
91 </goals>
Smokowski, Steve (ss835w)1db2da22018-08-08 16:03:53 -040092 <configuration>
93 <includes>
94 <include>**/AllTasksTestsTestSuite.java</include>
95 </includes>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -040096 </configuration>
97 </execution>
98 <execution>
Smokowski, Steve (ss835w)1db2da22018-08-08 16:03:53 -040099 <id>bpmn-test</id>
100 <goals>
101 <goal>test</goal>
102 </goals>
103 <configuration>
104 <includes>
105 <include>**/AllBPMNTestSuites.java</include>
106 </includes>
107 </configuration>
108 </execution>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400109 </executions>
110 </plugin>
111 </plugins>
112 </pluginManagement>
113 <finalName>${project.artifactId}-${project.version}</finalName>
114 </build>
115
116 <dependencyManagement>
117 <dependencies>
118 <dependency>
119 <groupId>org.camunda.bpm</groupId>
120 <artifactId>camunda-bom</artifactId>
121 <version>${camunda.version}</version>
122 <scope>import</scope>
123 <type>pom</type>
124 </dependency>
125 </dependencies>
126 </dependencyManagement>
127
128 <dependencies>
129 <dependency>
130 <groupId>org.camunda.bpm.springboot</groupId>
131 <artifactId>camunda-bpm-spring-boot-starter</artifactId>
132 <version>2.3.0</version>
133 <scope>test</scope>
134 </dependency>
135 <dependency>
136 <groupId>org.springframework.boot</groupId>
Smokowski, Steve (ss835w)1db2da22018-08-08 16:03:53 -0400137 <artifactId>spring-boot-starter-test</artifactId>
138 <scope>test</scope>
139 </dependency>
140 <dependency>
141 <groupId>org.springframework.boot</groupId>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400142 <artifactId>spring-boot-starter-web</artifactId>
143 <scope>test</scope>
Smokowski, Steve (ss835w)1db2da22018-08-08 16:03:53 -0400144 </dependency>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400145 <dependency>
146 <groupId>org.springframework.boot</groupId>
147 <artifactId>spring-boot-starter-data-jpa</artifactId>
148 <optional>true</optional>
149 </dependency>
150 <dependency>
151 <groupId>org.apache.cxf</groupId>
152 <artifactId>cxf-spring-boot-starter-jaxws</artifactId>
Smokowski, Steve (ss835w)ffa1f2e2018-08-07 08:37:49 -0400153 <version>${cxf.version}</version>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400154 </dependency>
155 <dependency>
156 <groupId>org.apache.cxf</groupId>
157 <artifactId>cxf-spring-boot-starter-jaxrs</artifactId>
Smokowski, Steve (ss835w)ffa1f2e2018-08-07 08:37:49 -0400158 <version>${cxf.version}</version>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400159 </dependency>
160 <dependency>
161 <groupId>org.apache.cxf</groupId>
162 <artifactId>cxf-rt-rs-service-description-swagger</artifactId>
Smokowski, Steve (ss835w)ffa1f2e2018-08-07 08:37:49 -0400163 <version>${cxf.version}</version>
Smokowski, Steve (ss835w)1db2da22018-08-08 16:03:53 -0400164 </dependency>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400165 <dependency>
166 <groupId>com.h2database</groupId>
167 <artifactId>h2</artifactId>
168 <scope>test</scope>
169 </dependency>
170 <dependency>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400171 <groupId>org.mockito</groupId>
172 <artifactId>mockito-core</artifactId>
173 <version>1.10.19</version>
174 <scope>test</scope>
175 </dependency>
176 <dependency>
177 <groupId>com.fasterxml.uuid</groupId>
178 <artifactId>java-uuid-generator</artifactId>
179 </dependency>
180 <dependency>
181 <groupId>org.codehaus.groovy</groupId>
182 <artifactId>groovy-all</artifactId>
183 </dependency>
184 <dependency>
185 <groupId>org.apache.commons</groupId>
186 <artifactId>commons-lang3</artifactId>
187 <version>3.4</version>
188 </dependency>
189 <dependency>
190 <groupId>org.onap.so</groupId>
191 <artifactId>MSOCoreBPMN</artifactId>
192 <version>${project.version}</version>
193 </dependency>
194 <dependency>
195 <groupId>org.onap.so</groupId>
196 <artifactId>MSOCommonBPMN</artifactId>
197 <version>${project.version}</version>
198 </dependency>
199 <dependency>
200 <groupId>org.onap.so</groupId>
201 <artifactId>MSOCoreBPMN</artifactId>
202 <version>${project.version}</version>
203 <classifier>tests</classifier>
204 <scope>test</scope>
205 </dependency>
206 <dependency>
207 <groupId>javax.ws.rs</groupId>
208 <artifactId>javax.ws.rs-api</artifactId>
Benjamin, Max (mb388a)e4f7e562018-08-11 00:17:59 -0400209 <version>${jax.ws.rs}</version>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400210 </dependency>
211 <dependency>
Smokowski, Steve (ss835w)1db2da22018-08-08 16:03:53 -0400212 <groupId>org.onap.so</groupId>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400213 <artifactId>MSORESTClient</artifactId>
214 <version>${project.version}</version>
215 </dependency>
216 <dependency>
217 <groupId>org.camunda.spin</groupId>
218 <artifactId>camunda-spin-core</artifactId>
219 <scope>test</scope>
220 </dependency>
221 <dependency>
222 <groupId>org.camunda.spin</groupId>
223 <artifactId>camunda-spin-dataformat-all</artifactId>
224 <scope>test</scope>
225 </dependency>
226 <dependency>
227 <artifactId>camunda-spin-dataformat-all</artifactId>
228 <groupId>org.camunda.spin</groupId>
229 <scope>test</scope>
230 </dependency>
231 <dependency>
232 <groupId>org.camunda.bpm</groupId>
233 <artifactId>camunda-engine-plugin-spin</artifactId>
234 </dependency>
235
236 <dependency>
237 <groupId>org.camunda.bpm</groupId>
238 <artifactId>camunda-engine-plugin-connect</artifactId>
239 <scope>test</scope>
240 </dependency>
241 <dependency>
242 <groupId>javax.annotation</groupId>
243 <artifactId>javax.annotation-api</artifactId>
244 <version>1.3</version>
245 </dependency>
Smokowski, Steve (ss835w)1db2da22018-08-08 16:03:53 -0400246 <dependency>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400247 <groupId>org.springframework.boot</groupId>
248 <artifactId>spring-boot-configuration-processor</artifactId>
249 <optional>true</optional>
250 </dependency>
251 <dependency>
252 <groupId>ch.qos.logback</groupId>
253 <artifactId>logback-classic</artifactId>
254 </dependency>
255 <dependency>
256 <groupId>ch.qos.logback</groupId>
257 <artifactId>logback-core</artifactId>
258 </dependency>
259 <dependency>
260 <groupId>org.slf4j</groupId>
261 <artifactId>slf4j-api</artifactId>
Smokowski, Steve (ss835w)1db2da22018-08-08 16:03:53 -0400262 </dependency>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400263 <dependency>
264 <groupId>org.mariadb.jdbc</groupId>
265 <artifactId>mariadb-java-client</artifactId>
266 </dependency>
267 <dependency>
Smokowski, Steve (ss835w)1db2da22018-08-08 16:03:53 -0400268 <groupId>ch.vorburger.mariaDB4j</groupId>
269 <artifactId>mariaDB4j</artifactId>
270 <version>2.2.3</version>
271 <scope>test</scope>
272 </dependency>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400273 </dependencies>
274</project>