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