Commit generated test files after copyright was removed.
[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   <packaging>bundle</packaging>
13   <name>${project.artifactId}</name>
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>ch.qos.logback</groupId>
25       <artifactId>logback-classic</artifactId>
26     </dependency>
27     <dependency>
28       <groupId>ch.qos.logback</groupId>
29       <artifactId>logback-core</artifactId>
30     </dependency>
31
32     <dependency>
33       <groupId>com.google.guava</groupId>
34       <artifactId>guava</artifactId>
35     </dependency>
36     <dependency>
37       <groupId>commons-io</groupId>
38       <artifactId>commons-io</artifactId>
39     </dependency>
40     <dependency>
41       <groupId>org.apache.commons</groupId>
42       <artifactId>commons-lang3</artifactId>
43     </dependency>
44     <dependency>
45       <groupId>org.opendaylight.yangtools</groupId>
46       <artifactId>mockito-configuration</artifactId>
47     </dependency>
48     <dependency>
49       <groupId>org.slf4j</groupId>
50       <artifactId>slf4j-api</artifactId>
51     </dependency>
52
53     <!-- test dependencies -->
54
55     <dependency>
56       <groupId>${project.groupId}</groupId>
57       <artifactId>config-manager</artifactId>
58       <type>test-jar</type>
59       <scope>test</scope>
60     </dependency>
61     <dependency>
62       <groupId>${project.groupId}</groupId>
63       <artifactId>config-manager</artifactId>
64       <scope>test</scope>
65     </dependency>
66     <dependency>
67       <groupId>${project.groupId}</groupId>
68       <artifactId>config-util</artifactId>
69       <scope>test</scope>
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></Private-Package>
80             <Export-Package>org.opendaylight.controller.config.yang.logback.config,
81                             org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.controller.logback.config.rev130716.*,</Export-Package>
82           </instructions>
83         </configuration>
84       </plugin>
85       <plugin>
86         <groupId>org.opendaylight.yangtools</groupId>
87         <artifactId>yang-maven-plugin</artifactId>
88       </plugin>
89
90     </plugins>
91   </build>
92 </project>