Add SCM section to all the poms
[controller.git] / opendaylight / northbound / bundlescanner / implementation / pom.xml
1 <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">
2   <modelVersion>4.0.0</modelVersion>
3   <parent>
4     <groupId>org.opendaylight.controller</groupId>
5     <artifactId>commons.opendaylight</artifactId>
6     <version>1.4.0-SNAPSHOT</version>
7     <relativePath>../../../commons/opendaylight</relativePath>
8   </parent>
9
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   </scm>
15
16   <artifactId>bundlescanner.implementation</artifactId>
17   <version>0.4.0-SNAPSHOT</version>
18   <packaging>bundle</packaging>
19
20   <build>
21     <plugins>
22        <plugin>
23         <groupId>org.apache.felix</groupId>
24         <artifactId>maven-bundle-plugin</artifactId>
25         <version>2.3.6</version>
26         <extensions>true</extensions>
27         <configuration>
28           <instructions>
29             <Import-Package>
30               org.apache.felix.dm,
31               org.objectweb.asm,
32               org.opendaylight.controller.sal.core,
33               org.opendaylight.controller.northbound.bundlescanner,
34               org.osgi.framework,
35               org.slf4j,
36               javax.ws.rs,
37               javax.ws.rs.core,
38               javax.xml.bind.annotation,
39               javax.xml.bind,
40             </Import-Package>
41             <Bundle-Activator>
42                 org.opendaylight.controller.northbound.bundlescanner.internal.Activator
43             </Bundle-Activator>
44           </instructions>
45         </configuration>
46       </plugin>
47     </plugins>
48   </build>
49
50   <dependencies>
51       <dependency>
52           <groupId>org.ow2.asm</groupId>
53           <artifactId>asm-all</artifactId>
54           <version>4.1</version>
55       </dependency>
56       <dependency>
57         <groupId>org.springframework.osgi</groupId>
58         <artifactId>spring-osgi-mock</artifactId>
59         <version>1.2.1</version>
60         <scope>test</scope>
61       </dependency>
62       <dependency>
63         <groupId>org.opendaylight.controller</groupId>
64         <artifactId>bundlescanner</artifactId>
65         <version>0.4.0-SNAPSHOT</version>
66       </dependency>
67       <dependency>
68         <groupId>org.opendaylight.controller</groupId>
69         <artifactId>sal</artifactId>
70         <version>0.5.0-SNAPSHOT</version>
71       </dependency>
72   </dependencies>
73 </project>