d60f462ec0a03813d59818385ee164c28567c704
[vfc/nfvo/wfengine.git] / wso2bpel-ext / wso2bpel-core / wso2bpel-mgr / pom.xml
1 <?xml version="1.0"?>
2 <!--
3
4     Copyright 2016 ZTE Corporation.
5
6     Licensed under the Apache License, Version 2.0 (the "License");
7     you may not use this file except in compliance with the License.
8     You may obtain a copy of the License at
9
10         http://www.apache.org/licenses/LICENSE-2.0
11
12     Unless required by applicable law or agreed to in writing, software
13     distributed under the License is distributed on an "AS IS" BASIS,
14     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15     See the License for the specific language governing permissions and
16     limitations under the License.
17
18 -->
19 <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">
20
21     <parent>
22         <groupId>org.openo.common-services.common-utilities.wso2bpel-ext</groupId>
23         <artifactId>wso2bpel-core-parent</artifactId>
24         <version>1.1.0-SNAPSHOT</version>
25     </parent>
26
27     <modelVersion>4.0.0</modelVersion>
28     <artifactId>wso2bpel-mgr</artifactId>
29     <name>common-services-common-utilities/wso2bpel-ext/wso2bpel-core/wso2bpel-mgr</name>
30     <packaging>jar</packaging>
31         
32   <repositories>
33     <repository>
34         <id>wso2-nexus</id>
35         <url>http://dist.wso2.org/maven2</url>
36         <releases>
37       <enabled>true</enabled>
38         </releases>
39         <snapshots>
40       <enabled>false</enabled>
41         </snapshots>
42     </repository>
43   </repositories>
44   
45     <build>
46         <plugins>
47             <plugin>
48                 <groupId>org.apache.maven.plugins</groupId>
49                 <artifactId>maven-compiler-plugin</artifactId>
50                 <version>3.1</version>
51                 <configuration>
52                     <source>1.7</source>
53                     <target>1.7</target>
54                     <encoding>UTF-8</encoding>
55                     <compilerArgs> 
56                         <arg>-verbose</arg>
57                         <arg>-Xlint:unchecked</arg>
58                         <arg>-Xlint:deprecation</arg>
59                         <arg>-bootclasspath</arg>
60                         <arg>${env.JAVA_HOME}/jre/lib/rt.jar</arg>
61                     </compilerArgs> 
62                 </configuration>
63             </plugin>
64             <plugin>
65                 <groupId>org.eclipse.m2e</groupId>
66                 <artifactId>lifecycle-mapping</artifactId>
67                 <configuration>
68                     <lifecycleMappingMetadata>
69                         <pluginExecutions>
70                             <pluginExecution>
71                                 <pluginExecutionFilter>
72                                     <groupId>org.apache.maven.plugins</groupId>
73                                     <artifactId>maven-dependency-plugin</artifactId>
74                                     <versionRange>[2.0,)</versionRange>
75                                     <goals>
76                                         <goal>copy-dependencies</goal>
77                                     </goals>
78                                 </pluginExecutionFilter>
79                                 <action>
80                                     <ignore/>
81                                 </action>
82                             </pluginExecution>
83                         </pluginExecutions>
84                     </lifecycleMappingMetadata>
85                 </configuration>
86             </plugin>
87             <plugin>
88                 <groupId>org.apache.maven.plugins</groupId>
89                 <artifactId>maven-jar-plugin</artifactId>
90                 <configuration>
91                     <archive>
92                         <manifest>
93                             <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
94                         </manifest>
95                     </archive>
96                 </configuration>
97             </plugin>
98             <plugin>
99                 <groupId>org.apache.maven.plugins</groupId>
100                 <artifactId>maven-shade-plugin</artifactId>
101                 <configuration>
102                     <createDependencyReducedPom>true</createDependencyReducedPom>
103                     <filters>
104                         <filter>
105                             <artifact>*:*</artifact>
106                             <excludes>
107                                 <exclude>META-INF/*.SF</exclude>
108                                 <exclude>META-INF/*.DSA</exclude>
109                                 <exclude>META-INF/*.RSA</exclude>
110                             </excludes>
111                         </filter>
112                     </filters>
113                 </configuration>
114                 <executions>
115                     <execution>
116                         <phase>package</phase>
117                         <goals>
118                             <goal>shade</goal>
119                         </goals>
120                         <configuration>
121                             <transformers>
122                                 <transformer implementation="org.apache.maven.plugins.shade.resource.ServicesResourceTransformer"/>
123                                 <transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
124                                     <mainClass>org.openo.carbon.bpel.Wso2BpelApplication</mainClass>
125                                 </transformer>
126                             </transformers>
127                         </configuration>
128                     </execution>
129                 </executions>
130             </plugin>
131             <plugin>
132                 <groupId>org.apache.maven.plugins</groupId>
133                 <artifactId>maven-dependency-plugin</artifactId>
134                 <executions>
135                     <execution>
136                         <id>copy-dependencies</id>
137                         <phase>package</phase>
138                         <goals>
139                             <goal>copy-dependencies</goal>
140                         </goals>
141                         <configuration>
142                             <artifactItems>
143                                 <artifactItem>
144                                     <groupId>io.dropwizard</groupId>
145                                     <artifactId>dropwizard-core</artifactId>
146                                     <version>${dropwizard.version}</version>
147                                     <overWrite>true</overWrite>
148                                 </artifactItem>
149                             </artifactItems>
150                         </configuration>
151                     </execution>
152                 </executions>
153             </plugin>
154         </plugins>
155     </build>
156
157     <dependencies>
158         <dependency>
159             <groupId>io.dropwizard</groupId>
160             <artifactId>dropwizard-core</artifactId>
161         </dependency>
162         <dependency>
163             <groupId>io.dropwizard</groupId>
164             <artifactId>dropwizard-assets</artifactId>
165         </dependency>
166         <dependency>
167             <groupId>io.dropwizard</groupId>
168             <artifactId>dropwizard-hibernate</artifactId>
169         </dependency>
170         <!-- lombok -->
171         <dependency>
172             <groupId>org.projectlombok</groupId>
173             <artifactId>lombok</artifactId>            
174         </dependency>
175         <dependency>
176             <groupId>io.swagger</groupId>
177             <artifactId>swagger-jersey2-jaxrs</artifactId>
178         </dependency>
179         <!-- jersey -->
180         <dependency>
181             <groupId>org.glassfish.jersey.core</groupId>
182             <artifactId>jersey-server</artifactId>
183         </dependency>
184         <dependency>
185             <groupId>org.glassfish.jersey.media</groupId>
186             <artifactId>jersey-media-multipart</artifactId>
187         </dependency>
188         <dependency>
189             <groupId>org.glassfish.jersey.containers</groupId>
190             <artifactId>jersey-container-servlet-core</artifactId>
191         </dependency>
192         <!-- consumer -->
193         <dependency>
194             <groupId>com.eclipsesource.jaxrs</groupId>
195             <artifactId>consumer</artifactId>
196             <exclusions>
197                 <exclusion>
198                     <groupId>com.eclipsesource.jaxrs</groupId>
199                     <artifactId>jersey-all</artifactId>
200                 </exclusion>
201             </exclusions>
202         </dependency>
203         <!-- gson -->
204         <dependency>
205             <groupId>com.google.code.gson</groupId>
206             <artifactId>gson</artifactId>
207         </dependency>
208         <!-- UT -->
209         <dependency>
210             <groupId>junit</groupId>
211             <artifactId>junit</artifactId>
212             <scope>test</scope>
213         </dependency>
214         <dependency>
215             <groupId>org.powermock</groupId>
216             <artifactId>powermock-module-junit4</artifactId>
217             <scope>test</scope>
218         </dependency>
219         <dependency>
220             <groupId>org.powermock</groupId>
221             <artifactId>powermock-api-mockito</artifactId>
222             <scope>test</scope>
223         </dependency>
224         <dependency>
225             <groupId>org.apache.ant</groupId>
226             <artifactId>ant</artifactId>
227             <scope>test</scope>
228         </dependency>
229         <!-- UT end -->
230                 
231                 
232 <dependency>
233     <groupId>org.apache.ws.commons.axiom.wso2</groupId>
234     <artifactId>axiom</artifactId>
235     <version>1.2.11.wso2v4</version>
236 </dependency>
237 <dependency>
238         <groupId>axion.wso2</groupId>
239         <artifactId>axion</artifactId>
240         <version>1.0.0.M3-dev-wso2v1</version>
241 </dependency>
242 <dependency>
243         <groupId>org.apache.axis2.wso2</groupId>
244         <artifactId>axis2</artifactId>
245         <version>1.6.1.wso2v10</version>
246 </dependency>
247 <dependency>
248     <groupId>org.apache.axis2.wso2</groupId>
249     <artifactId>axis2-jaxbri</artifactId>
250     <version>1.6.1.wso2v10</version>
251 </dependency>
252 <dependency>
253     <groupId>org.apache.axis2.wso2</groupId>
254     <artifactId>axis2-json</artifactId>
255     <version>1.6.1.wso2v10</version>
256 </dependency>
257 <dependency>
258     <groupId>org.apache.axis2</groupId>
259     <artifactId>axis2-transport-jms</artifactId>
260     <version>1.0.0</version>
261 </dependency>
262 <dependency>
263     <groupId>org.apache.axis2</groupId>
264     <artifactId>axis2-transport-mail</artifactId>
265     <version>1.0.0</version>
266 </dependency>
267 <dependency>
268     <groupId>org.apache.axis2</groupId>
269     <artifactId>axis2-transport-sms</artifactId>
270     <version>1.0.0</version>
271 </dependency>
272 <dependency>
273     <groupId>commons-beanutils</groupId>
274     <artifactId>commons-beanutils</artifactId>
275     <version>1.9.2</version>
276 </dependency>
277 <dependency>
278     <groupId>commons-codec.wso2</groupId>
279     <artifactId>commons-codec</artifactId>
280     <version>1.4.0.wso2v1</version>
281 </dependency>
282 <dependency>
283     <groupId>commons-collections</groupId>
284     <artifactId>commons-collections</artifactId>
285     <version>3.2.1</version>
286 </dependency>
287 <dependency>
288     <groupId>commons-fileupload.wso2</groupId>
289     <artifactId>commons-fileupload</artifactId>
290     <version>1.2.2.wso2v1</version>
291 </dependency>
292 <dependency>
293     <groupId>commons-httpclient.wso2</groupId>
294     <artifactId>commons-httpclient</artifactId>
295     <version>3.1.0.wso2v2</version>
296 </dependency>
297 <dependency>
298     <groupId>commons-io.wso2</groupId>
299     <artifactId>commons-io</artifactId>
300     <version>2.0.0.wso2v2</version>
301 </dependency>
302 <dependency>
303     <groupId>commons-lang</groupId>
304     <artifactId>commons-lang</artifactId>
305     <version>2.5</version>
306 </dependency>
307 <dependency>
308     <groupId>org.apache.commons</groupId>
309     <artifactId>commons-lang3</artifactId>
310     <version>3.2</version>
311 </dependency>
312 <dependency>
313     <groupId>commons-logging</groupId>
314     <artifactId>commons-logging</artifactId>
315     <version>1.0.4</version>
316 </dependency>
317 <dependency>
318     <groupId>net.sf.ezmorph</groupId>
319     <artifactId>ezmorph</artifactId>
320     <version>1.0.6</version>
321 </dependency>
322 <dependency>
323     <groupId>org.apache.httpcomponents.wso2</groupId>
324     <artifactId>httpclient</artifactId>
325     <version>4.2.5.wso2v1</version>
326 </dependency>
327 <dependency>
328     <groupId>org.apache.httpcomponents.wso2</groupId>
329     <artifactId>httpcore</artifactId>
330     <version>4.3.0.wso2v1</version>
331 </dependency>
332 <dependency>
333     <groupId>org.apache.httpcomponents</groupId>
334     <artifactId>httpmime</artifactId>
335     <version>4.3.1</version>
336 </dependency>
337 <dependency>
338     <groupId>com.fasterxml.jackson.core</groupId>
339     <artifactId>jackson-annotations</artifactId>
340     <version>2.5.0</version>
341 </dependency>
342 <dependency>
343     <groupId>javassist</groupId>
344     <artifactId>javassist</artifactId>
345     <version>3.3.GA</version>
346 </dependency>
347 <dependency>
348     <groupId>javax.annotation</groupId>
349     <artifactId>javax.annotation-api</artifactId>
350     <version>1.2</version>
351 </dependency>
352 <dependency>
353     <groupId>javax.ws.rs</groupId>
354     <artifactId>javax.ws.rs-api</artifactId>
355     <version>2.0.1</version>
356 </dependency>
357 <dependency>
358     <groupId>jdom</groupId>
359     <artifactId>jdom</artifactId>
360     <version>0.7</version>
361 </dependency>
362 <dependency>
363     <groupId>org.glassfish.jersey.media</groupId>
364     <artifactId>jersey-media-jaxb</artifactId>
365     <version>2.25</version>
366 </dependency>
367 <dependency>
368     <groupId>org.glassfish.jersey.media</groupId>
369     <artifactId>jersey-media-multipart</artifactId>
370     <version>2.22.2</version>
371 </dependency>
372 <dependency>
373     <groupId>net.sf.json-lib</groupId>
374     <artifactId>json-lib</artifactId>
375     <version>2.4</version>
376         <classifier>jdk15</classifier>
377 </dependency>
378 <dependency>
379     <groupId>log4j</groupId>
380     <artifactId>log4j</artifactId>
381     <version>1.2.16</version>
382 </dependency>
383 <dependency>
384     <groupId>com.jgoodies</groupId>
385     <artifactId>looks</artifactId>
386     <version>2.2.1</version>
387 </dependency>
388 <dependency>
389     <groupId>org.jvnet.mimepull</groupId>
390     <artifactId>mimepull</artifactId>
391     <version>1.9.3</version>
392 </dependency>
393 <dependency>
394     <groupId>org.apache.neethi.wso2</groupId>
395     <artifactId>neethi</artifactId>
396     <version>2.0.4.wso2v4</version>
397 </dependency>
398 <dependency>
399     <groupId>org.wso2.carbon</groupId>
400     <artifactId>org.wso2.carbon.bpel.stub</artifactId>
401     <version>4.2.1</version>
402 </dependency>
403 <dependency>
404     <groupId>org.wso2.securevault</groupId>
405     <artifactId>org.wso2.securevault</artifactId>
406     <version>1.0.0-wso2v2</version>
407 </dependency>
408 <dependency>
409     <groupId>wsdl4j.wso2</groupId>
410     <artifactId>wsdl4j</artifactId>
411     <version>1.6.2.wso2v4</version>
412 </dependency>
413 <dependency>
414     <groupId>org.apache.xmlbeans</groupId>
415     <artifactId>xmlbeans</artifactId>
416     <version>2.4.0</version>
417 </dependency>
418 <dependency>
419     <groupId>org.apache.ws.commons.schema.wso2</groupId>
420     <artifactId>XmlSchema</artifactId>
421     <version>1.4.7.wso2v2</version>
422 </dependency>
423
424         <dependency>
425             <groupId>com.eviware.soapui</groupId>
426             <artifactId>soapui</artifactId>
427             <version>1.7.1</version>
428             <type>jar</type>
429             <scope>system</scope>
430             <systemPath>${project.basedir}/lib/soapui-1.7.1.jar</systemPath>
431         </dependency>
432         <dependency>
433             <groupId>com.eviware.soapui</groupId>
434             <artifactId>soapui-xmlbeans</artifactId>
435             <version>1.7</version>
436             <type>jar</type>
437             <scope>system</scope>
438             <systemPath>${project.basedir}/lib/soapui-xmlbeans-1.7.jar</systemPath>
439         </dependency>
440
441     </dependencies>
442 </project>