Merge "Startup archetype: remove 'Impl' from config subsystem Module name."
[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   <dependencies>
14     <dependency>
15       <groupId>commons-net</groupId>
16       <artifactId>commons-net</artifactId>
17     </dependency>
18     <dependency>
19       <groupId>org.osgi</groupId>
20       <artifactId>org.osgi.core</artifactId>
21     </dependency>
22     <dependency>
23       <groupId>org.slf4j</groupId>
24       <artifactId>slf4j-api</artifactId>
25     </dependency>
26   </dependencies>
27   <build>
28     <plugins>
29       <plugin>
30         <groupId>org.apache.felix</groupId>
31         <artifactId>maven-bundle-plugin</artifactId>
32         <extensions>true</extensions>
33         <configuration>
34           <instructions>
35             <Import-Package>*</Import-Package>
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   <distributionManagement>
49     <!-- OpenDayLight Released artifact -->
50     <repository>
51       <id>opendaylight-release</id>
52       <url>${nexusproxy}/repositories/${nexus.repository.release}/</url>
53     </repository>
54     <!-- OpenDayLight Snapshot artifact -->
55     <snapshotRepository>
56       <id>opendaylight-snapshot</id>
57       <url>${nexusproxy}/repositories/${nexus.repository.snapshot}/</url>
58     </snapshotRepository>
59     <!-- Site deployment -->
60     <site>
61       <id>website</id>
62       <url>${sitedeploy}</url>
63     </site>
64   </distributionManagement>
65 </project>