Adding auto-sorting plugin to all Controller via parent/pom.xml
[controller.git] / opendaylight / northbound / bundlescanner / implementation / 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>bundlescanner.implementation</artifactId>
12   <version>0.4.2-SNAPSHOT</version>
13   <packaging>bundle</packaging>
14
15   <dependencies>
16     <dependency>
17       <groupId>junit</groupId>
18       <artifactId>junit</artifactId>
19     </dependency>
20     <dependency>
21       <groupId>org.opendaylight.controller</groupId>
22       <artifactId>bundlescanner</artifactId>
23     </dependency>
24     <dependency>
25       <groupId>org.opendaylight.controller</groupId>
26       <artifactId>sal</artifactId>
27     </dependency>
28     <dependency>
29       <groupId>org.ow2.asm</groupId>
30       <artifactId>asm-all</artifactId>
31     </dependency>
32     <dependency>
33       <groupId>org.springframework.osgi</groupId>
34       <artifactId>spring-osgi-mock</artifactId>
35       <scope>test</scope>
36     </dependency>
37   </dependencies>
38
39   <build>
40     <plugins>
41       <plugin>
42         <groupId>org.apache.felix</groupId>
43         <artifactId>maven-bundle-plugin</artifactId>
44         <version>${bundle.plugin.version}</version>
45         <extensions>true</extensions>
46         <configuration>
47           <instructions>
48             <Import-Package>org.apache.felix.dm,
49               org.objectweb.asm,
50               org.opendaylight.controller.sal.core,
51               org.opendaylight.controller.northbound.bundlescanner,
52               org.osgi.framework,
53               org.slf4j,
54               javax.ws.rs,
55               javax.ws.rs.core,
56               javax.xml.bind.annotation,
57               javax.xml.bind,</Import-Package>
58             <Bundle-Activator>org.opendaylight.controller.northbound.bundlescanner.internal.Activator</Bundle-Activator>
59           </instructions>
60         </configuration>
61       </plugin>
62     </plugins>
63   </build>
64
65   <scm>
66     <connection>scm:git:ssh://git.opendaylight.org:29418/controller.git</connection>
67     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
68     <tag>HEAD</tag>
69     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:Main</url>
70   </scm>
71 </project>