blob: 70b9d0633b8bc496087d4c3568307007068c50f5 [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"
2 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.3.0-SNAPSHOT</version>
7 </parent>
8 <modelVersion>4.0.0</modelVersion>
9 <artifactId>so-bpmn-infrastructure-common</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>
Smokowski, Steve (ss835w)be2ccf02018-08-09 14:24:13 -040023 <artifactId>maven-eclipse-plugin</artifactId>
24 <version>2.8</version>
25 <configuration>
26 <additionalProjectnatures>
27 <projectnature>org.eclipse.jdt.groovy.core.groovyNature</projectnature>
28 </additionalProjectnatures>
29 <sourceIncludes>
30 <sourceInclude>**/*.groovy</sourceInclude>
31 </sourceIncludes>
32 </configuration>
33 </plugin>
34 <plugin>
35 <groupId>org.codehaus.gmaven</groupId>
36 <artifactId>gmaven-plugin</artifactId>
37 <version>1.5</version>
38 <dependencies>
39 <dependency>
40 <groupId>org.codehaus.gmaven.runtime</groupId>
41 <artifactId>gmaven-runtime-2.0</artifactId>
42 <version>1.5</version>
43 </dependency>
44 <dependency>
45 <groupId>org.codehaus.groovy</groupId>
46 <artifactId>groovy</artifactId>
47 <version>${groovy.version}</version>
48 </dependency>
49 </dependencies>
50 <configuration>
51 <debug>false</debug>
52 <verbose>true</verbose>
53 <stacktrace>true</stacktrace>
54 <defaultScriptExtension>.groovy</defaultScriptExtension>
55 <providerSelection>2.0</providerSelection>
56 </configuration>
57 <executions>
58 <execution>
59 <goals>
60 <goal>testCompile</goal>
61 <goal>compile</goal>
62 </goals>
63 </execution>
64 </executions>
65 </plugin>
66 <plugin>
67 <groupId>org.apache.maven.plugins</groupId>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -040068 <artifactId>maven-dependency-plugin</artifactId>
69 </plugin>
70 <plugin>
71 <artifactId>maven-failsafe-plugin</artifactId>
72 <version>2.6</version>
73 <executions>
74 <execution>
75 <goals>
76 <goal>integration-test</goal>
77 <goal>verify</goal>
78 </goals>
79 </execution>
80 </executions>
81 </plugin>
82 </plugins>
83 <pluginManagement>
84 <plugins>
85 <!--This plugin's configuration is used to store Eclipse m2e settings
86 only. It has no influence on the Maven build itself. -->
87 <plugin>
88 <groupId>org.eclipse.m2e</groupId>
89 <artifactId>lifecycle-mapping</artifactId>
90 <version>1.0.0</version>
91 <configuration>
92 <lifecycleMappingMetadata>
93 <pluginExecutions>
94 <pluginExecution>
95 <pluginExecutionFilter>
96 <groupId>
97 org.apache.maven.plugins
98 </groupId>
99 <artifactId>
100 maven-antrun-plugin
101 </artifactId>
102 <versionRange>
103 [1.3,)
104 </versionRange>
105 <goals>
106 <goal>run</goal>
107 </goals>
108 </pluginExecutionFilter>
109 <action>
110 <ignore></ignore>
111 </action>
112 </pluginExecution>
113 </pluginExecutions>
114 </lifecycleMappingMetadata>
115 </configuration>
116 </plugin>
117 <plugin>
118 <groupId>org.apache.maven.plugins</groupId>
119 <artifactId>maven-surefire-plugin</artifactId>
120 <executions>
121 <execution>
122 <id>default-test</id>
123 <goals>
124 <goal>test</goal>
125 </goals>
126 <configuration>
127 <includes>
128 <include>**/AllTestsTestSuite.java</include>
129 </includes>
130 </configuration>
131 </execution>
132 <execution>
133 <id>tasks-test</id>
134 <goals>
135 <goal>test</goal>
136 </goals>
137 <configuration>
138 <includes>
139 <include>**/AllTasksTestsTestSuite.java</include>
140 </includes>
141 </configuration>
142 </execution>
143 </executions>
144 </plugin>
145 </plugins>
146 </pluginManagement>
147 <finalName>${project.artifactId}-${project.version}</finalName>
148 </build>
149
150 <dependencyManagement>
151 <dependencies>
152 <dependency>
153 <groupId>org.camunda.bpm</groupId>
154 <artifactId>camunda-bom</artifactId>
155 <version>${camunda.version}</version>
156 <scope>import</scope>
157 <type>pom</type>
158 </dependency>
159 </dependencies>
160 </dependencyManagement>
161
162 <dependencies>
163 <dependency>
164 <groupId>org.camunda.bpm.springboot</groupId>
165 <artifactId>camunda-bpm-spring-boot-starter</artifactId>
166 <version>2.3.0</version>
167 <scope>test</scope>
168 </dependency>
169 <dependency>
170 <groupId>org.springframework.boot</groupId>
171 <artifactId>spring-boot-starter-web</artifactId>
172 <scope>test</scope>
173 </dependency>
174 <dependency>
175 <groupId>org.springframework.boot</groupId>
176 <artifactId>spring-boot-starter-data-jpa</artifactId>
177 <optional>true</optional>
178 </dependency>
179 <dependency>
180 <groupId>org.apache.cxf</groupId>
181 <artifactId>cxf-spring-boot-starter-jaxws</artifactId>
Smokowski, Steve (ss835w)ffa1f2e2018-08-07 08:37:49 -0400182 <version>${cxf.version}</version>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400183 </dependency>
184 <dependency>
185 <groupId>org.apache.cxf</groupId>
186 <artifactId>cxf-spring-boot-starter-jaxrs</artifactId>
Smokowski, Steve (ss835w)ffa1f2e2018-08-07 08:37:49 -0400187 <version>${cxf.version}</version>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400188 </dependency>
189 <dependency>
190 <groupId>org.apache.cxf</groupId>
191 <artifactId>cxf-rt-rs-service-description-swagger</artifactId>
Smokowski, Steve (ss835w)ffa1f2e2018-08-07 08:37:49 -0400192 <version>${cxf.version}</version>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400193 </dependency>
194 <dependency>
195 <groupId>com.h2database</groupId>
196 <artifactId>h2</artifactId>
197 <scope>test</scope>
198 </dependency>
199 <dependency>
200 <groupId>com.google.guava</groupId>
201 <artifactId>guava</artifactId>
202 <version>22.0</version>
203 </dependency>
204 <dependency>
205 <groupId>com.fasterxml.uuid</groupId>
206 <artifactId>java-uuid-generator</artifactId>
207 </dependency>
208 <dependency>
209 <groupId>org.codehaus.groovy</groupId>
210 <artifactId>groovy-all</artifactId>
211 </dependency>
212 <dependency>
213 <groupId>org.apache.commons</groupId>
214 <artifactId>commons-lang3</artifactId>
215 <version>3.4</version>
216 </dependency>
217 <dependency>
218 <groupId>org.onap.so</groupId>
219 <artifactId>MSOCoreBPMN</artifactId>
220 <version>${project.version}</version>
221 </dependency>
222 <dependency>
223 <groupId>org.onap.so</groupId>
224 <artifactId>MSOCommonBPMN</artifactId>
225 <version>${project.version}</version>
226 </dependency>
227 <dependency>
228 <groupId>org.onap.so</groupId>
229 <artifactId>MSOCoreBPMN</artifactId>
230 <version>${project.version}</version>
231 <classifier>tests</classifier>
232 <scope>test</scope>
233 </dependency>
234 <dependency>
235 <groupId>javax.ws.rs</groupId>
236 <artifactId>javax.ws.rs-api</artifactId>
237 <version>2.0</version>
238 </dependency>
239 <dependency>
240 <groupId>org.onap.so</groupId>
241 <artifactId>MSORESTClient</artifactId>
242 <version>${project.version}</version>
243 </dependency>
244 <dependency>
245 <groupId>org.camunda.spin</groupId>
246 <artifactId>camunda-spin-core</artifactId>
247 <scope>test</scope>
248 </dependency>
249 <dependency>
250 <groupId>org.camunda.spin</groupId>
251 <artifactId>camunda-spin-dataformat-all</artifactId>
252 <scope>test</scope>
253 </dependency>
254 <dependency>
255 <artifactId>camunda-spin-dataformat-all</artifactId>
256 <groupId>org.camunda.spin</groupId>
257 <scope>test</scope>
258 </dependency>
259 <dependency>
260 <groupId>org.camunda.bpm</groupId>
261 <artifactId>camunda-engine-plugin-spin</artifactId>
262 </dependency>
263
264 <dependency>
265 <groupId>org.camunda.bpm</groupId>
266 <artifactId>camunda-engine-plugin-connect</artifactId>
267 <scope>test</scope>
268 </dependency>
269 <dependency>
270 <groupId>javax.annotation</groupId>
271 <artifactId>javax.annotation-api</artifactId>
272 <version>1.3</version>
273 </dependency>
274 <dependency>
275 <groupId>org.onap.msb.java-sdk</groupId>
276 <artifactId>msb-java-sdk</artifactId>
277 <version>1.0.0</version>
278 <exclusions>
279 <exclusion>
280 <groupId>com.eclipsesource.jaxrs</groupId>
281 <artifactId>jersey-all</artifactId>
282 </exclusion>
283 </exclusions>
284 </dependency>
285
286 <dependency>
287 <groupId>org.springframework.boot</groupId>
288 <artifactId>spring-boot-configuration-processor</artifactId>
289 <optional>true</optional>
290 </dependency>
291 <dependency>
292 <groupId>ch.qos.logback</groupId>
293 <artifactId>logback-classic</artifactId>
294 </dependency>
295 <dependency>
296 <groupId>ch.qos.logback</groupId>
297 <artifactId>logback-core</artifactId>
298 </dependency>
299 <dependency>
300 <groupId>org.slf4j</groupId>
301 <artifactId>slf4j-api</artifactId>
302 </dependency>
303 <dependency>
304 <groupId>org.mariadb.jdbc</groupId>
305 <artifactId>mariadb-java-client</artifactId>
306 </dependency>
307 <dependency>
308 <groupId>ch.vorburger.mariaDB4j</groupId>
309 <artifactId>mariaDB4j</artifactId>
310 <version>2.2.3</version>
311 <scope>test</scope>
312 </dependency>
Smokowski, Steve (ss835w)be2ccf02018-08-09 14:24:13 -0400313 <dependency>
314 <groupId>org.onap.so</groupId>
315 <artifactId>MSOCommonBPMN</artifactId>
316 <version>${project.version}</version>
317 <classifier>tests</classifier>
318 <scope>test</scope>
319 </dependency>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400320 </dependencies>
321</project>