c00149107 | 3c30c9c | 2017-09-18 09:39:24 +0800 | [diff] [blame] | 1 | <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"> |
| 2 | <modelVersion>4.0.0</modelVersion> |
| 3 | <parent> |
| 4 | <groupId>org.openecomp.so</groupId> |
| 5 | <artifactId>adapters</artifactId> |
| 6 | <version>1.1.0-SNAPSHOT</version> |
| 7 | </parent> |
| 8 | <groupId>org.openecomp.so.adapters</groupId> |
| 9 | <artifactId>mso-vfc-adapter</artifactId> |
| 10 | <packaging>war</packaging> |
| 11 | <name>mso-vfc-adapter</name> |
| 12 | <description>Web service endpoint for vfc operations</description> |
| 13 | <!-- <properties> --> |
| 14 | <!-- <project.build.sourceEncoding/> --> |
| 15 | <!-- <project.reporting.outputEncoding/> --> |
| 16 | <!-- </properties> --> |
| 17 | <build> |
| 18 | <finalName>${project.artifactId}-${project.version}</finalName> |
| 19 | <plugins> |
| 20 | <plugin> |
| 21 | <artifactId>maven-war-plugin</artifactId> |
| 22 | <version>2.4</version> |
| 23 | <configuration> |
| 24 | <warSourceDirectory>WebContent</warSourceDirectory> |
| 25 | <failOnMissingWebXml>false</failOnMissingWebXml> |
| 26 | <attachClasses>true</attachClasses> |
| 27 | </configuration> |
| 28 | </plugin> |
| 29 | </plugins> |
| 30 | </build> |
| 31 | <dependencies> |
| 32 | <!--<dependency> |
| 33 | <groupId>javax</groupId> |
| 34 | <artifactId>javaee-web-api</artifactId> |
| 35 | <version>6.0</version> |
| 36 | <scope>provided</scope> |
| 37 | </dependency>--> |
c00149107 | 4671cbb | 2017-09-15 16:54:46 +0800 | [diff] [blame] | 38 | <dependency> |
c00149107 | 3c30c9c | 2017-09-18 09:39:24 +0800 | [diff] [blame] | 39 | <groupId>javax.ws.rs</groupId> |
| 40 | <artifactId>javax.ws.rs-api</artifactId> |
| 41 | <version>2.0</version> |
| 42 | </dependency> |
c00149107 | 4671cbb | 2017-09-15 16:54:46 +0800 | [diff] [blame] | 43 | <dependency> |
c00149107 | 3c30c9c | 2017-09-18 09:39:24 +0800 | [diff] [blame] | 44 | <groupId>org.openecomp.so.adapters</groupId> |
| 45 | <artifactId>mso-adapter-utils</artifactId> |
| 46 | <version>${project.version}</version> |
| 47 | </dependency> |
| 48 | <dependency> |
| 49 | <groupId>org.openecomp.so.adapters</groupId> |
| 50 | <artifactId>mso-adapters-rest-interface</artifactId> |
| 51 | <version>${project.version}</version> |
| 52 | </dependency> |
| 53 | <dependency> |
| 54 | <groupId>org.mockito</groupId> |
| 55 | <artifactId>mockito-all</artifactId> |
| 56 | <version>1.10.19</version> |
| 57 | <scope>test</scope> |
| 58 | </dependency> |
| 59 | <dependency> |
| 60 | <groupId>javax.servlet</groupId> |
| 61 | <artifactId>javax.servlet-api</artifactId> |
| 62 | <version>3.1.0</version> |
| 63 | <scope>test</scope> |
| 64 | </dependency> |
| 65 | <dependency> |
| 66 | <groupId>org.jboss.spec.javax.ejb</groupId> |
| 67 | <artifactId>jboss-ejb-api_3.2_spec</artifactId> |
| 68 | <version>1.0.0.Final</version> |
| 69 | <scope>provided</scope> |
| 70 | </dependency> |
| 71 | <dependency> |
| 72 | <groupId>org.jboss.ejb3</groupId> |
| 73 | <artifactId>jboss-ejb3-ext-api</artifactId> |
| 74 | <version>2.2.0.Final</version> |
| 75 | <scope>provided</scope> |
| 76 | </dependency> |
| 77 | <dependency> |
| 78 | <groupId>org.openecomp.so</groupId> |
| 79 | <artifactId>status-control</artifactId> |
| 80 | <version>${project.version}</version> |
| 81 | </dependency> |
| 82 | <dependency> |
| 83 | <groupId>org.openecomp.so</groupId> |
| 84 | <artifactId>mso-requests-db</artifactId> |
| 85 | <version>${project.version}</version> |
| 86 | </dependency> |
| 87 | <dependency> |
| 88 | <groupId>commons-io</groupId> |
| 89 | <artifactId>commons-io</artifactId> |
| 90 | </dependency> |
| 91 | <dependency> |
c00149107 | 26b7c9d | 2017-08-31 14:27:38 +0800 | [diff] [blame] | 92 | <groupId>org.jmockit</groupId> |
| 93 | <artifactId>jmockit</artifactId> |
| 94 | <version>1.19</version> |
| 95 | <scope>test</scope> |
| 96 | </dependency> |
| 97 | <dependency> |
| 98 | <groupId>junit</groupId> |
| 99 | <artifactId>junit</artifactId> |
| 100 | <version>4.12</version> |
| 101 | <scope>test</scope> |
| 102 | </dependency> |
| 103 | <dependency> |
| 104 | <groupId>org.jmockit</groupId> |
| 105 | <artifactId>jmockit-coverage</artifactId> |
| 106 | <version>1.19</version> |
| 107 | <scope>test</scope> |
| 108 | </dependency> |
c00149107 | 4671cbb | 2017-09-15 16:54:46 +0800 | [diff] [blame] | 109 | <dependency> |
c00149107 | 3c30c9c | 2017-09-18 09:39:24 +0800 | [diff] [blame] | 110 | <groupId>org.glassfish.jersey.core</groupId> |
| 111 | <artifactId>jersey-common</artifactId> |
| 112 | <version>2.22.2</version> |
| 113 | <scope>test</scope> |
| 114 | </dependency> |
| 115 | <dependency> |
c00149107 | 4671cbb | 2017-09-15 16:54:46 +0800 | [diff] [blame] | 116 | <groupId>javax.servlet</groupId> |
| 117 | <artifactId>javax.servlet-api</artifactId> |
| 118 | <version>3.1.0</version> |
c00149107 | 3c30c9c | 2017-09-18 09:39:24 +0800 | [diff] [blame] | 119 | </dependency> |
| 120 | </dependencies> |
c00149107 | 26b7c9d | 2017-08-31 14:27:38 +0800 | [diff] [blame] | 121 | </project> |