Do not fix JUnit version (to 4.12), but inherit
[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             <scope>test</scope>
40         </dependency>
41     </dependencies>
42
43     <build>
44         <plugins>
45             <plugin>
46                 <groupId>org.apache.felix</groupId>
47                 <artifactId>maven-bundle-plugin</artifactId>
48                 <extensions>true</extensions>
49                 <configuration>
50                     <instructions>
51                         <Bundle-Activator>org.opendaylight.controller.config.facade.xml.osgi.YangStoreActivator</Bundle-Activator>
52                     </instructions>
53                 </configuration>
54             </plugin>
55         </plugins>
56     </build>
57
58 </project>