Make neutron a simple osgi app
[controller.git] / opendaylight / networkconfiguration / neutron / 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   <artifactId>networkconfig.neutron</artifactId>
11   <version>0.5.0-SNAPSHOT</version>
12   <packaging>bundle</packaging>
13   <properties>
14     <enunciate.version>1.26.2</enunciate.version>
15   </properties>
16   <dependencies>
17     <dependency>
18       <groupId>commons-net</groupId>
19       <artifactId>commons-net</artifactId>
20     </dependency>
21     <dependency>
22       <groupId>org.osgi</groupId>
23       <artifactId>org.osgi.core</artifactId>
24     </dependency>
25     <dependency>
26       <groupId>org.slf4j</groupId>
27       <artifactId>slf4j-api</artifactId>
28     </dependency>
29   </dependencies>
30   <build>
31     <plugins>
32       <plugin>
33         <groupId>org.apache.felix</groupId>
34         <artifactId>maven-bundle-plugin</artifactId>
35         <extensions>true</extensions>
36         <configuration>
37           <instructions>
38             <Import-Package>*</Import-Package>
39           </instructions>
40           <manifestLocation>${project.basedir}/src/main/resources/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   <distributionManagement>
52     <!-- OpenDayLight Released artifact -->
53     <repository>
54       <id>opendaylight-release</id>
55       <url>${nexusproxy}/repositories/${nexus.repository.release}/</url>
56     </repository>
57     <!-- OpenDayLight Snapshot artifact -->
58     <snapshotRepository>
59       <id>opendaylight-snapshot</id>
60       <url>${nexusproxy}/repositories/${nexus.repository.snapshot}/</url>
61     </snapshotRepository>
62     <!-- Site deployment -->
63     <site>
64       <id>website</id>
65       <url>${sitedeploy}</url>
66     </site>
67   </distributionManagement>
68 </project>