f1483b35c04faa9b20a9d25ee97cc515acfca3d5
[controller.git] / opendaylight / config / config-manager / 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     <groupId>org.opendaylight.controller</groupId>
7     <artifactId>config-subsystem</artifactId>
8     <version>0.8.0-SNAPSHOT</version>
9     <relativePath>..</relativePath>
10   </parent>
11   <artifactId>config-manager</artifactId>
12   <packaging>bundle</packaging>
13   <name>${project.artifactId}</name>
14
15   <dependencies>
16     <!-- compile dependencies -->
17     <dependency>
18       <groupId>${project.groupId}</groupId>
19       <artifactId>config-api</artifactId>
20     </dependency>
21     <dependency>
22       <groupId>com.google.guava</groupId>
23       <artifactId>guava</artifactId>
24     </dependency>
25
26     <!--Dependencies regarding RuntimeGeneratedMappingService-->
27     <dependency>
28       <groupId>org.opendaylight.mdsal</groupId>
29       <artifactId>mdsal-binding-generator-impl</artifactId>
30     </dependency>
31     <dependency>
32       <groupId>org.opendaylight.yangtools</groupId>
33       <artifactId>concepts</artifactId>
34     </dependency>
35
36     <!-- test dependencies -->
37     <dependency>
38       <groupId>org.opendaylight.yangtools</groupId>
39       <artifactId>mockito-configuration</artifactId>
40     </dependency>
41     <dependency>
42       <groupId>org.opendaylight.yangtools</groupId>
43       <artifactId>yang-data-impl</artifactId>
44     </dependency>
45     <dependency>
46       <groupId>org.osgi</groupId>
47       <artifactId>org.osgi.core</artifactId>
48     </dependency>
49     <dependency>
50       <groupId>org.slf4j</groupId>
51       <artifactId>slf4j-api</artifactId>
52     </dependency>
53     <!--End-->
54
55     <dependency>
56       <groupId>${project.groupId}</groupId>
57       <artifactId>config-util</artifactId>
58       <scope>test</scope>
59     </dependency>
60     <dependency>
61       <groupId>${project.groupId}</groupId>
62       <artifactId>config-util</artifactId>
63       <type>test-jar</type>
64       <scope>test</scope>
65     </dependency>
66   </dependencies>
67
68   <build>
69     <plugins>
70       <plugin>
71         <groupId>org.apache.maven.plugins</groupId>
72         <artifactId>maven-checkstyle-plugin</artifactId>
73         <configuration>
74           <propertyExpansion>checkstyle.violationSeverity=error</propertyExpansion>
75         </configuration>
76       </plugin>
77       <plugin>
78         <groupId>org.apache.felix</groupId>
79         <artifactId>maven-bundle-plugin</artifactId>
80         <configuration>
81           <instructions>
82             <Bundle-Activator>org.opendaylight.controller.config.manager.impl.osgi.ConfigManagerActivator</Bundle-Activator>
83             <Private-Package>org.opendaylight.controller.config.manager.*,
84               javax.annotation.*,</Private-Package>
85             <Export-Package></Export-Package>
86           </instructions>
87         </configuration>
88       </plugin>
89       <!-- test jar -->
90       <plugin>
91         <groupId>org.apache.maven.plugins</groupId>
92         <artifactId>maven-jar-plugin</artifactId>
93         <executions>
94           <execution>
95             <goals>
96               <goal>test-jar</goal>
97             </goals>
98             <phase>package</phase>
99           </execution>
100         </executions>
101       </plugin>
102     </plugins>
103   </build>
104
105 </project>