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