2944fe888d9727b854928757f9812cf986f26b7b
[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.odlparent</groupId>
6     <artifactId>bundle-parent</artifactId>
7     <version>1.8.0-SNAPSHOT</version>
8     <relativePath/>
9   </parent>
10
11   <groupId>org.opendaylight.controller</groupId>
12   <version>0.6.0-SNAPSHOT</version>
13   <artifactId>config-persister-file-xml-adapter</artifactId>
14   <packaging>bundle</packaging>
15   <name>${project.artifactId}</name>
16
17   <dependencyManagement>
18     <dependencies>
19       <dependency>
20         <groupId>org.opendaylight.controller</groupId>
21         <artifactId>config-artifacts</artifactId>
22         <version>0.6.0-SNAPSHOT</version>
23         <type>pom</type>
24         <scope>import</scope>
25       </dependency>
26       <dependency>
27         <groupId>org.opendaylight.yangtools</groupId>
28         <artifactId>yangtools-artifacts</artifactId>
29         <version>1.1.0-SNAPSHOT</version>
30         <type>pom</type>
31         <scope>import</scope>
32       </dependency>
33     </dependencies>
34   </dependencyManagement>
35
36   <dependencies>
37     <!-- compile dependencies -->
38     <dependency>
39       <groupId>${project.groupId}</groupId>
40       <artifactId>config-persister-api</artifactId>
41     </dependency>
42     <dependency>
43       <groupId>com.google.guava</groupId>
44       <artifactId>guava</artifactId>
45     </dependency>
46     <dependency>
47       <groupId>org.apache.commons</groupId>
48       <artifactId>commons-lang3</artifactId>
49     </dependency>
50     <dependency>
51       <groupId>javax.validation</groupId>
52       <artifactId>validation-api</artifactId>
53     </dependency>
54     <dependency>
55       <groupId>org.eclipse.persistence</groupId>
56       <artifactId>org.eclipse.persistence.core</artifactId>
57     </dependency>
58
59     <dependency>
60       <groupId>org.eclipse.persistence</groupId>
61       <artifactId>org.eclipse.persistence.moxy</artifactId>
62     </dependency>
63
64     <!-- test dependencies -->
65     <dependency>
66       <groupId>org.opendaylight.yangtools</groupId>
67       <artifactId>mockito-configuration</artifactId>
68     </dependency>
69     <dependency>
70       <groupId>org.slf4j</groupId>
71       <artifactId>slf4j-api</artifactId>
72     </dependency>
73     <dependency>
74       <groupId>xmlunit</groupId>
75       <artifactId>xmlunit</artifactId>
76     </dependency>
77     <dependency>
78       <groupId>${project.groupId}</groupId>
79       <artifactId>config-persister-api</artifactId>
80       <type>test-jar</type>
81       <scope>test</scope>
82     </dependency>
83   </dependencies>
84
85   <build>
86     <plugins>
87       <plugin>
88         <groupId>org.apache.felix</groupId>
89         <artifactId>maven-bundle-plugin</artifactId>
90         <configuration>
91           <instructions>
92             <Fragment-Host>${project.groupId}.config-persister-impl</Fragment-Host>
93             <Provide-Capability>org.opendaylight.controller.config.persister.storage.adapter</Provide-Capability>
94           </instructions>
95         </configuration>
96       </plugin>
97     </plugins>
98   </build>
99
100 </project>