Release Oxygen
[controller.git] / opendaylight / config / config-persister-directory-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.8.2</version>
8     <relativePath>..</relativePath>
9   </parent>
10   <artifactId>config-persister-directory-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
33     <dependency>
34       <groupId>org.eclipse.persistence</groupId>
35       <artifactId>org.eclipse.persistence.core</artifactId>
36     </dependency>
37     <!-- Persistence core has optional dependencies on JTA, javax.mail and antlr -->
38     <dependency>
39       <groupId>org.apache.geronimo.specs</groupId>
40       <artifactId>geronimo-jta_1.1_spec</artifactId>
41       <!-- TODO Add this to odlparent dependency management -->
42       <version>1.1.1</version>
43     </dependency>
44     <dependency>
45       <groupId>javax.mail</groupId>
46       <artifactId>mail</artifactId>
47       <!-- TODO Add this to odlparent dependency management -->
48       <version>1.4.4</version>
49     </dependency>
50     <dependency>
51       <groupId>org.eclipse.persistence</groupId>
52       <artifactId>org.eclipse.persistence.antlr</artifactId>
53     </dependency>
54
55     <dependency>
56       <groupId>org.eclipse.persistence</groupId>
57       <artifactId>org.eclipse.persistence.moxy</artifactId>
58     </dependency>
59     <dependency>
60       <groupId>org.opendaylight.controller</groupId>
61       <artifactId>config-persister-file-xml-adapter</artifactId>
62     </dependency>
63
64     <!-- test dependencies -->
65     <dependency>
66       <groupId>org.opendaylight.yangtools</groupId>
67       <artifactId>mockito-configuration</artifactId>
68     </dependency>
69
70     <dependency>
71       <groupId>org.slf4j</groupId>
72       <artifactId>slf4j-api</artifactId>
73     </dependency>
74     <dependency>
75       <groupId>xmlunit</groupId>
76       <artifactId>xmlunit</artifactId>
77     </dependency>
78     <dependency>
79       <groupId>${project.groupId}</groupId>
80       <artifactId>config-persister-api</artifactId>
81       <type>test-jar</type>
82       <scope>test</scope>
83     </dependency>
84
85   </dependencies>
86
87   <build>
88     <plugins>
89       <plugin>
90         <groupId>org.apache.maven.plugins</groupId>
91         <artifactId>maven-checkstyle-plugin</artifactId>
92         <configuration>
93           <propertyExpansion>checkstyle.violationSeverity=error</propertyExpansion>
94         </configuration>
95       </plugin>
96       <plugin>
97         <groupId>org.apache.felix</groupId>
98         <artifactId>maven-bundle-plugin</artifactId>
99         <configuration>
100           <instructions>
101             <Fragment-Host>${project.groupId}.config-persister-impl</Fragment-Host>
102             <Provide-Capability>org.opendaylight.controller.config.persister.storage.adapter</Provide-Capability>
103             <Private-Package>org.opendaylight.controller.config.persist.storage.file.xml.model,</Private-Package>
104           </instructions>
105         </configuration>
106       </plugin>
107     </plugins>
108   </build>
109 </project>