34f7a2331d6315385ca0115a5f0a1724aacf9f6f
[so.git] / bpmn / MSOMockServer / pom.xml
1 <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.openecomp.so</groupId>
5         <artifactId>bpmn</artifactId>
6                 <version>1.1.0-SNAPSHOT</version>
7         </parent>
8         <modelVersion>4.0.0</modelVersion>
9         <groupId>org.openecomp.so</groupId>
10         <artifactId>MSOMockServer</artifactId>
11         <packaging>war</packaging>
12
13         <build>
14                 <plugins>
15                 
16                         <plugin>
17                                 <groupId>org.apache.maven.plugins</groupId>
18                                 <artifactId>maven-war-plugin</artifactId>
19                                 <version>2.4</version>
20                                 <configuration>
21                                     <attachClasses>true</attachClasses>
22                                         <archiveClasses>true</archiveClasses>                           
23                                         <failOnMissingWebXml>false</failOnMissingWebXml>
24                                 </configuration>
25                         </plugin>
26                 </plugins>
27         </build>
28         <dependencies>
29         
30                 <dependency>
31                         <groupId>com.github.tomakehurst</groupId>
32                         <artifactId>wiremock</artifactId>
33                         <version>1.56</version>
34                         <classifier>standalone</classifier>
35                         <exclusions>
36                                 <exclusion>
37                                         <groupId>org.mortbay.jetty</groupId>
38                                         <artifactId>jetty</artifactId>
39                                 </exclusion>
40                                 <exclusion>
41                                         <groupId>com.google.guava</groupId>
42                                         <artifactId>guava</artifactId>
43                                 </exclusion>
44                                 <exclusion>
45                                         <groupId>com.fasterxml.jackson.core</groupId>
46                                         <artifactId>jackson-core</artifactId>
47                                 </exclusion>
48                                 <exclusion>
49                                         <groupId>com.fasterxml.jackson.core</groupId>
50                                         <artifactId>jackson-annotations</artifactId>
51                                 </exclusion>
52                                 <exclusion>
53                                         <groupId>com.fasterxml.jackson.core</groupId>
54                                         <artifactId>jackson-databind</artifactId>
55                                 </exclusion>
56                                 <exclusion>
57                                         <groupId>org.apache.httpcomponents</groupId>
58                                         <artifactId>httpclient</artifactId>
59                                 </exclusion>
60                                 <exclusion>
61                                         <groupId>org.skyscreamer</groupId>
62                                         <artifactId>jsonassert</artifactId>
63                                 </exclusion>
64                                 <exclusion>
65                                         <groupId>xmlunit</groupId>
66                                         <artifactId>xmlunit</artifactId>
67                                 </exclusion>
68                                 <exclusion>
69                                         <groupId>com.jayway.jsonpath</groupId>
70                                         <artifactId>json-path</artifactId>
71                                 </exclusion>
72                                 <exclusion>
73                                         <groupId>net.sf.jopt-simple</groupId>
74                                         <artifactId>jopt-simple</artifactId>
75                                 </exclusion>
76                         </exclusions>
77                 </dependency>
78                 <dependency>
79                         <groupId>javax.ws.rs</groupId>
80                         <artifactId>javax.ws.rs-api</artifactId>
81                         <version>2.0</version>
82                 </dependency>
83                 <dependency>
84                     <groupId>org.jboss.resteasy</groupId>
85                     <artifactId>resteasy-client</artifactId>
86                     <version>3.0.8.Final</version>
87                         <exclusions>                    
88                                 <exclusion>
89                                         <groupId>org.apache.httpcomponents</groupId>                            
90                                         <artifactId>httpclient</artifactId>
91                                 </exclusion>
92                         </exclusions>   
93                 </dependency>
94         </dependencies>
95 </project>