BUG-1511 - Datastore: cleanup ListenerTreeAPI
[controller.git] / opendaylight / netconf / config-netconf-connector / 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.opendaylight.controller</groupId>
7     <artifactId>netconf-subsystem</artifactId>
8     <version>0.3.0-SNAPSHOT</version>
9   </parent>
10   <artifactId>config-netconf-connector</artifactId>
11   <packaging>bundle</packaging>
12   <name>${project.artifactId}</name>
13
14   <dependencies>
15     <!-- compile dependencies -->
16     <dependency>
17       <groupId>${project.groupId}</groupId>
18       <artifactId>config-api</artifactId>
19     </dependency>
20     <dependency>
21       <groupId>${project.groupId}</groupId>
22       <artifactId>config-util</artifactId>
23     </dependency>
24     <dependency>
25       <groupId>${project.groupId}</groupId>
26       <artifactId>netconf-api</artifactId>
27     </dependency>
28     <dependency>
29       <groupId>${project.groupId}</groupId>
30       <artifactId>netconf-mapping-api</artifactId>
31     </dependency>
32     <dependency>
33       <groupId>${project.groupId}</groupId>
34       <artifactId>netconf-util</artifactId>
35     </dependency>
36     <dependency>
37       <groupId>${project.groupId}</groupId>
38       <artifactId>yang-jmx-generator</artifactId>
39     </dependency>
40     <dependency>
41       <groupId>com.google.guava</groupId>
42       <artifactId>guava</artifactId>
43     </dependency>
44     <dependency>
45       <groupId>org.opendaylight.controller</groupId>
46       <artifactId>commons.logback_settings</artifactId>
47     </dependency>
48     <dependency>
49       <groupId>org.opendaylight.yangtools</groupId>
50       <artifactId>mockito-configuration</artifactId>
51     </dependency>
52     <dependency>
53       <groupId>org.osgi</groupId>
54       <artifactId>org.osgi.core</artifactId>
55     </dependency>
56     <dependency>
57       <groupId>org.slf4j</groupId>
58       <artifactId>slf4j-api</artifactId>
59     </dependency>
60     <dependency>
61       <groupId>xmlunit</groupId>
62       <artifactId>xmlunit</artifactId>
63     </dependency>
64     <dependency>
65       <groupId>${project.groupId}</groupId>
66       <artifactId>config-manager</artifactId>
67       <type>test-jar</type>
68       <scope>test</scope>
69     </dependency>
70     <dependency>
71       <groupId>${project.groupId}</groupId>
72       <artifactId>config-manager</artifactId>
73       <scope>test</scope>
74     </dependency>
75     <dependency>
76       <groupId>${project.groupId}</groupId>
77       <artifactId>netconf-impl</artifactId>
78       <scope>test</scope>
79     </dependency>
80
81     <dependency>
82       <groupId>${project.groupId}</groupId>
83       <artifactId>netconf-util</artifactId>
84       <type>test-jar</type>
85       <scope>test</scope>
86     </dependency>
87
88     <dependency>
89       <groupId>${project.groupId}</groupId>
90       <artifactId>yang-test</artifactId>
91       <scope>test</scope>
92     </dependency>
93   </dependencies>
94
95   <build>
96     <plugins>
97       <plugin>
98         <groupId>org.apache.felix</groupId>
99         <artifactId>maven-bundle-plugin</artifactId>
100         <configuration>
101           <instructions>
102             <Bundle-Activator>org.opendaylight.controller.netconf.confignetconfconnector.osgi.Activator</Bundle-Activator>
103             <Private-Package>org.opendaylight.controller.netconf.confignetconfconnector.mapping.*,
104                             org.opendaylight.controller.netconf.confignetconfconnector.operations.*,
105                             org.opendaylight.controller.netconf.confignetconfconnector.transactions,
106                             org.opendaylight.controller.netconf.confignetconfconnector.util,
107                             org.opendaylight.controller.netconf.confignetconfconnector.osgi,
108                             org.opendaylight.controller.netconf.confignetconfconnector.exception,</Private-Package>
109             <Import-Package>*</Import-Package>
110             <Export-Package></Export-Package>
111           </instructions>
112         </configuration>
113       </plugin>
114     </plugins>
115   </build>
116
117 </project>