Make neutron a simple osgi app
[controller.git] / opendaylight / networkconfiguration / neutron / 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.5.0-SNAPSHOT</version>
8     <relativePath>../../../commons/opendaylight</relativePath>
9   </parent>
10   <artifactId>networkconfig.neutron.implementation</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>org.opendaylight.controller</groupId>
19       <artifactId>networkconfig.neutron</artifactId>
20     </dependency>
21     <dependency>
22       <groupId>org.osgi</groupId>
23       <artifactId>org.osgi.core</artifactId>
24     </dependency>
25   </dependencies>
26   <build>
27     <plugins>
28       <plugin>
29         <groupId>org.apache.felix</groupId>
30         <artifactId>maven-bundle-plugin</artifactId>
31         <extensions>true</extensions>
32         <configuration>
33           <instructions>
34             <Import-Package>*</Import-Package>
35             <Bundle-Activator>org.opendaylight.controller.networkconfig.neutron.implementation.Activator</Bundle-Activator>
36           </instructions>
37           <manifestLocation>${project.basedir}/src/main/resources/META-INF</manifestLocation>
38         </configuration>
39       </plugin>
40     </plugins>
41   </build>
42   <scm>
43     <connection>scm:git:ssh://git.opendaylight.org:29418/controller.git</connection>
44     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
45     <tag>HEAD</tag>
46     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:Main</url>
47   </scm>
48
49   <distributionManagement>
50     <!-- OpenDayLight Released artifact -->
51     <repository>
52       <id>opendaylight-release</id>
53       <url>${nexusproxy}/repositories/${nexus.repository.release}/</url>
54     </repository>
55     <!-- OpenDayLight Snapshot artifact -->
56     <snapshotRepository>
57       <id>opendaylight-snapshot</id>
58       <url>${nexusproxy}/repositories/${nexus.repository.snapshot}/</url>
59     </snapshotRepository>
60     <!-- Site deployment -->
61     <site>
62       <id>website</id>
63       <url>${sitedeploy}</url>
64     </site>
65   </distributionManagement>
66 </project>