Merge "BUG-704 Remove pax from netconf identity-ref test."
[controller.git] / opendaylight / logging / bridge / 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>commons.opendaylight</artifactId>
7     <version>1.4.2-SNAPSHOT</version>
8     <relativePath>../../commons/opendaylight</relativePath>
9   </parent>
10
11   <artifactId>logging.bridge</artifactId>
12   <version>0.4.2-SNAPSHOT</version>
13   <packaging>bundle</packaging>
14
15   <dependencies>
16     <dependency>
17       <groupId>equinoxSDK381</groupId>
18       <artifactId>org.eclipse.osgi</artifactId>
19     </dependency>
20     <dependency>
21       <groupId>org.slf4j</groupId>
22       <artifactId>slf4j-api</artifactId>
23     </dependency>
24     <dependency>
25       <groupId>ch.qos.logback</groupId>
26       <artifactId>logback-classic</artifactId>
27       <scope>test</scope>
28     </dependency>
29     <dependency>
30       <groupId>junit</groupId>
31       <artifactId>junit</artifactId>
32       <scope>test</scope>
33     </dependency>
34     <dependency>
35       <groupId>org.opendaylight.yangtools</groupId>
36       <artifactId>mockito-configuration</artifactId>
37       <scope>test</scope>
38     </dependency>
39   </dependencies>
40
41   <build>
42     <plugins>
43       <plugin>
44         <groupId>org.apache.felix</groupId>
45         <artifactId>maven-bundle-plugin</artifactId>
46         <extensions>true</extensions>
47         <configuration>
48           <instructions>
49             <Import-Package>org.slf4j,
50                             org.osgi.framework,
51                             org.osgi.service.log</Import-Package>
52             <Bundle-Activator>org.opendaylight.controller.logging.bridge.internal.Activator</Bundle-Activator>
53           </instructions>
54           <manifestLocation>${project.basedir}/META-INF</manifestLocation>
55         </configuration>
56       </plugin>
57     </plugins>
58   </build>
59   <scm>
60     <connection>scm:git:ssh://git.opendaylight.org:29418/controller.git</connection>
61     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
62     <tag>HEAD</tag>
63     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:Main</url>
64   </scm>
65 </project>