0fd26dbbe358ba49992214168e71bb05565b4335
[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   <scm>
11     <connection>scm:git:ssh://git.opendaylight.org:29418/controller.git</connection>
12     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
13     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:Main</url>
14     <tag>HEAD</tag>
15   </scm>
16
17   <artifactId>logging.bridge</artifactId>
18   <version>0.4.2-SNAPSHOT</version>
19   <packaging>bundle</packaging>
20
21   <dependencies>
22     <dependency>
23       <groupId>org.slf4j</groupId>
24       <artifactId>slf4j-api</artifactId>
25     </dependency>
26     <dependency>
27       <groupId>equinoxSDK381</groupId>
28       <artifactId>org.eclipse.osgi</artifactId>
29     </dependency>
30   </dependencies>
31
32   <build>
33     <plugins>
34       <plugin>
35         <groupId>org.apache.felix</groupId>
36         <artifactId>maven-bundle-plugin</artifactId>
37         <version>${bundle.plugin.version}</version>
38         <extensions>true</extensions>
39         <configuration>
40           <instructions>
41             <Import-Package>
42               org.slf4j,
43               org.osgi.framework,
44               org.osgi.service.log
45             </Import-Package>
46             <Bundle-Activator>
47               org.opendaylight.controller.logging.bridge.internal.Activator
48             </Bundle-Activator>
49           </instructions>
50           <manifestLocation>${project.basedir}/META-INF</manifestLocation>
51         </configuration>
52       </plugin>
53     </plugins>
54   </build>
55 </project>