Merge "Cleanup dependencyManagement overrides"
[controller.git] / opendaylight / netconf / config-persister-impl / pom.xml
1 <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">
2     <modelVersion>4.0.0</modelVersion>
3
4     <parent>
5         <artifactId>netconf-subsystem</artifactId>
6         <groupId>org.opendaylight.controller</groupId>
7         <version>0.2.5-SNAPSHOT</version>
8     </parent>
9     <artifactId>config-persister-impl</artifactId>
10     <name>${project.artifactId}</name>
11     <packaging>bundle</packaging>
12
13     <dependencies>
14         <!-- compile dependencies -->
15         <dependency>
16             <groupId>org.opendaylight.controller</groupId>
17             <artifactId>config-persister-api</artifactId>
18         </dependency>
19         <dependency>
20             <groupId>${project.groupId}</groupId>
21             <artifactId>netconf-api</artifactId>
22         </dependency>
23         <dependency>
24             <groupId>${project.groupId}</groupId>
25             <artifactId>netconf-client</artifactId>
26         </dependency>
27         <dependency>
28             <groupId>${project.groupId}</groupId>
29             <artifactId>netconf-util</artifactId>
30         </dependency>
31         <dependency>
32             <groupId>org.slf4j</groupId>
33             <artifactId>slf4j-api</artifactId>
34         </dependency>
35         <dependency>
36             <groupId>com.google.guava</groupId>
37             <artifactId>guava</artifactId>
38         </dependency>
39         <dependency>
40             <groupId>org.osgi</groupId>
41             <artifactId>org.osgi.core</artifactId>
42         </dependency>
43         <dependency>
44             <groupId>org.opendaylight.controller</groupId>
45             <artifactId>config-persister-file-xml-adapter</artifactId>
46             <scope>test</scope>
47         </dependency>
48
49         <!-- test dependencies -->
50         <dependency>
51             <groupId>${project.groupId}</groupId>
52             <artifactId>netconf-impl</artifactId>
53             <scope>test</scope>
54         </dependency>
55         <dependency>
56             <groupId>${project.groupId}</groupId>
57             <artifactId>netconf-util</artifactId>
58             <scope>test</scope>
59             <type>test-jar</type>
60         </dependency>
61         <dependency>
62             <groupId>org.opendaylight.yangtools</groupId>
63             <artifactId>mockito-configuration</artifactId>
64         </dependency>
65         <dependency>
66             <groupId>commons-io</groupId>
67             <artifactId>commons-io</artifactId>
68             <scope>test</scope>
69         </dependency>
70         <dependency>
71             <groupId>org.opendaylight.controller</groupId>
72             <artifactId>config-persister-directory-xml-adapter</artifactId>
73             <scope>test</scope>
74         </dependency>
75     </dependencies>
76
77     <build>
78         <plugins>
79             <plugin>
80                 <groupId>org.apache.felix</groupId>
81                 <artifactId>maven-bundle-plugin</artifactId>
82                 <configuration>
83                     <instructions>
84                         <Bundle-Activator>org.opendaylight.controller.netconf.persist.impl.osgi.ConfigPersisterActivator
85                         </Bundle-Activator>
86                         <Require-Capability>org.opendaylight.controller.config.persister.storage.adapter
87                         </Require-Capability>
88                         <Import-Package>
89                             com.google.common.base,
90                             com.google.common.collect,
91                             javax.management,
92                             javax.xml.parsers,
93                             org.opendaylight.controller.config.persist.api,
94                             org.opendaylight.controller.netconf.api,
95                             org.opendaylight.controller.netconf.api.jmx,
96                             org.opendaylight.controller.netconf.client,
97                             org.opendaylight.controller.netconf.util.osgi,
98                             org.opendaylight.controller.netconf.util.xml,
99                             org.opendaylight.controller.netconf.util.messages,
100                             io.netty.channel,
101                             io.netty.channel.nio,
102                             io.netty.util.concurrent,
103                             org.osgi.framework,
104                             org.slf4j,
105                             org.w3c.dom,
106                             org.xml.sax,
107                             javax.xml.namespace,
108                             javax.xml.xpath,
109                             org.opendaylight.controller.config.api,
110                             org.opendaylight.controller.netconf.util
111                         </Import-Package>
112                         <Export-Package>
113                         </Export-Package>
114                     </instructions>
115                 </configuration>
116             </plugin>
117         </plugins>
118     </build>
119 </project>