Integrate VNF Repository in Beijing release
[sdc.git] / openecomp-be / api / openecomp-sdc-rest-webapp / vendor-software-products-rest / vnf-repository-rest-services / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3     xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4     <modelVersion>4.0.0</modelVersion>
5
6     <artifactId>vnf-repository-rest-services</artifactId>
7
8     <parent>
9         <groupId>org.openecomp.sdc.onboarding</groupId>
10         <artifactId>vendor-software-products-rest</artifactId>
11         <version>1.2.0-SNAPSHOT</version>
12     </parent>
13
14     <dependencies>
15         <dependency>
16             <groupId>org.springframework</groupId>
17             <artifactId>spring-core</artifactId>
18             <version>${spring.framework.version}</version>
19         </dependency>
20         <dependency>
21             <groupId>org.springframework</groupId>
22             <artifactId>spring-context</artifactId>
23             <version>${spring.framework.version}</version>
24         </dependency>
25         <dependency>
26             <groupId>org.springframework</groupId>
27             <artifactId>spring-context-support</artifactId>
28             <version>${spring.framework.version}</version>
29         </dependency>
30         <dependency>
31             <groupId>org.springframework</groupId>
32             <artifactId>spring-web</artifactId>
33             <version>${spring.framework.version}</version>
34         </dependency>
35         <dependency>
36             <groupId>org.springframework</groupId>
37             <artifactId>spring-beans</artifactId>
38             <version>${spring.framework.version}</version>
39         </dependency>
40
41         <!-- CXF -->
42         <dependency>
43             <groupId>org.apache.cxf</groupId>
44             <artifactId>cxf-rt-frontend-jaxrs</artifactId>
45             <version>${cxf.version}</version>
46         </dependency>
47         <dependency>
48             <groupId>org.apache.httpcomponents</groupId>
49             <artifactId>httpclient</artifactId>
50             <version>${http.client.version}</version>
51         </dependency>
52
53
54         <!-- Java Stuff -->
55         <dependency>
56             <groupId>javax.inject</groupId>
57             <artifactId>javax.inject</artifactId>
58             <version>${javax.inject.version}</version>
59             <scope>provided</scope>
60         </dependency>
61         <dependency>
62             <groupId>org.openecomp.sdc</groupId>
63             <artifactId>openecomp-sdc-common-rest</artifactId>
64             <version>${project.version}</version>
65         </dependency>
66         <dependency>
67             <groupId>org.openecomp.sdc</groupId>
68             <artifactId>common-app-api</artifactId>
69             <version>${project.version}</version>
70         </dependency>
71         <dependency>
72             <groupId>org.openecomp.sdc.common</groupId>
73             <artifactId>openecomp-configuration-management-api</artifactId>
74             <version>${project.version}</version>
75         </dependency>
76         <dependency>
77             <groupId>org.openecomp.sdc.common</groupId>
78             <artifactId>openecomp-configuration-management-core</artifactId>
79             <version>${project.version}</version>
80             <scope>runtime</scope>
81         </dependency>
82         <dependency>
83             <groupId>org.openecomp.sdc.onboarding</groupId>
84             <artifactId>vendor-software-products-rest-services</artifactId>
85             <version>${project.version}</version>
86         </dependency>
87
88     </dependencies>
89
90     <build>
91         <plugins>
92             <plugin>
93                 <groupId>org.apache.maven.plugins</groupId>
94                 <artifactId>maven-surefire-plugin</artifactId>
95             </plugin>
96         </plugins>
97     </build>
98
99 </project>