Merge "BUG-972: correct Precondition"
[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.4.2-SNAPSHOT</version>
8     <relativePath>../../../commons/opendaylight</relativePath>
9   </parent>
10   <artifactId>networkconfig.neutron.implementation</artifactId>
11   <version>0.4.2-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>clustering.services</artifactId>
20     </dependency>
21     <dependency>
22       <groupId>org.opendaylight.controller</groupId>
23       <artifactId>configuration</artifactId>
24     </dependency>
25     <dependency>
26       <groupId>org.opendaylight.controller</groupId>
27       <artifactId>networkconfig.neutron</artifactId>
28     </dependency>
29     <dependency>
30       <groupId>org.opendaylight.controller</groupId>
31       <artifactId>sal</artifactId>
32     </dependency>
33     <dependency>
34       <groupId>org.osgi</groupId>
35       <artifactId>org.osgi.core</artifactId>
36     </dependency>
37   </dependencies>
38   <build>
39     <plugins>
40       <plugin>
41         <groupId>org.apache.felix</groupId>
42         <artifactId>maven-bundle-plugin</artifactId>
43         <version>2.3.6</version>
44         <extensions>true</extensions>
45         <configuration>
46           <instructions>
47             <Import-Package>org.opendaylight.controller.clustering.services,
48               org.opendaylight.controller.configuration,
49               org.opendaylight.controller.sal.core,
50               org.opendaylight.controller.sal.utils,
51               org.apache.felix.dm,
52               org.apache.commons.net.util,
53               org.osgi.service.component,
54               org.opendaylight.controller.networkconfig.neutron,
55               org.slf4j,
56               javax.xml.bind.annotation</Import-Package>
57             <Bundle-Activator>org.opendaylight.controller.networkconfig.neutron.implementation.Activator</Bundle-Activator>
58           </instructions>
59           <manifestLocation>${project.basedir}/src/main/resources/META-INF</manifestLocation>
60         </configuration>
61       </plugin>
62     </plugins>
63   </build>
64   <scm>
65     <connection>scm:git:ssh://git.opendaylight.org:29418/controller.git</connection>
66     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
67     <tag>HEAD</tag>
68     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:Main</url>
69   </scm>
70
71   <distributionManagement>
72     <!-- OpenDayLight Released artifact -->
73     <repository>
74       <id>opendaylight-release</id>
75       <url>${nexusproxy}/repositories/${nexus.repository.release}/</url>
76     </repository>
77     <!-- OpenDayLight Snapshot artifact -->
78     <snapshotRepository>
79       <id>opendaylight-snapshot</id>
80       <url>${nexusproxy}/repositories/${nexus.repository.snapshot}/</url>
81     </snapshotRepository>
82     <!-- Site deployment -->
83     <site>
84       <id>website</id>
85       <url>${sitedeploy}</url>
86     </site>
87   </distributionManagement>
88 </project>