Merge "Resolve Bug:717 - Remove fragment version requirement from config-persister-*"
[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.2.5-SNAPSHOT</version>
9         <relativePath>../config-plugin-parent</relativePath>
10     </parent>
11     <artifactId>logback-config</artifactId>
12     <name>${project.artifactId}</name>
13     <packaging>bundle</packaging>
14     <prerequisites>
15         <maven>3.0.4</maven>
16     </prerequisites>
17
18     <dependencies>
19         <dependency>
20             <groupId>${project.groupId}</groupId>
21             <artifactId>config-api</artifactId>
22         </dependency>
23         <dependency>
24             <groupId>org.slf4j</groupId>
25             <artifactId>slf4j-api</artifactId>
26         </dependency>
27         <dependency>
28             <groupId>ch.qos.logback</groupId>
29             <artifactId>logback-classic</artifactId>
30         </dependency>
31         <dependency>
32             <groupId>ch.qos.logback</groupId>
33             <artifactId>logback-core</artifactId>
34         </dependency>
35
36         <dependency>
37             <groupId>com.google.guava</groupId>
38             <artifactId>guava</artifactId>
39         </dependency>
40         <dependency>
41             <groupId>commons-io</groupId>
42             <artifactId>commons-io</artifactId>
43         </dependency>
44
45         <!-- test dependencies -->
46
47         <dependency>
48             <groupId>${project.groupId}</groupId>
49             <artifactId>config-manager</artifactId>
50             <scope>test</scope>
51             <type>test-jar</type>
52         </dependency>
53         <dependency>
54             <groupId>${project.groupId}</groupId>
55             <artifactId>config-manager</artifactId>
56             <scope>test</scope>
57         </dependency>
58         <dependency>
59             <groupId>${project.groupId}</groupId>
60             <artifactId>config-util</artifactId>
61             <scope>test</scope>
62         </dependency>
63         <dependency>
64             <groupId>org.opendaylight.yangtools</groupId>
65             <artifactId>mockito-configuration</artifactId>
66         </dependency>
67         <dependency>
68           <groupId>org.apache.commons</groupId>
69           <artifactId>commons-lang3</artifactId>
70         </dependency>
71     </dependencies>
72     <build>
73         <plugins>
74             <plugin>
75                 <groupId>org.apache.felix</groupId>
76                 <artifactId>maven-bundle-plugin</artifactId>
77                 <configuration>
78                     <instructions>
79                         <Private-Package>
80                         </Private-Package>
81                         <Export-Package>
82                             org.opendaylight.controller.config.yang.logback.config,
83                             org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.controller.logback.config.rev130716.*,
84                         </Export-Package>
85                     </instructions>
86                 </configuration>
87             </plugin>
88             <plugin>
89                 <groupId>org.opendaylight.yangtools</groupId>
90                 <artifactId>yang-maven-plugin</artifactId>
91             </plugin>
92
93         </plugins>
94     </build>
95 </project>