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