Add ModuleFactory#getDefaultModules method to config-api.
[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.2-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     </dependencies>
68
69     <build>
70         <plugins>
71             <plugin>
72                 <groupId>org.apache.felix</groupId>
73                 <artifactId>maven-bundle-plugin</artifactId>
74                 <configuration>
75                     <instructions>
76                         <Bundle-Activator>org.opendaylight.controller.config.manager.impl.osgi.ConfigManagerActivator
77                         </Bundle-Activator>
78                         <Private-Package>
79                             org.opendaylight.controller.config.manager.*,
80                             javax.annotation.*,
81                         </Private-Package>
82                         <Import-Package>
83                             org.opendaylight.controller.config.api.*,
84                             org.opendaylight.controller.config.spi.*,
85                             org.slf4j,
86                             javax.management,
87                             org.osgi.framework,
88                             org.opendaylight.protocol.concepts,
89                             org.apache.commons.io,
90                             org.osgi.util.tracker,
91                         </Import-Package>
92                         <Export-Package>
93                         </Export-Package>
94                     </instructions>
95                 </configuration>
96             </plugin>
97             <plugin>
98                 <groupId>org.apache.maven.plugins</groupId>
99                 <artifactId>maven-jar-plugin</artifactId>
100             </plugin>
101             <plugin>
102                 <groupId>org.apache.maven.plugins</groupId>
103                 <artifactId>maven-surefire-plugin</artifactId>
104                 <configuration>
105                     <forkCount>1</forkCount>
106                     <reuseForks>false</reuseForks>
107                     <perCoreThreadCount>false</perCoreThreadCount>
108                     <threadCount>1</threadCount>
109                 </configuration>
110             </plugin>
111         </plugins>
112     </build>
113
114 </project>