Roll to version 0.1.1-SNAPSHOT
[ccsdk/sli/northbound.git] / dataChange / 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      <parent>
5           <artifactId>dataChange</artifactId>
6           <groupId>org.onap.ccsdk.sli.northbound</groupId>
7           <version>0.1.1-SNAPSHOT</version>
8      </parent>
9      <artifactId>dataChange-provider</artifactId>
10      <packaging>bundle</packaging>
11
12      <build>
13           <plugins>
14                <plugin>
15                     <groupId>org.apache.felix</groupId>
16                     <artifactId>maven-bundle-plugin</artifactId>
17                     <extensions>true</extensions>
18                </plugin>
19           </plugins>
20      </build>
21
22      <dependencies>
23           <dependency>
24                <groupId>org.onap.ccsdk.sli.northbound</groupId>
25                <artifactId>dataChange-model</artifactId>
26           </dependency>
27           <dependency>
28                <groupId>org.opendaylight.controller</groupId>
29                <artifactId>config-api</artifactId>
30
31                <version>${odl.controller.config.api.version}</version>
32           </dependency>
33           <dependency>
34                <groupId>org.opendaylight.controller</groupId>
35                <artifactId>sal-binding-config</artifactId>
36                <version>${odl.mdsal.version}</version>
37           </dependency>
38           <dependency>
39                <groupId>org.opendaylight.controller</groupId>
40                <artifactId>sal-binding-api</artifactId>
41                <version>${odl.mdsal.version}</version>
42           </dependency>
43           <dependency>
44                <groupId>org.opendaylight.controller</groupId>
45                <artifactId>sal-common-util</artifactId>
46                <version>${odl.mdsal.version}</version>
47           </dependency>
48           <dependency>
49                <groupId>org.onap.ccsdk.sli.core</groupId>
50                <artifactId>sli-common</artifactId>
51                <version>${sdnctl.sli.version}</version>
52           </dependency>
53           <dependency>
54                <groupId>org.onap.ccsdk.sli.core</groupId>
55                <artifactId>sli-provider</artifactId>
56                <version>${sdnctl.sli.version}</version>
57           </dependency>
58
59           <dependency>
60                <groupId>org.opendaylight.controller</groupId>
61                <artifactId>sal-test-model</artifactId>
62                <version>${odl.mdsal.version}</version>
63                <scope>test</scope>
64           </dependency>
65           <dependency>
66                <groupId>org.opendaylight.netconf</groupId>
67                <artifactId>sal-rest-connector</artifactId>
68                <version>${odl.mdsal.version}</version>
69                <scope>test</scope>
70           </dependency>
71
72           <dependency>
73                <groupId>org.opendaylight.controller</groupId>
74                <artifactId>sal-binding-broker-impl</artifactId>
75                <version>${odl.mdsal.version}</version>
76                <scope>test</scope>
77           </dependency>
78           <dependency>
79                <groupId>org.opendaylight.controller</groupId>
80                <artifactId>sal-binding-broker-impl</artifactId>
81                <version>${odl.mdsal.version}</version>
82                <type>test-jar</type>
83                <classifier>tests</classifier>
84                <scope>test</scope>
85           </dependency>
86           <dependency>
87                <groupId>junit</groupId>
88                <artifactId>junit</artifactId>
89                <version>${junit.version}</version>
90                <scope>test</scope>
91           </dependency>
92           <dependency>
93                <groupId>org.testng</groupId>
94                <artifactId>testng</artifactId>
95                <version>6.11</version>
96                <scope>test</scope>
97           </dependency>
98           <dependency>
99                <groupId>org.mockito</groupId>
100                <artifactId>mockito-core</artifactId>
101                <version>${mockito.version}</version>
102                <scope>test</scope>
103           </dependency>
104      </dependencies>
105 </project>