Release Oxygen
[controller.git] / opendaylight / config / config-api / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- vi: set et smarttab sw=4 tabstop=4: -->
3 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4   xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5   <modelVersion>4.0.0</modelVersion>
6   <parent>
7     <groupId>org.opendaylight.mdsal</groupId>
8     <artifactId>binding-parent</artifactId>
9     <version>0.12.0</version>
10     <relativePath />
11   </parent>
12
13   <groupId>org.opendaylight.controller</groupId>
14   <version>0.8.0</version>
15   <artifactId>config-api</artifactId>
16   <packaging>bundle</packaging>
17   <name>${project.artifactId}</name>
18
19   <dependencies>
20     <dependency>
21       <groupId>org.opendaylight.mdsal</groupId>
22       <artifactId>yang-binding</artifactId>
23     </dependency>
24     <dependency>
25       <groupId>org.opendaylight.yangtools</groupId>
26       <artifactId>yang-common</artifactId>
27     </dependency>
28     <dependency>
29       <groupId>org.osgi</groupId>
30       <artifactId>org.osgi.core</artifactId>
31
32       <!-- We are adding generated code which is bound to OSGi, so we need
33            to make sure anyone dependending on this artifact inherits it -->
34       <scope>compile</scope>
35     </dependency>
36     <dependency>
37       <groupId>org.opendaylight.yangtools</groupId>
38       <artifactId>mockito-configuration</artifactId>
39     </dependency>
40   </dependencies>
41
42   <build>
43     <plugins>
44       <plugin>
45         <groupId>org.apache.maven.plugins</groupId>
46         <artifactId>maven-checkstyle-plugin</artifactId>
47         <configuration>
48           <propertyExpansion>checkstyle.violationSeverity=error</propertyExpansion>
49         </configuration>
50       </plugin>
51       <plugin>
52         <groupId>org.apache.felix</groupId>
53         <artifactId>maven-bundle-plugin</artifactId>
54       </plugin>
55       <plugin>
56         <groupId>org.opendaylight.yangtools</groupId>
57         <artifactId>yang-maven-plugin</artifactId>
58       </plugin>
59     </plugins>
60   </build>
61 </project>