f805ee546f37d730b91f338f4ddb718d75a9289f
[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.9.0-SNAPSHOT</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     <!-- Moxy has an optional dependency on Jersey -->
60     <dependency>
61       <groupId>com.sun.jersey</groupId>
62       <artifactId>jersey-core</artifactId>
63     </dependency>
64
65     <dependency>
66       <groupId>org.opendaylight.controller</groupId>
67       <artifactId>config-persister-file-xml-adapter</artifactId>
68     </dependency>
69
70     <!-- test dependencies -->
71     <dependency>
72       <groupId>org.opendaylight.yangtools</groupId>
73       <artifactId>mockito-configuration</artifactId>
74     </dependency>
75
76     <dependency>
77       <groupId>org.slf4j</groupId>
78       <artifactId>slf4j-api</artifactId>
79     </dependency>
80     <dependency>
81       <groupId>xmlunit</groupId>
82       <artifactId>xmlunit</artifactId>
83     </dependency>
84     <dependency>
85       <groupId>${project.groupId}</groupId>
86       <artifactId>config-persister-api</artifactId>
87       <type>test-jar</type>
88       <scope>test</scope>
89     </dependency>
90
91   </dependencies>
92
93   <build>
94     <plugins>
95       <plugin>
96         <groupId>org.apache.maven.plugins</groupId>
97         <artifactId>maven-checkstyle-plugin</artifactId>
98         <configuration>
99           <propertyExpansion>checkstyle.violationSeverity=error</propertyExpansion>
100         </configuration>
101       </plugin>
102       <plugin>
103         <groupId>org.apache.felix</groupId>
104         <artifactId>maven-bundle-plugin</artifactId>
105         <configuration>
106           <instructions>
107             <Fragment-Host>${project.groupId}.config-persister-impl</Fragment-Host>
108             <Provide-Capability>org.opendaylight.controller.config.persister.storage.adapter</Provide-Capability>
109           </instructions>
110         </configuration>
111       </plugin>
112     </plugins>
113   </build>
114 </project>