Fix checkstyle issues to enforce it
[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.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     <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     <dependency>
42       <groupId>org.opendaylight.controller</groupId>
43       <artifactId>config-persister-file-xml-adapter</artifactId>
44     </dependency>
45
46     <!-- test dependencies -->
47     <dependency>
48       <groupId>org.opendaylight.yangtools</groupId>
49       <artifactId>mockito-configuration</artifactId>
50     </dependency>
51
52     <dependency>
53       <groupId>org.slf4j</groupId>
54       <artifactId>slf4j-api</artifactId>
55     </dependency>
56     <dependency>
57       <groupId>xmlunit</groupId>
58       <artifactId>xmlunit</artifactId>
59     </dependency>
60     <dependency>
61       <groupId>${project.groupId}</groupId>
62       <artifactId>config-persister-api</artifactId>
63       <type>test-jar</type>
64       <scope>test</scope>
65     </dependency>
66
67   </dependencies>
68
69   <build>
70     <plugins>
71       <plugin>
72         <groupId>org.apache.maven.plugins</groupId>
73         <artifactId>maven-checkstyle-plugin</artifactId>
74         <configuration>
75           <propertyExpansion>checkstyle.violationSeverity=error</propertyExpansion>
76         </configuration>
77       </plugin>
78       <plugin>
79         <groupId>org.apache.felix</groupId>
80         <artifactId>maven-bundle-plugin</artifactId>
81         <configuration>
82           <instructions>
83             <Fragment-Host>${project.groupId}.config-persister-impl</Fragment-Host>
84             <Provide-Capability>org.opendaylight.controller.config.persister.storage.adapter</Provide-Capability>
85             <Private-Package>org.opendaylight.controller.config.persist.storage.file.xml.model,</Private-Package>
86           </instructions>
87         </configuration>
88       </plugin>
89     </plugins>
90   </build>
91 </project>