Release Oxygen
[controller.git] / opendaylight / config / config-manager-facade-xml / 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"
3   xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4   <modelVersion>4.0.0</modelVersion>
5   <parent>
6     <artifactId>config-subsystem</artifactId>
7     <groupId>org.opendaylight.controller</groupId>
8     <version>0.8.0</version>
9   </parent>
10   <artifactId>config-manager-facade-xml</artifactId>
11   <name>${project.artifactId}</name>
12   <packaging>bundle</packaging>
13
14   <dependencies>
15     <dependency>
16       <groupId>org.opendaylight.controller</groupId>
17       <artifactId>config-util</artifactId>
18     </dependency>
19     <dependency>
20       <groupId>org.opendaylight.controller</groupId>
21       <artifactId>yang-jmx-generator</artifactId>
22     </dependency>
23     <dependency>
24       <groupId>org.opendaylight.yangtools</groupId>
25       <artifactId>yang-data-api</artifactId>
26     </dependency>
27     <dependency>
28       <groupId>org.opendaylight.mdsal</groupId>
29       <artifactId>mdsal-binding-generator-impl</artifactId>
30     </dependency>
31     <dependency>
32       <groupId>org.slf4j</groupId>
33       <artifactId>slf4j-api</artifactId>
34     </dependency>
35     <dependency>
36       <groupId>junit</groupId>
37       <artifactId>junit</artifactId>
38       <scope>test</scope>
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         <extensions>true</extensions>
55         <configuration>
56           <instructions>
57             <Bundle-Activator>org.opendaylight.controller.config.facade.xml.osgi.YangStoreActivator</Bundle-Activator>
58           </instructions>
59         </configuration>
60       </plugin>
61     </plugins>
62   </build>
63
64 </project>