blob: b3275eb6ecbc8932e297ecf0fcb68b4c6e512731 [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>
Benjamin, Max (mb388a)61affc62018-11-05 11:00:36 -050010 <packaging>jar</packaging>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -040011 <build>
12 <plugins>
13 <plugin>
14 <groupId>org.apache.cxf</groupId>
15 <artifactId>cxf-codegen-plugin</artifactId>
16 <version>2.5.2</version>
17 </plugin>
18 <plugin>
19 <groupId>org.apache.maven.plugins</groupId>
20 <artifactId>maven-dependency-plugin</artifactId>
21 </plugin>
22 <plugin>
23 <artifactId>maven-failsafe-plugin</artifactId>
24 <version>2.6</version>
25 <executions>
26 <execution>
27 <goals>
28 <goal>integration-test</goal>
29 <goal>verify</goal>
30 </goals>
31 </execution>
32 </executions>
33 </plugin>
34 </plugins>
35 <pluginManagement>
36 <plugins>
Benjamin, Max (mb388a)61affc62018-11-05 11:00:36 -050037 <!--This plugin's configuration is used to store Eclipse m2e settings
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -040038 only. It has no influence on the Maven build itself. -->
39 <plugin>
40 <groupId>org.eclipse.m2e</groupId>
41 <artifactId>lifecycle-mapping</artifactId>
42 <version>1.0.0</version>
43 <configuration>
44 <lifecycleMappingMetadata>
45 <pluginExecutions>
46 <pluginExecution>
47 <pluginExecutionFilter>
48 <groupId>
49 org.apache.maven.plugins
50 </groupId>
51 <artifactId>
52 maven-antrun-plugin
53 </artifactId>
54 <versionRange>
55 [1.3,)
56 </versionRange>
57 <goals>
58 <goal>run</goal>
59 </goals>
60 </pluginExecutionFilter>
61 <action>
Gary Wu1c1fc782018-08-24 15:30:22 -070062 <ignore/>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -040063 </action>
64 </pluginExecution>
65 </pluginExecutions>
66 </lifecycleMappingMetadata>
67 </configuration>
68 </plugin>
69 <plugin>
70 <groupId>org.apache.maven.plugins</groupId>
71 <artifactId>maven-surefire-plugin</artifactId>
72 <executions>
Smokowski, Steve (ss835w)1db2da22018-08-08 16:03:53 -040073 <execution>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -040074 <id>default-test</id>
75 <goals>
76 <goal>test</goal>
77 </goals>
Smokowski, Steve (ss835w)1db2da22018-08-08 16:03:53 -040078 <configuration>
79 <includes>
80 <include>**/AllTestsTestSuite.java</include>
81 </includes>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -040082 </configuration>
83 </execution>
84 <execution>
85 <id>tasks-test</id>
86 <goals>
87 <goal>test</goal>
88 </goals>
Smokowski, Steve (ss835w)1db2da22018-08-08 16:03:53 -040089 <configuration>
90 <includes>
91 <include>**/AllTasksTestsTestSuite.java</include>
92 </includes>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -040093 </configuration>
94 </execution>
95 <execution>
Smokowski, Steve (ss835w)1db2da22018-08-08 16:03:53 -040096 <id>bpmn-test</id>
97 <goals>
98 <goal>test</goal>
99 </goals>
100 <configuration>
101 <includes>
102 <include>**/AllBPMNTestSuites.java</include>
103 </includes>
104 </configuration>
105 </execution>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400106 </executions>
107 </plugin>
108 </plugins>
109 </pluginManagement>
110 <finalName>${project.artifactId}-${project.version}</finalName>
111 </build>
112
113 <dependencyManagement>
114 <dependencies>
115 <dependency>
116 <groupId>org.camunda.bpm</groupId>
117 <artifactId>camunda-bom</artifactId>
118 <version>${camunda.version}</version>
119 <scope>import</scope>
120 <type>pom</type>
121 </dependency>
122 </dependencies>
123 </dependencyManagement>
124
125 <dependencies>
126 <dependency>
127 <groupId>org.camunda.bpm.springboot</groupId>
128 <artifactId>camunda-bpm-spring-boot-starter</artifactId>
Benjamin, Max (mb388a)6fa3d2b2018-09-29 10:41:54 -0400129 <version>${camunda.springboot.version}</version>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400130 <scope>test</scope>
131 </dependency>
132 <dependency>
Benjamin, Max (mb388a)6fa3d2b2018-09-29 10:41:54 -0400133 <groupId>org.camunda.bpm.springboot</groupId>
134 <artifactId>camunda-bpm-spring-boot-starter-webapp</artifactId>
135 <version>${camunda.springboot.version}</version>
136 <scope>test</scope>
Benjamin, Max (mb388a)61affc62018-11-05 11:00:36 -0500137 </dependency>
Benjamin, Max (mb388a)6fa3d2b2018-09-29 10:41:54 -0400138 <dependency>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400139 <groupId>org.springframework.boot</groupId>
Smokowski, Steve (ss835w)1db2da22018-08-08 16:03:53 -0400140 <artifactId>spring-boot-starter-test</artifactId>
141 <scope>test</scope>
142 </dependency>
143 <dependency>
144 <groupId>org.springframework.boot</groupId>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400145 <artifactId>spring-boot-starter-web</artifactId>
146 <scope>test</scope>
Smokowski, Steve (ss835w)1db2da22018-08-08 16:03:53 -0400147 </dependency>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400148 <dependency>
149 <groupId>org.springframework.boot</groupId>
150 <artifactId>spring-boot-starter-data-jpa</artifactId>
151 <optional>true</optional>
152 </dependency>
153 <dependency>
154 <groupId>org.apache.cxf</groupId>
155 <artifactId>cxf-spring-boot-starter-jaxws</artifactId>
Smokowski, Steve (ss835w)ffa1f2e2018-08-07 08:37:49 -0400156 <version>${cxf.version}</version>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400157 </dependency>
158 <dependency>
159 <groupId>org.apache.cxf</groupId>
160 <artifactId>cxf-spring-boot-starter-jaxrs</artifactId>
Smokowski, Steve (ss835w)ffa1f2e2018-08-07 08:37:49 -0400161 <version>${cxf.version}</version>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400162 </dependency>
163 <dependency>
164 <groupId>org.apache.cxf</groupId>
165 <artifactId>cxf-rt-rs-service-description-swagger</artifactId>
Smokowski, Steve (ss835w)ffa1f2e2018-08-07 08:37:49 -0400166 <version>${cxf.version}</version>
Smokowski, Steve (ss835w)1db2da22018-08-08 16:03:53 -0400167 </dependency>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400168 <dependency>
169 <groupId>com.h2database</groupId>
170 <artifactId>h2</artifactId>
171 <scope>test</scope>
172 </dependency>
173 <dependency>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400174 <groupId>org.mockito</groupId>
175 <artifactId>mockito-core</artifactId>
176 <version>1.10.19</version>
177 <scope>test</scope>
178 </dependency>
179 <dependency>
180 <groupId>com.fasterxml.uuid</groupId>
181 <artifactId>java-uuid-generator</artifactId>
182 </dependency>
183 <dependency>
184 <groupId>org.codehaus.groovy</groupId>
185 <artifactId>groovy-all</artifactId>
186 </dependency>
187 <dependency>
188 <groupId>org.apache.commons</groupId>
189 <artifactId>commons-lang3</artifactId>
190 <version>3.4</version>
191 </dependency>
192 <dependency>
193 <groupId>org.onap.so</groupId>
194 <artifactId>MSOCoreBPMN</artifactId>
195 <version>${project.version}</version>
196 </dependency>
197 <dependency>
198 <groupId>org.onap.so</groupId>
199 <artifactId>MSOCommonBPMN</artifactId>
200 <version>${project.version}</version>
201 </dependency>
202 <dependency>
203 <groupId>org.onap.so</groupId>
204 <artifactId>MSOCoreBPMN</artifactId>
205 <version>${project.version}</version>
206 <classifier>tests</classifier>
207 <scope>test</scope>
208 </dependency>
209 <dependency>
210 <groupId>javax.ws.rs</groupId>
211 <artifactId>javax.ws.rs-api</artifactId>
Benjamin, Max (mb388a)e4f7e562018-08-11 00:17:59 -0400212 <version>${jax.ws.rs}</version>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400213 </dependency>
214 <dependency>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400215 <groupId>org.camunda.spin</groupId>
216 <artifactId>camunda-spin-core</artifactId>
217 <scope>test</scope>
218 </dependency>
219 <dependency>
220 <groupId>org.camunda.spin</groupId>
221 <artifactId>camunda-spin-dataformat-all</artifactId>
222 <scope>test</scope>
223 </dependency>
224 <dependency>
225 <artifactId>camunda-spin-dataformat-all</artifactId>
226 <groupId>org.camunda.spin</groupId>
227 <scope>test</scope>
228 </dependency>
229 <dependency>
230 <groupId>org.camunda.bpm</groupId>
231 <artifactId>camunda-engine-plugin-spin</artifactId>
232 </dependency>
233
234 <dependency>
235 <groupId>org.camunda.bpm</groupId>
236 <artifactId>camunda-engine-plugin-connect</artifactId>
237 <scope>test</scope>
238 </dependency>
239 <dependency>
240 <groupId>javax.annotation</groupId>
241 <artifactId>javax.annotation-api</artifactId>
242 <version>1.3</version>
243 </dependency>
Smokowski, Steve (ss835w)1db2da22018-08-08 16:03:53 -0400244 <dependency>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400245 <groupId>org.springframework.boot</groupId>
246 <artifactId>spring-boot-configuration-processor</artifactId>
247 <optional>true</optional>
248 </dependency>
249 <dependency>
250 <groupId>ch.qos.logback</groupId>
251 <artifactId>logback-classic</artifactId>
252 </dependency>
253 <dependency>
254 <groupId>ch.qos.logback</groupId>
255 <artifactId>logback-core</artifactId>
256 </dependency>
257 <dependency>
258 <groupId>org.slf4j</groupId>
259 <artifactId>slf4j-api</artifactId>
Smokowski, Steve (ss835w)1db2da22018-08-08 16:03:53 -0400260 </dependency>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400261 <dependency>
262 <groupId>org.mariadb.jdbc</groupId>
263 <artifactId>mariadb-java-client</artifactId>
264 </dependency>
265 <dependency>
Smokowski, Steve (ss835w)1db2da22018-08-08 16:03:53 -0400266 <groupId>ch.vorburger.mariaDB4j</groupId>
267 <artifactId>mariaDB4j</artifactId>
268 <version>2.2.3</version>
269 <scope>test</scope>
270 </dependency>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400271 </dependencies>
272</project>