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