Update to support use of version ranges
[sdnc/northbound.git] / optical-service / provider / 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" 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
5     <parent>
6         <groupId>org.onap.ccsdk.parent</groupId>
7         <artifactId>binding-parent</artifactId>
8         <version>2.2.0-SNAPSHOT</version>
9         <relativePath/>
10     </parent>
11
12     <groupId>org.onap.sdnc.northbound</groupId>
13     <artifactId>optical-service-provider</artifactId>
14     <version>2.2.0-SNAPSHOT</version>
15     <packaging>bundle</packaging>
16
17     <name>sdnc-northbound :: optical-service :: ${project.artifactId}</name>
18
19     <properties>
20         <sdnc.northbound.version>${project.version}</sdnc.northbound.version>
21     </properties>
22
23     <dependencies>
24         <dependency>
25             <groupId>org.onap.sdnc.northbound</groupId>
26             <artifactId>optical-service-model</artifactId>
27             <version>${project.version}</version>
28         </dependency>
29         <dependency>
30             <groupId>org.onap.ccsdk.sli.core</groupId>
31             <artifactId>sli-common</artifactId>
32             <version>${ccsdk.sli.version}</version>
33         </dependency>
34         <dependency>
35             <groupId>org.onap.ccsdk.sli.core</groupId>
36             <artifactId>sli-provider</artifactId>
37             <version>${ccsdk.sli.version}</version>
38         </dependency>
39         <dependency>
40             <groupId>org.osgi</groupId>
41             <artifactId>org.osgi.service.component.annotations</artifactId>
42             <version>1.4.0</version>
43             <scope>provided</scope>
44         </dependency>
45         <dependency>
46             <groupId>javax.servlet</groupId>
47             <artifactId>javax.servlet-api</artifactId>
48         </dependency>
49         <dependency>
50             <groupId>org.json</groupId>
51             <artifactId>json</artifactId>
52         </dependency>
53         <dependency>
54             <groupId>org.apache.velocity</groupId>
55             <artifactId>velocity-engine-core</artifactId>
56             <version>2.0</version>
57         </dependency>
58         <dependency>
59             <groupId>commons-codec</groupId>
60             <artifactId>commons-codec</artifactId>
61             <version>1.9</version>
62         </dependency>
63         <dependency>
64             <groupId>org.opendaylight.mdsal</groupId>
65             <artifactId>mdsal-binding-api</artifactId>
66         </dependency>
67         <dependency>
68             <groupId>org.opendaylight.mdsal</groupId>
69             <artifactId>mdsal-binding-test-model</artifactId>
70             <scope>test</scope>
71         </dependency>
72         <dependency>
73             <groupId>org.opendaylight.mdsal</groupId>
74             <artifactId>mdsal-binding-test-utils</artifactId>
75             <scope>test</scope>
76         </dependency>
77         <dependency>
78             <groupId>org.opendaylight.mdsal</groupId>
79             <artifactId>mdsal-binding-dom-adapter</artifactId>
80             <scope>test</scope>
81         </dependency>
82         <dependency>
83             <groupId>junit</groupId>
84             <artifactId>junit</artifactId>
85             <scope>test</scope>
86         </dependency>
87         <dependency>
88             <groupId>org.testng</groupId>
89             <artifactId>testng</artifactId>
90             <scope>test</scope>
91         </dependency>
92         <dependency>
93             <groupId>org.mockito</groupId>
94             <artifactId>mockito-core</artifactId>
95             <scope>test</scope>
96         </dependency>
97     </dependencies>
98 </project>