blob: f45133c646f80ac4112464acbab7e5fade3268dc [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>
Arthur Martella22e015f2018-02-22 14:24:40 -05005 <groupId>org.onap.so</groupId>
Seshu-Kumar-Mf8696082017-10-11 20:39:35 +08006 <artifactId>adapters</artifactId>
Jessica Wagantall777f6372017-11-20 11:10:28 -08007 <version>1.2.0-SNAPSHOT</version>
Seshu-Kumar-Mf8696082017-10-11 20:39:35 +08008 </parent>
Arthur Martella22e015f2018-02-22 14:24:40 -05009 <groupId>org.onap.so.adapters</groupId>
Seshu-Kumar-Mf8696082017-10-11 20:39:35 +080010 <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>
Arthur Martella22e015f2018-02-22 14:24:40 -050041 <groupId>org.onap.so.adapters</groupId>
Seshu-Kumar-Mf8696082017-10-11 20:39:35 +080042 <artifactId>mso-adapter-utils</artifactId>
43 <version>${project.version}</version>
44 </dependency>
45 <dependency>
Arthur Martella22e015f2018-02-22 14:24:40 -050046 <groupId>org.onap.so.adapters</groupId>
Seshu-Kumar-Mf8696082017-10-11 20:39:35 +080047 <artifactId>mso-adapters-rest-interface</artifactId>
48 <version>${project.version}</version>
49 </dependency>
50 <dependency>
Seshu-Kumar-Mf8696082017-10-11 20:39:35 +080051 <groupId>javax.servlet</groupId>
52 <artifactId>javax.servlet-api</artifactId>
53 <version>3.1.0</version>
54 <scope>test</scope>
55 </dependency>
56 <dependency>
57 <groupId>org.jboss.spec.javax.ejb</groupId>
58 <artifactId>jboss-ejb-api_3.2_spec</artifactId>
59 <version>1.0.0.Final</version>
60 <scope>provided</scope>
61 </dependency>
62 <dependency>
63 <groupId>org.jboss.ejb3</groupId>
64 <artifactId>jboss-ejb3-ext-api</artifactId>
65 <version>2.2.0.Final</version>
66 <scope>provided</scope>
67 </dependency>
68 <dependency>
Arthur Martella22e015f2018-02-22 14:24:40 -050069 <groupId>org.onap.so</groupId>
Seshu-Kumar-Mf8696082017-10-11 20:39:35 +080070 <artifactId>status-control</artifactId>
71 <version>${project.version}</version>
72 </dependency>
73 <dependency>
Arthur Martella22e015f2018-02-22 14:24:40 -050074 <groupId>org.onap.so</groupId>
Seshu-Kumar-Mf8696082017-10-11 20:39:35 +080075 <artifactId>mso-requests-db</artifactId>
76 <version>${project.version}</version>
77 </dependency>
78 <dependency>
79 <groupId>commons-io</groupId>
80 <artifactId>commons-io</artifactId>
81 </dependency>
82 <dependency>
Seshu-Kumar-Mf8696082017-10-11 20:39:35 +080083 <groupId>org.glassfish.jersey.core</groupId>
84 <artifactId>jersey-common</artifactId>
85 <version>2.22.2</version>
86 <scope>test</scope>
87 </dependency>
88 <dependency>
89 <groupId>javax.servlet</groupId>
90 <artifactId>javax.servlet-api</artifactId>
91 <version>3.1.0</version>
92 </dependency>
93 </dependencies>
c0014910726b7c9d2017-08-31 14:27:38 +080094</project>