Fix SDNC service registration
[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.0-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                 <dependency>
59                         <groupId>junit</groupId>
60                         <artifactId>junit</artifactId>
61                         <version>${junit.version}</version>
62                         <scope>test</scope>
63                 </dependency>
64         </dependencies>
65 </project>