blob: cef811b71d43ae3bab51c2386e8e91aa93ccf45c [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>
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>
65 <ignore></ignore>
66 </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>
76 <execution>
77 <id>default-test</id>
78 <goals>
79 <goal>test</goal>
80 </goals>
81 <configuration>
82 <includes>
83 <include>**/AllTestsTestSuite.java</include>
84 </includes>
85 </configuration>
86 </execution>
87 <execution>
88 <id>tasks-test</id>
89 <goals>
90 <goal>test</goal>
91 </goals>
92 <configuration>
93 <includes>
94 <include>**/AllTasksTestsTestSuite.java</include>
95 </includes>
96 </configuration>
97 </execution>
98 </executions>
99 </plugin>
100 </plugins>
101 </pluginManagement>
102 <finalName>${project.artifactId}-${project.version}</finalName>
103 </build>
104
105 <dependencyManagement>
106 <dependencies>
107 <dependency>
108 <groupId>org.camunda.bpm</groupId>
109 <artifactId>camunda-bom</artifactId>
110 <version>${camunda.version}</version>
111 <scope>import</scope>
112 <type>pom</type>
113 </dependency>
114 </dependencies>
115 </dependencyManagement>
116
117 <dependencies>
118 <dependency>
119 <groupId>org.camunda.bpm.springboot</groupId>
120 <artifactId>camunda-bpm-spring-boot-starter</artifactId>
121 <version>2.3.0</version>
122 <scope>test</scope>
123 </dependency>
124 <dependency>
125 <groupId>org.springframework.boot</groupId>
126 <artifactId>spring-boot-starter-web</artifactId>
127 <scope>test</scope>
128 </dependency>
129 <dependency>
130 <groupId>org.springframework.boot</groupId>
131 <artifactId>spring-boot-starter-data-jpa</artifactId>
132 <optional>true</optional>
133 </dependency>
134 <dependency>
135 <groupId>org.apache.cxf</groupId>
136 <artifactId>cxf-spring-boot-starter-jaxws</artifactId>
Smokowski, Steve (ss835w)ffa1f2e2018-08-07 08:37:49 -0400137 <version>${cxf.version}</version>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400138 </dependency>
139 <dependency>
140 <groupId>org.apache.cxf</groupId>
141 <artifactId>cxf-spring-boot-starter-jaxrs</artifactId>
Smokowski, Steve (ss835w)ffa1f2e2018-08-07 08:37:49 -0400142 <version>${cxf.version}</version>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400143 </dependency>
144 <dependency>
145 <groupId>org.apache.cxf</groupId>
146 <artifactId>cxf-rt-rs-service-description-swagger</artifactId>
Smokowski, Steve (ss835w)ffa1f2e2018-08-07 08:37:49 -0400147 <version>${cxf.version}</version>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400148 </dependency>
149 <dependency>
150 <groupId>com.h2database</groupId>
151 <artifactId>h2</artifactId>
152 <scope>test</scope>
153 </dependency>
154 <dependency>
155 <groupId>com.google.guava</groupId>
156 <artifactId>guava</artifactId>
157 <version>22.0</version>
158 </dependency>
159 <dependency>
160 <groupId>com.fasterxml.uuid</groupId>
161 <artifactId>java-uuid-generator</artifactId>
162 </dependency>
163 <dependency>
164 <groupId>org.codehaus.groovy</groupId>
165 <artifactId>groovy-all</artifactId>
166 </dependency>
167 <dependency>
168 <groupId>org.apache.commons</groupId>
169 <artifactId>commons-lang3</artifactId>
170 <version>3.4</version>
171 </dependency>
172 <dependency>
173 <groupId>org.onap.so</groupId>
174 <artifactId>MSOCoreBPMN</artifactId>
175 <version>${project.version}</version>
176 </dependency>
177 <dependency>
178 <groupId>org.onap.so</groupId>
179 <artifactId>MSOCommonBPMN</artifactId>
180 <version>${project.version}</version>
181 </dependency>
182 <dependency>
183 <groupId>org.onap.so</groupId>
184 <artifactId>MSOCoreBPMN</artifactId>
185 <version>${project.version}</version>
186 <classifier>tests</classifier>
187 <scope>test</scope>
188 </dependency>
189 <dependency>
190 <groupId>javax.ws.rs</groupId>
191 <artifactId>javax.ws.rs-api</artifactId>
192 <version>2.0</version>
193 </dependency>
194 <dependency>
195 <groupId>org.onap.so</groupId>
196 <artifactId>MSORESTClient</artifactId>
197 <version>${project.version}</version>
198 </dependency>
199 <dependency>
200 <groupId>org.camunda.spin</groupId>
201 <artifactId>camunda-spin-core</artifactId>
202 <scope>test</scope>
203 </dependency>
204 <dependency>
205 <groupId>org.camunda.spin</groupId>
206 <artifactId>camunda-spin-dataformat-all</artifactId>
207 <scope>test</scope>
208 </dependency>
209 <dependency>
210 <artifactId>camunda-spin-dataformat-all</artifactId>
211 <groupId>org.camunda.spin</groupId>
212 <scope>test</scope>
213 </dependency>
214 <dependency>
215 <groupId>org.camunda.bpm</groupId>
216 <artifactId>camunda-engine-plugin-spin</artifactId>
217 </dependency>
218
219 <dependency>
220 <groupId>org.camunda.bpm</groupId>
221 <artifactId>camunda-engine-plugin-connect</artifactId>
222 <scope>test</scope>
223 </dependency>
224 <dependency>
225 <groupId>javax.annotation</groupId>
226 <artifactId>javax.annotation-api</artifactId>
227 <version>1.3</version>
228 </dependency>
229 <dependency>
230 <groupId>org.onap.msb.java-sdk</groupId>
231 <artifactId>msb-java-sdk</artifactId>
232 <version>1.0.0</version>
233 <exclusions>
234 <exclusion>
235 <groupId>com.eclipsesource.jaxrs</groupId>
236 <artifactId>jersey-all</artifactId>
237 </exclusion>
238 </exclusions>
239 </dependency>
240
241 <dependency>
242 <groupId>org.springframework.boot</groupId>
243 <artifactId>spring-boot-configuration-processor</artifactId>
244 <optional>true</optional>
245 </dependency>
246 <dependency>
247 <groupId>ch.qos.logback</groupId>
248 <artifactId>logback-classic</artifactId>
249 </dependency>
250 <dependency>
251 <groupId>ch.qos.logback</groupId>
252 <artifactId>logback-core</artifactId>
253 </dependency>
254 <dependency>
255 <groupId>org.slf4j</groupId>
256 <artifactId>slf4j-api</artifactId>
257 </dependency>
258 <dependency>
259 <groupId>org.mariadb.jdbc</groupId>
260 <artifactId>mariadb-java-client</artifactId>
261 </dependency>
262 <dependency>
263 <groupId>ch.vorburger.mariaDB4j</groupId>
264 <artifactId>mariaDB4j</artifactId>
265 <version>2.2.3</version>
266 <scope>test</scope>
267 </dependency>
268 </dependencies>
269</project>