xg353y | b6b7bef | 2017-04-11 13:30:42 +0200 | [diff] [blame] | 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> |
Rob Daugherty | 9de3ce0 | 2017-08-04 12:15:51 -0400 | [diff] [blame] | 4 | <groupId>org.openecomp.so</groupId> |
xg353y | b6b7bef | 2017-04-11 13:30:42 +0200 | [diff] [blame] | 5 | <artifactId>bpmn</artifactId> |
| 6 | <version>1.1.0-SNAPSHOT</version> |
| 7 | </parent> |
| 8 | <modelVersion>4.0.0</modelVersion> |
Rob Daugherty | 9de3ce0 | 2017-08-04 12:15:51 -0400 | [diff] [blame] | 9 | <groupId>org.openecomp.so</groupId> |
xg353y | b6b7bef | 2017-04-11 13:30:42 +0200 | [diff] [blame] | 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> |
seshukm | 171ec7b | 2017-09-12 16:13:47 +0530 | [diff] [blame] | 79 | <groupId>org.openecomp.so</groupId> |
| 80 | <artifactId>common</artifactId> |
| 81 | <version>${project.version}</version> |
| 82 | </dependency> |
| 83 | <dependency> |
xg353y | b6b7bef | 2017-04-11 13:30:42 +0200 | [diff] [blame] | 84 | <groupId>javax.ws.rs</groupId> |
| 85 | <artifactId>javax.ws.rs-api</artifactId> |
| 86 | <version>2.0</version> |
| 87 | </dependency> |
| 88 | <dependency> |
| 89 | <groupId>org.jboss.resteasy</groupId> |
| 90 | <artifactId>resteasy-client</artifactId> |
| 91 | <version>3.0.8.Final</version> |
| 92 | <exclusions> |
| 93 | <exclusion> |
| 94 | <groupId>org.apache.httpcomponents</groupId> |
| 95 | <artifactId>httpclient</artifactId> |
| 96 | </exclusion> |
| 97 | </exclusions> |
| 98 | </dependency> |
| 99 | </dependencies> |
| 100 | </project> |