blob: 817d70c0da101da17612b5bdb321105d339b8b01 [file] [log] [blame]
Benjamin, Max (mb388a)13728942017-11-06 15:01:36 -05001<?xml version="1.0"?>
Boslet, Cory3db9a382020-04-02 15:17:22 -04002<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -04003 xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
4 <modelVersion>4.0.0</modelVersion>
5 <parent>
6 <groupId>org.onap.so</groupId>
7 <artifactId>bpmn</artifactId>
seshukm1c8d0202021-02-15 20:35:29 +05308 <version>1.8.0-SNAPSHOT</version>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -04009 </parent>
10 <artifactId>MSOCommonBPMN</artifactId>
11 <name>MSOCommonBPMN</name>
12 <packaging>jar</packaging>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -040013 <build>
14 <plugins>
15 <plugin>
16 <groupId>org.apache.maven.plugins</groupId>
17 <artifactId>maven-compiler-plugin</artifactId>
Boslet, Cory3db9a382020-04-02 15:17:22 -040018 <configuration>
Benjamin, Max26275322020-03-16 10:09:29 -040019 <compilerId>groovy-eclipse-compiler</compilerId>
20 </configuration>
Benjamin, Max26275322020-03-16 10:09:29 -040021 <dependencies>
22 <dependency>
23 <groupId>org.codehaus.groovy</groupId>
24 <artifactId>groovy-eclipse-compiler</artifactId>
25 <version>3.6.0-03</version>
26 </dependency>
27 <dependency>
28 <groupId>org.codehaus.groovy</groupId>
29 <artifactId>groovy-eclipse-batch</artifactId>
Benjamin, Max9868f172020-05-18 16:37:51 -040030 <version>2.5.8-03</version>
Benjamin, Max26275322020-03-16 10:09:29 -040031 </dependency>
32 </dependencies>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -040033 </plugin>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -040034 <plugin>
35 <groupId>org.apache.maven.plugins</groupId>
36 <artifactId>maven-jar-plugin</artifactId>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -040037 <executions>
38 <execution>
39 <goals>
40 <goal>test-jar</goal>
41 </goals>
42 <configuration>
43 <skip>false</skip>
44 <excludes>
45 <exclude>**/validation/*</exclude>
46 </excludes>
47 </configuration>
48 </execution>
49 </executions>
50 </plugin>
51 <plugin>
52 <groupId>org.apache.cxf</groupId>
53 <artifactId>cxf-codegen-plugin</artifactId>
54 <version>2.5.2</version>
55 </plugin>
56 <plugin>
57 <groupId>org.apache.maven.plugins</groupId>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -040058 <artifactId>maven-surefire-plugin</artifactId>
59 <executions>
60 <execution>
61 <id>default-test</id>
62 <goals>
63 <goal>test</goal>
64 </goals>
65 <configuration>
66 <includes>
67 <include>**/AllTestSuites.java</include>
68 </includes>
69 </configuration>
70 </execution>
71 <execution>
72 <id>non-spring-tests</id>
73 <goals>
74 <goal>test</goal>
75 </goals>
76 <configuration>
77 <includes>
78 <include>**/NonSpringSuite.java</include>
79 </includes>
80 </configuration>
81 </execution>
82 <execution>
83 <id>groovy-tests</id>
84 <goals>
85 <goal>test</goal>
86 </goals>
87 <configuration>
88 <includes>
89 <include>**/AllGroovyTestSuites.java</include>
90 </includes>
91 </configuration>
92 </execution>
93 </executions>
94 <configuration>
95 <parallel>suites</parallel>
96 </configuration>
97 </plugin>
98 </plugins>
99 <pluginManagement>
100 <plugins>
Benjamin, Max26275322020-03-16 10:09:29 -0400101 <!--This plugin's configuration is used to store Eclipse m2e settings
102 only. It has no influence on the Maven build itself. -->
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -0400103 <plugin>
104 <groupId>org.eclipse.m2e</groupId>
105 <artifactId>lifecycle-mapping</artifactId>
106 <version>1.0.0</version>
107 <configuration>
108 <lifecycleMappingMetadata>
109 <pluginExecutions>
110 <pluginExecution>
111 <pluginExecutionFilter>
112 <groupId>
Benjamin, Max26275322020-03-16 10:09:29 -0400113 org.apache.maven.plugins
114 </groupId>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -0400115 <artifactId>
Benjamin, Max26275322020-03-16 10:09:29 -0400116 maven-antrun-plugin
117 </artifactId>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -0400118 <versionRange>
Benjamin, Max26275322020-03-16 10:09:29 -0400119 [1.3,)
120 </versionRange>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -0400121 <goals>
Benjamin, Max9868f172020-05-18 16:37:51 -0400122 <goal>execute</goal>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -0400123 </goals>
124 </pluginExecutionFilter>
125 <action>
Benjamin, Max9868f172020-05-18 16:37:51 -0400126 <execute>
127 <runOnIncremental>true</runOnIncremental>
128 </execute>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -0400129 </action>
130 </pluginExecution>
131 </pluginExecutions>
132 </lifecycleMappingMetadata>
133 </configuration>
134 </plugin>
135 </plugins>
136 </pluginManagement>
137 </build>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -0400138 <dependencies>
139 <dependency>
140 <groupId>org.camunda.bpm.springboot</groupId>
141 <artifactId>camunda-bpm-spring-boot-starter</artifactId>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -0400142 <scope>test</scope>
143 </dependency>
144 <dependency>
145 <groupId>org.springframework.cloud</groupId>
146 <artifactId>spring-cloud-contract-wiremock</artifactId>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -0400147 <scope>test</scope>
148 </dependency>
149 <dependency>
150 <groupId>org.springframework.boot</groupId>
151 <artifactId>spring-boot-starter-test</artifactId>
152 <scope>test</scope>
153 </dependency>
154 <dependency>
155 <groupId>org.camunda.bpm.extension.mockito</groupId>
156 <artifactId>camunda-bpm-mockito</artifactId>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -0400157 <scope>test</scope>
158 </dependency>
159 <dependency>
160 <groupId>org.camunda.connect</groupId>
161 <artifactId>camunda-connect-connectors-all</artifactId>
162 </dependency>
163 <dependency>
164 <groupId>commons-beanutils</groupId>
165 <artifactId>commons-beanutils</artifactId>
waqas.ikramabfaee82021-06-16 16:54:04 +0100166 </dependency>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -0400167 <dependency>
168 <!-- Needed for InMemoryH2Test -->
169 <groupId>com.h2database</groupId>
170 <artifactId>h2</artifactId>
171 <scope>test</scope>
172 </dependency>
173 <dependency>
174 <groupId>org.codehaus.groovy</groupId>
Benjamin, Max9868f172020-05-18 16:37:51 -0400175 <artifactId>groovy-xml</artifactId>
176 </dependency>
177 <dependency>
178 <groupId>org.codehaus.groovy</groupId>
179 <artifactId>groovy-json</artifactId>
180 </dependency>
181 <dependency>
182 <groupId>org.codehaus.groovy</groupId>
183 <artifactId>groovy-jsr223</artifactId>
184 </dependency>
185 <dependency>
186 <groupId>org.codehaus.groovy</groupId>
187 <artifactId>groovy-test</artifactId>
188 <scope>test</scope>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -0400189 </dependency>
190 <dependency>
191 <groupId>org.onap.so</groupId>
192 <artifactId>MSOCoreBPMN</artifactId>
193 <version>${project.version}</version>
194 </dependency>
195 <dependency>
196 <groupId>org.onap.so</groupId>
197 <artifactId>mso-catalog-db</artifactId>
198 <version>${project.version}</version>
199 </dependency>
200 <dependency>
201 <groupId>org.onap.so</groupId>
202 <artifactId>mso-requests-db</artifactId>
203 <version>${project.version}</version>
204 </dependency>
205 <dependency>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -0400206 <groupId>org.onap.so.adapters</groupId>
207 <artifactId>mso-adapters-rest-interface</artifactId>
208 <version>${project.version}</version>
209 </dependency>
210 <dependency>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -0400211 <groupId>commons-lang</groupId>
212 <artifactId>commons-lang</artifactId>
213 <version>2.6</version>
214 </dependency>
215 <dependency>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -0400216 <groupId>org.onap.appc.client</groupId>
217 <artifactId>client-lib</artifactId>
eeginux8ef2ec82019-05-23 10:51:36 +0100218 <version>${appc.client.version}</version>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -0400219 <exclusions>
220 <exclusion>
221 <groupId>org.mockito</groupId>
222 <artifactId>mockito-core</artifactId>
223 </exclusion>
224 <exclusion>
225 <groupId>org.powermock</groupId>
226 <artifactId>powermock-module-junit4</artifactId>
227 </exclusion>
228 <exclusion>
229 <groupId>org.powermock</groupId>
230 <artifactId>powermock-api-mockito</artifactId>
231 </exclusion>
232 </exclusions>
233 </dependency>
234 <dependency>
235 <groupId>org.onap.appc.client</groupId>
236 <artifactId>client-kit</artifactId>
eeginux8ef2ec82019-05-23 10:51:36 +0100237 <version>${appc.client.version}</version>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -0400238 <exclusions>
239 <exclusion>
240 <groupId>org.mockito</groupId>
241 <artifactId>mockito-core</artifactId>
242 </exclusion>
243 </exclusions>
244 </dependency>
245 <dependency>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -0400246 <groupId>org.glassfish.jersey.core</groupId>
247 <artifactId>jersey-client</artifactId>
248 </dependency>
249 <dependency>
250 <groupId>org.glassfish.jersey.inject</groupId>
251 <artifactId>jersey-hk2</artifactId>
252 <version>2.26</version>
253 </dependency>
254 <dependency>
255 <groupId>org.glassfish.jersey.media</groupId>
256 <artifactId>jersey-media-json-jackson</artifactId>
257 </dependency>
258 <dependency>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -0400259 <groupId>org.springframework.boot</groupId>
260 <artifactId>spring-boot-starter-test</artifactId>
261 <scope>test</scope>
262 </dependency>
263 <dependency>
264 <groupId>uk.co.blackpepper.bowman</groupId>
265 <artifactId>bowman-client</artifactId>
Benjamin, Max9868f172020-05-18 16:37:51 -0400266 <version>${bowman.client.version}</version>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -0400267 </dependency>
268 <dependency>
269 <groupId>pl.pragmatists</groupId>
270 <artifactId>JUnitParams</artifactId>
BOSLET, CORY8aca4512021-03-09 22:57:29 -0500271 <scope>test</scope>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -0400272 </dependency>
273 <dependency>
274 <groupId>ch.vorburger.mariaDB4j</groupId>
275 <artifactId>mariaDB4j</artifactId>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -0400276 <scope>test</scope>
277 </dependency>
278 <dependency>
279 <groupId>org.assertj</groupId>
280 <artifactId>assertj-core</artifactId>
281 <version>3.11.1</version>
282 <scope>test</scope>
283 </dependency>
284 </dependencies>
Benjamin, Max (mb388a)13728942017-11-06 15:01:36 -0500285</project>