Merge "BUG-1521 netconf-impl & netconf-monitoring line coverage."
[controller.git] / opendaylight / config / config-persister-file-xml-adapter / 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     <groupId>org.opendaylight.controller</groupId>
6     <artifactId>config-subsystem</artifactId>
7     <version>0.3.0-SNAPSHOT</version>
8     <relativePath>..</relativePath>
9   </parent>
10   <artifactId>config-persister-file-xml-adapter</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-persister-api</artifactId>
19     </dependency>
20     <dependency>
21       <groupId>com.google.guava</groupId>
22       <artifactId>guava</artifactId>
23     </dependency>
24     <dependency>
25       <groupId>org.apache.commons</groupId>
26       <artifactId>commons-lang3</artifactId>
27     </dependency>
28     <dependency>
29       <groupId>org.eclipse.persistence</groupId>
30       <artifactId>org.eclipse.persistence.core</artifactId>
31     </dependency>
32
33     <dependency>
34       <groupId>org.eclipse.persistence</groupId>
35       <artifactId>org.eclipse.persistence.moxy</artifactId>
36     </dependency>
37
38     <!-- test dependencies -->
39     <dependency>
40       <groupId>org.opendaylight.yangtools</groupId>
41       <artifactId>mockito-configuration</artifactId>
42     </dependency>
43     <dependency>
44       <groupId>org.slf4j</groupId>
45       <artifactId>slf4j-api</artifactId>
46     </dependency>
47     <dependency>
48       <groupId>xmlunit</groupId>
49       <artifactId>xmlunit</artifactId>
50     </dependency>
51     <dependency>
52       <groupId>${project.groupId}</groupId>
53       <artifactId>config-persister-api</artifactId>
54       <type>test-jar</type>
55       <scope>test</scope>
56     </dependency>
57   </dependencies>
58
59   <build>
60     <plugins>
61       <plugin>
62         <groupId>org.apache.felix</groupId>
63         <artifactId>maven-bundle-plugin</artifactId>
64         <configuration>
65           <instructions>
66             <Fragment-Host>${project.groupId}.config-persister-impl</Fragment-Host>
67             <Provide-Capability>org.opendaylight.controller.config.persister.storage.adapter</Provide-Capability>
68           </instructions>
69         </configuration>
70       </plugin>
71     </plugins>
72   </build>
73
74 </project>