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