Merge "Add support for metadata to the Match/Action classes"
[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.opendaylight.controller</groupId>
23       <artifactId>clustering.services</artifactId>
24     </dependency>
25     <dependency>
26       <groupId>org.opendaylight.controller</groupId>
27       <artifactId>configuration</artifactId>
28     </dependency>
29     <dependency>
30       <groupId>org.opendaylight.controller</groupId>
31       <artifactId>sal</artifactId>
32     </dependency>
33   </dependencies>
34   <build>
35     <plugins>
36       <plugin>
37         <groupId>org.apache.felix</groupId>
38         <artifactId>maven-bundle-plugin</artifactId>
39         <extensions>true</extensions>
40         <configuration>
41           <instructions>
42             <Import-Package>org.opendaylight.controller.configuration,
43               org.opendaylight.controller.clustering.services,
44               org.opendaylight.controller.sal.core,
45               org.opendaylight.controller.sal.utils,
46               org.apache.felix.dm,
47               org.apache.commons.net.util,
48               org.osgi.service.component,
49               org.slf4j,
50               javax.xml.bind.annotation</Import-Package>
51           </instructions>
52           <manifestLocation>${project.basedir}/src/main/resources/META-INF</manifestLocation>
53         </configuration>
54       </plugin>
55     </plugins>
56   </build>
57   <scm>
58     <connection>scm:git:ssh://git.opendaylight.org:29418/controller.git</connection>
59     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
60     <tag>HEAD</tag>
61     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:Main</url>
62   </scm>
63   <distributionManagement>
64     <!-- OpenDayLight Released artifact -->
65     <repository>
66       <id>opendaylight-release</id>
67       <url>${nexusproxy}/repositories/${nexus.repository.release}/</url>
68     </repository>
69     <!-- OpenDayLight Snapshot artifact -->
70     <snapshotRepository>
71       <id>opendaylight-snapshot</id>
72       <url>${nexusproxy}/repositories/${nexus.repository.snapshot}/</url>
73     </snapshotRepository>
74     <!-- Site deployment -->
75     <site>
76       <id>website</id>
77       <url>${sitedeploy}</url>
78     </site>
79   </distributionManagement>
80 </project>