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