Merge "BUG 3057 - notify added event source by topics created before"
[controller.git] / opendaylight / config / logback-config / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- vi: set et smarttab sw=4 tabstop=4: -->
3 <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">
4   <modelVersion>4.0.0</modelVersion>
5   <parent>
6     <groupId>org.opendaylight.controller</groupId>
7     <artifactId>config-plugin-parent</artifactId>
8     <version>0.4.0-SNAPSHOT</version>
9     <relativePath>../config-plugin-parent</relativePath>
10   </parent>
11   <artifactId>logback-config</artifactId>
12   <packaging>bundle</packaging>
13   <name>${project.artifactId}</name>
14
15   <dependencies>
16     <dependency>
17       <groupId>${project.groupId}</groupId>
18       <artifactId>config-api</artifactId>
19     </dependency>
20     <dependency>
21       <groupId>ch.qos.logback</groupId>
22       <artifactId>logback-classic</artifactId>
23     </dependency>
24     <dependency>
25       <groupId>ch.qos.logback</groupId>
26       <artifactId>logback-core</artifactId>
27     </dependency>
28
29     <dependency>
30       <groupId>com.google.guava</groupId>
31       <artifactId>guava</artifactId>
32     </dependency>
33     <dependency>
34       <groupId>commons-io</groupId>
35       <artifactId>commons-io</artifactId>
36     </dependency>
37     <dependency>
38       <groupId>org.apache.commons</groupId>
39       <artifactId>commons-lang3</artifactId>
40     </dependency>
41     <dependency>
42       <groupId>org.opendaylight.yangtools</groupId>
43       <artifactId>mockito-configuration</artifactId>
44     </dependency>
45     <dependency>
46       <groupId>org.slf4j</groupId>
47       <artifactId>slf4j-api</artifactId>
48     </dependency>
49
50     <!-- test dependencies -->
51
52     <dependency>
53       <groupId>${project.groupId}</groupId>
54       <artifactId>config-manager</artifactId>
55       <type>test-jar</type>
56       <scope>test</scope>
57     </dependency>
58     <dependency>
59       <groupId>${project.groupId}</groupId>
60       <artifactId>config-manager</artifactId>
61       <scope>test</scope>
62     </dependency>
63     <dependency>
64       <groupId>${project.groupId}</groupId>
65       <artifactId>config-util</artifactId>
66       <scope>test</scope>
67     </dependency>
68   </dependencies>
69   <build>
70     <plugins>
71       <plugin>
72         <groupId>org.apache.felix</groupId>
73         <artifactId>maven-bundle-plugin</artifactId>
74         <configuration>
75           <instructions>
76             <Private-Package></Private-Package>
77             <Export-Package>org.opendaylight.controller.config.yang.logback.config,
78                             org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.controller.logback.config.rev130716.*,</Export-Package>
79           </instructions>
80         </configuration>
81       </plugin>
82       <plugin>
83         <groupId>org.opendaylight.yangtools</groupId>
84         <artifactId>yang-maven-plugin</artifactId>
85       </plugin>
86
87     </plugins>
88   </build>
89 </project>