728316afabf940ed9ded1eca75ce47fe743e2d1b
[controller.git] / opendaylight / northbound / 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.4.2-SNAPSHOT</version>
8     <relativePath>../../../commons/opendaylight</relativePath>
9   </parent>
10   <artifactId>networkconfig.neutron.northbound</artifactId>
11   <version>0.4.2-SNAPSHOT</version>
12   <packaging>bundle</packaging>
13   <dependencies>
14     <dependency>
15       <groupId>com.sun.jersey</groupId>
16       <artifactId>jersey-core</artifactId>
17     </dependency>
18     <dependency>
19       <groupId>org.codehaus.enunciate</groupId>
20       <artifactId>enunciate-core-annotations</artifactId>
21     </dependency>
22     <dependency>
23       <groupId>org.eclipse.persistence</groupId>
24       <artifactId>org.eclipse.persistence.antlr</artifactId>
25     </dependency>
26     <dependency>
27       <groupId>org.eclipse.persistence</groupId>
28       <artifactId>org.eclipse.persistence.core</artifactId>
29     </dependency>
30     <dependency>
31       <groupId>org.eclipse.persistence</groupId>
32       <artifactId>org.eclipse.persistence.moxy</artifactId>
33     </dependency>
34     <dependency>
35       <groupId>org.opendaylight.controller</groupId>
36       <artifactId>commons.northbound</artifactId>
37     </dependency>
38     <dependency>
39       <groupId>org.opendaylight.controller</groupId>
40       <artifactId>containermanager</artifactId>
41     </dependency>
42     <dependency>
43       <groupId>org.opendaylight.controller</groupId>
44       <artifactId>networkconfig.neutron</artifactId>
45     </dependency>
46     <dependency>
47       <groupId>org.opendaylight.controller</groupId>
48       <artifactId>sal</artifactId>
49     </dependency>
50   </dependencies>
51
52   <build>
53     <plugins>
54       <plugin>
55         <groupId>org.apache.felix</groupId>
56         <artifactId>maven-bundle-plugin</artifactId>
57         <extensions>true</extensions>
58         <configuration>
59           <instructions>
60             <Import-Package>org.opendaylight.controller.sal.utils,
61                             org.opendaylight.controller.containermanager,
62                             org.opendaylight.controller.northbound.commons,
63                             org.opendaylight.controller.northbound.commons.exception,
64                             org.opendaylight.controller.northbound.commons.utils,
65                             org.opendaylight.controller.networkconfig.neutron,
66                             org.eclipse.persistence.jaxb.rs,
67                             com.sun.jersey.spi.container.servlet,
68                             javax.ws.rs,
69                             javax.ws.rs.core,
70                             javax.xml.bind.annotation,
71                             javax.xml.bind,
72                             org.slf4j,
73                             !org.codehaus.enunciate.jaxrs</Import-Package>
74             <Web-ContextPath>/controller/nb/v2/neutron</Web-ContextPath>
75           </instructions>
76           <manifestLocation>${project.basedir}/src/main/resources/META-INF</manifestLocation>
77         </configuration>
78       </plugin>
79       <plugin>
80         <groupId>org.codehaus.enunciate</groupId>
81         <artifactId>maven-enunciate-plugin</artifactId>
82       </plugin>
83     </plugins>
84   </build>
85   <scm>
86     <connection>scm:git:ssh://git.opendaylight.org:29418/controller.git</connection>
87     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
88     <tag>HEAD</tag>
89     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:Main</url>
90   </scm>
91
92   <distributionManagement>
93     <!-- OpenDayLight Released artifact -->
94     <repository>
95       <id>opendaylight-release</id>
96       <url>${nexusproxy}/repositories/${nexus.repository.release}/</url>
97     </repository>
98     <!-- OpenDayLight Snapshot artifact -->
99     <snapshotRepository>
100       <id>opendaylight-snapshot</id>
101       <url>${nexusproxy}/repositories/${nexus.repository.snapshot}/</url>
102     </snapshotRepository>
103     <!-- Site deployment -->
104     <site>
105       <id>website</id>
106       <url>${sitedeploy}</url>
107     </site>
108   </distributionManagement>
109 </project>