Add explicit init/close methods to OpendaylightToaster
[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.7.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>javax.validation</groupId>
30       <artifactId>validation-api</artifactId>
31     </dependency>
32     <dependency>
33       <groupId>org.eclipse.persistence</groupId>
34       <artifactId>org.eclipse.persistence.core</artifactId>
35     </dependency>
36
37     <dependency>
38       <groupId>org.eclipse.persistence</groupId>
39       <artifactId>org.eclipse.persistence.moxy</artifactId>
40     </dependency>
41
42     <!-- test dependencies -->
43     <dependency>
44       <groupId>org.opendaylight.yangtools</groupId>
45       <artifactId>mockito-configuration</artifactId>
46     </dependency>
47     <dependency>
48       <groupId>org.slf4j</groupId>
49       <artifactId>slf4j-api</artifactId>
50     </dependency>
51     <dependency>
52       <groupId>xmlunit</groupId>
53       <artifactId>xmlunit</artifactId>
54     </dependency>
55     <dependency>
56       <groupId>${project.groupId}</groupId>
57       <artifactId>config-persister-api</artifactId>
58       <type>test-jar</type>
59       <scope>test</scope>
60     </dependency>
61   </dependencies>
62
63   <build>
64     <plugins>
65       <plugin>
66         <groupId>org.apache.felix</groupId>
67         <artifactId>maven-bundle-plugin</artifactId>
68         <configuration>
69           <instructions>
70             <Fragment-Host>${project.groupId}.config-persister-impl</Fragment-Host>
71             <Provide-Capability>org.opendaylight.controller.config.persister.storage.adapter</Provide-Capability>
72           </instructions>
73         </configuration>
74       </plugin>
75     </plugins>
76   </build>
77
78 </project>