Merge "Event Source: switch from wildcards to regexs"
[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" 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     <groupId>org.opendaylight.controller</groupId>
6     <artifactId>config-subsystem</artifactId>
7     <version>0.4.0-SNAPSHOT</version>
8     <relativePath>..</relativePath>
9   </parent>
10   <artifactId>config-manager</artifactId>
11   <packaging>bundle</packaging>
12   <name>${project.artifactId}</name>
13
14   <dependencies>
15     <!-- compile dependencies -->
16     <dependency>
17       <groupId>${project.groupId}</groupId>
18       <artifactId>config-api</artifactId>
19     </dependency>
20     <dependency>
21       <groupId>com.google.code.findbugs</groupId>
22       <artifactId>jsr305</artifactId>
23     </dependency>
24     <dependency>
25       <groupId>com.google.guava</groupId>
26       <artifactId>guava</artifactId>
27     </dependency>
28
29     <!--Dependencies regardign RuntimeGeneratedMappingService-->
30     <dependency>
31       <groupId>org.opendaylight.yangtools</groupId>
32       <artifactId>binding-generator-impl</artifactId>
33     </dependency>
34     <dependency>
35       <groupId>org.opendaylight.yangtools</groupId>
36       <artifactId>concepts</artifactId>
37     </dependency>
38
39     <!-- test dependencies -->
40     <dependency>
41       <groupId>org.opendaylight.yangtools</groupId>
42       <artifactId>mockito-configuration</artifactId>
43     </dependency>
44     <dependency>
45       <groupId>org.opendaylight.yangtools</groupId>
46       <artifactId>yang-data-impl</artifactId>
47     </dependency>
48     <dependency>
49       <groupId>org.osgi</groupId>
50       <artifactId>org.osgi.core</artifactId>
51     </dependency>
52     <dependency>
53       <groupId>org.slf4j</groupId>
54       <artifactId>slf4j-api</artifactId>
55     </dependency>
56     <!--End-->
57
58     <dependency>
59       <groupId>${project.groupId}</groupId>
60       <artifactId>config-util</artifactId>
61       <scope>test</scope>
62     </dependency>
63     <dependency>
64       <groupId>${project.groupId}</groupId>
65       <artifactId>config-util</artifactId>
66       <type>test-jar</type>
67       <scope>test</scope>
68     </dependency>
69   </dependencies>
70
71   <build>
72     <plugins>
73       <plugin>
74         <groupId>org.apache.felix</groupId>
75         <artifactId>maven-bundle-plugin</artifactId>
76         <configuration>
77           <instructions>
78             <Bundle-Activator>org.opendaylight.controller.config.manager.impl.osgi.ConfigManagerActivator</Bundle-Activator>
79             <Private-Package>org.opendaylight.controller.config.manager.*,
80                             javax.annotation.*,</Private-Package>
81             <Export-Package></Export-Package>
82           </instructions>
83         </configuration>
84       </plugin>
85       <plugin>
86         <groupId>org.apache.maven.plugins</groupId>
87         <artifactId>maven-jar-plugin</artifactId>
88       </plugin>
89     </plugins>
90   </build>
91
92 </project>