adc66d99b2929ea47dc1e662466017b233db2eba
[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"
3          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         <artifactId>config-subsystem</artifactId>
8         <groupId>org.opendaylight.controller</groupId>
9         <version>0.5.0-SNAPSHOT</version>
10     </parent>
11     <artifactId>config-manager-facade-xml</artifactId>
12     <name>${project.artifactId}</name>
13     <packaging>bundle</packaging>
14
15     <dependencies>
16         <dependency>
17             <groupId>org.opendaylight.controller</groupId>
18             <artifactId>config-util</artifactId>
19         </dependency>
20         <dependency>
21             <groupId>org.opendaylight.controller</groupId>
22             <artifactId>yang-jmx-generator</artifactId>
23         </dependency>
24         <dependency>
25             <groupId>org.opendaylight.yangtools</groupId>
26             <artifactId>yang-data-api</artifactId>
27         </dependency>
28         <dependency>
29             <groupId>org.opendaylight.mdsal</groupId>
30             <artifactId>mdsal-binding-generator-impl</artifactId>
31         </dependency>
32         <dependency>
33             <groupId>org.slf4j</groupId>
34             <artifactId>slf4j-api</artifactId>
35         </dependency>
36         <dependency>
37             <groupId>junit</groupId>
38             <artifactId>junit</artifactId>
39             <version>4.12</version>
40             <scope>test</scope>
41         </dependency>
42     </dependencies>
43
44     <build>
45         <plugins>
46             <plugin>
47                 <groupId>org.apache.felix</groupId>
48                 <artifactId>maven-bundle-plugin</artifactId>
49                 <extensions>true</extensions>
50                 <configuration>
51                     <instructions>
52                         <Bundle-Activator>org.opendaylight.controller.config.facade.xml.osgi.YangStoreActivator</Bundle-Activator>
53                     </instructions>
54                 </configuration>
55             </plugin>
56         </plugins>
57     </build>
58
59 </project>