b3a04633aa4b9ddb6d3ebf9ba6b197ccb115c3b7
[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.1-SNAPSHOT</version>
8         <relativePath>..</relativePath>
9     </parent>
10     <artifactId>config-manager</artifactId>
11     <name>${project.artifactId}</name>
12     <packaging>bundle</packaging>
13
14     <dependencies>
15         <!-- compile dependencies -->
16         <dependency>
17             <groupId>${project.groupId}</groupId>
18             <artifactId>config-api</artifactId>
19             <version>0.2.1-SNAPSHOT</version>
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         <dependency>
34             <groupId>com.googlecode.json-simple</groupId>
35             <artifactId>json-simple</artifactId>
36             <version>1.1</version>
37         </dependency>
38         <dependency>
39             <groupId>commons-io</groupId>
40             <artifactId>commons-io</artifactId>
41         </dependency>
42
43         <!-- test dependencies -->
44         <dependency>
45             <groupId>org.opendaylight.bgpcep</groupId>
46             <artifactId>mockito-configuration</artifactId>
47             <version>${bgpcep.version}</version>
48             <scope>test</scope>
49         </dependency>
50         <dependency>
51             <groupId>${project.groupId}</groupId>
52             <artifactId>config-util</artifactId>
53             <version>0.2.1-SNAPSHOT</version>
54             <scope>test</scope>
55         </dependency>
56         <dependency>
57             <groupId>${project.groupId}</groupId>
58             <artifactId>config-util</artifactId>
59             <version>0.2.1-SNAPSHOT</version>
60             <scope>test</scope>
61             <type>test-jar</type>
62         </dependency>
63         <dependency>
64             <groupId>com.google.guava</groupId>
65             <artifactId>guava</artifactId>
66             <scope>test</scope>
67         </dependency>
68     </dependencies>
69
70     <build>
71         <plugins>
72             <plugin>
73                 <groupId>org.apache.felix</groupId>
74                 <artifactId>maven-bundle-plugin</artifactId>
75                 <configuration>
76                     <instructions>
77                         <Bundle-Activator>org.opendaylight.controller.config.manager.impl.osgi.ConfigManagerActivator
78                         </Bundle-Activator>
79                         <Private-Package>
80                             org.opendaylight.controller.config.manager.*,
81                             javax.annotation.*,
82                         </Private-Package>
83                         <Import-Package>
84                             org.opendaylight.controller.config.api.*,
85                             org.opendaylight.controller.config.spi.*,
86                             org.slf4j,
87                             javax.management,
88                             org.osgi.framework,
89                             org.opendaylight.protocol.concepts,
90                             org.apache.commons.io,
91                             org.osgi.util.tracker,
92                         </Import-Package>
93                         <Export-Package>
94                         </Export-Package>
95                     </instructions>
96                 </configuration>
97             </plugin>
98             <plugin>
99                 <groupId>org.apache.maven.plugins</groupId>
100                 <artifactId>maven-jar-plugin</artifactId>
101             </plugin>
102             <plugin>
103                 <groupId>org.apache.maven.plugins</groupId>
104                 <artifactId>maven-surefire-plugin</artifactId>
105                 <configuration>
106                     <forkCount>1</forkCount>
107                     <reuseForks>false</reuseForks>
108                     <perCoreThreadCount>false</perCoreThreadCount>
109                     <threadCount>1</threadCount>
110                 </configuration>
111             </plugin>
112         </plugins>
113     </build>
114
115 </project>