Merge "modified meter and group enum from leaf to typedef."
[controller.git] / opendaylight / config / config-manager / pom.xml
1 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3     <modelVersion>4.0.0</modelVersion>
4     <parent>
5         <artifactId>config-subsystem</artifactId>
6         <groupId>org.opendaylight.controller</groupId>
7         <version>0.2.3-SNAPSHOT</version>
8         <relativePath>..</relativePath>
9     </parent>
10     <artifactId>config-manager</artifactId>
11     <name>${project.artifactId}</name>
12     <packaging>bundle</packaging>
13
14
15     <dependencies>
16         <!-- compile dependencies -->
17         <dependency>
18             <groupId>${project.groupId}</groupId>
19             <artifactId>config-api</artifactId>
20         </dependency>
21         <dependency>
22             <groupId>org.slf4j</groupId>
23             <artifactId>slf4j-api</artifactId>
24         </dependency>
25         <dependency>
26             <groupId>org.osgi</groupId>
27             <artifactId>org.osgi.core</artifactId>
28         </dependency>
29         <dependency>
30             <groupId>com.google.code.findbugs</groupId>
31             <artifactId>jsr305</artifactId>
32         </dependency>
33         <!--
34         <dependency>
35             <groupId>com.googlecode.json-simple</groupId>
36             <artifactId>json-simple</artifactId>
37             <version>1.1</version>
38         </dependency>
39         -->
40         <dependency>
41             <groupId>commons-io</groupId>
42             <artifactId>commons-io</artifactId>
43         </dependency>
44
45         <!-- test dependencies -->
46         <dependency>
47             <groupId>org.opendaylight.bgpcep</groupId>
48             <artifactId>mockito-configuration</artifactId>
49             <scope>test</scope>
50         </dependency>
51         <dependency>
52             <groupId>${project.groupId}</groupId>
53             <artifactId>config-util</artifactId>
54             <scope>test</scope>
55         </dependency>
56         <dependency>
57             <groupId>${project.groupId}</groupId>
58             <artifactId>config-util</artifactId>
59             <scope>test</scope>
60             <type>test-jar</type>
61         </dependency>
62         <dependency>
63             <groupId>com.google.guava</groupId>
64             <artifactId>guava</artifactId>
65             <scope>test</scope>
66         </dependency>
67         <dependency>
68             <groupId>org.opendaylight.yangtools</groupId>
69             <artifactId>concepts</artifactId>
70             <version>${opendaylight.yangtools.version}</version>
71         </dependency>
72     </dependencies>
73
74     <build>
75         <plugins>
76             <plugin>
77                 <groupId>org.apache.felix</groupId>
78                 <artifactId>maven-bundle-plugin</artifactId>
79                 <configuration>
80                     <instructions>
81                         <Bundle-Activator>org.opendaylight.controller.config.manager.impl.osgi.ConfigManagerActivator
82                         </Bundle-Activator>
83                         <Private-Package>
84                             org.opendaylight.controller.config.manager.*,
85                             javax.annotation.*,
86                         </Private-Package>
87                         <Export-Package>
88                         </Export-Package>
89                     </instructions>
90                 </configuration>
91             </plugin>
92             <plugin>
93                 <groupId>org.apache.maven.plugins</groupId>
94                 <artifactId>maven-jar-plugin</artifactId>
95             </plugin>
96             <plugin>
97                 <groupId>org.apache.maven.plugins</groupId>
98                 <artifactId>maven-surefire-plugin</artifactId>
99                 <configuration>
100                     <forkCount>1</forkCount>
101                     <reuseForks>false</reuseForks>
102                     <perCoreThreadCount>false</perCoreThreadCount>
103                     <threadCount>1</threadCount>
104                 </configuration>
105             </plugin>
106         </plugins>
107     </build>
108
109 </project>