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