Bump versions by 0.1.0 for next dev cycle
[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.6.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>org.apache.commons</groupId>
35       <artifactId>commons-lang3</artifactId>
36     </dependency>
37     <dependency>
38       <groupId>org.opendaylight.yangtools</groupId>
39       <artifactId>mockito-configuration</artifactId>
40     </dependency>
41     <dependency>
42       <groupId>org.slf4j</groupId>
43       <artifactId>slf4j-api</artifactId>
44     </dependency>
45
46     <!-- test dependencies -->
47
48     <dependency>
49       <groupId>${project.groupId}</groupId>
50       <artifactId>config-manager</artifactId>
51       <type>test-jar</type>
52       <scope>test</scope>
53     </dependency>
54     <dependency>
55       <groupId>${project.groupId}</groupId>
56       <artifactId>config-manager</artifactId>
57       <scope>test</scope>
58     </dependency>
59     <dependency>
60       <groupId>${project.groupId}</groupId>
61       <artifactId>config-util</artifactId>
62       <scope>test</scope>
63     </dependency>
64   </dependencies>
65   <build>
66     <plugins>
67       <plugin>
68         <groupId>org.apache.felix</groupId>
69         <artifactId>maven-bundle-plugin</artifactId>
70         <configuration>
71           <instructions>
72             <Export-Package>org.opendaylight.controller.config.yang.logback.config,
73                             org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.controller.logback.config.rev130716.*,</Export-Package>
74           </instructions>
75         </configuration>
76       </plugin>
77       <plugin>
78         <groupId>org.opendaylight.yangtools</groupId>
79         <artifactId>yang-maven-plugin</artifactId>
80       </plugin>
81
82     </plugins>
83   </build>
84 </project>