Merge "Updating features archetype to talk about user-facing features."
[controller.git] / opendaylight / distribution / sanitytest / 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.5.0-SNAPSHOT</version>
8     <relativePath>../../commons/opendaylight</relativePath>
9   </parent>
10
11   <artifactId>sanitytest</artifactId>
12   <version>0.5.0-SNAPSHOT</version>
13   <packaging>bundle</packaging>
14   <dependencies>
15     <dependency>
16       <groupId>org.osgi</groupId>
17       <artifactId>org.osgi.core</artifactId>
18       <scope>provided</scope>
19     </dependency>
20   </dependencies>
21   <build>
22     <plugins>
23       <plugin>
24         <groupId>org.apache.felix</groupId>
25         <artifactId>maven-bundle-plugin</artifactId>
26         <extensions>true</extensions>
27         <configuration>
28           <instructions>
29             <Export-Package>org.opendaylight.controller.sanitytest</Export-Package>
30             <Import-Package>javax.xml.bind.annotation,
31               org.osgi.service.component,
32               org.slf4j,
33               org.eclipse.osgi.framework.console,
34               org.osgi.framework,
35               org.eclipse.osgi.baseadaptor,
36               org.eclipse.osgi.framework.adaptor,
37               org.osgi.framework.wiring</Import-Package>
38             <Bundle-Activator>org.opendaylight.controller.sanitytest.internal.Activator</Bundle-Activator>
39           </instructions>
40           <manifestLocation>${project.basedir}/META-INF</manifestLocation>
41         </configuration>
42       </plugin>
43     </plugins>
44   </build>
45   <scm>
46     <connection>scm:git:ssh://git.opendaylight.org:29418/controller.git</connection>
47     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
48     <tag>HEAD</tag>
49     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:Main</url>
50   </scm>
51 </project>