Bump versions by 0.1.0 for next dev cycle
[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.7.0-SNAPSHOT</version>
8     <relativePath>../parent</relativePath>
9   </parent>
10
11   <groupId>org.opendaylight.neutron</groupId>
12   <artifactId>northbound-api</artifactId>
13   <version>0.7.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>javax.validation</groupId>
41         <artifactId>validation-api</artifactId>
42         <version>1.1.0.Final</version>
43     </dependency>
44     <dependency>
45       <groupId>org.opendaylight.neutron</groupId>
46       <artifactId>neutron-spi</artifactId>
47       <version>${project.version}</version>
48     </dependency>
49     <dependency>
50       <groupId>org.osgi</groupId>
51       <artifactId>org.osgi.core</artifactId>
52     </dependency>
53   </dependencies>
54
55   <build>
56     <plugins>
57       <plugin>
58         <groupId>org.apache.felix</groupId>
59         <artifactId>maven-bundle-plugin</artifactId>
60         <extensions>true</extensions>
61         <configuration>
62           <instructions>
63             <Import-Package>
64               org.eclipse.jetty.servlets,
65               org.eclipse.persistence.jaxb.rs,
66               com.sun.jersey.spi.container.servlet,
67               javax.validation,
68               javax.ws.rs,
69               javax.ws.rs.ext,
70               javax.ws.rs.core,
71               javax.xml.bind.annotation,
72               javax.xml.bind,
73               org.slf4j,
74               org.osgi.framework,
75               !org.codehaus.enunciate.jaxrs,*</Import-Package>
76             <Web-ContextPath>/controller/nb/v2/neutron</Web-ContextPath>
77           </instructions>
78           <manifestLocation>${project.basedir}/src/main/resources/META-INF</manifestLocation>
79         </configuration>
80       </plugin>
81     </plugins>
82   </build>
83   <scm>
84     <connection>scm:git:ssh://git.opendaylight.org:29418/neutron.git</connection>
85     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/neutron.git</developerConnection>
86     <tag>HEAD</tag>
87     <url>https://wiki.opendaylight.org/view/NeutronNorthBound:Main</url>
88   </scm>
89
90   <distributionManagement>
91     <!-- OpenDayLight Released artifact -->
92     <repository>
93       <id>opendaylight-release</id>
94       <url>${nexusproxy}/repositories/${nexus.repository.release}/</url>
95     </repository>
96     <!-- OpenDayLight Snapshot artifact -->
97     <snapshotRepository>
98       <id>opendaylight-snapshot</id>
99       <url>${nexusproxy}/repositories/${nexus.repository.snapshot}/</url>
100     </snapshotRepository>
101     <!-- Site deployment -->
102     <site>
103       <id>website</id>
104       <url>${sitedeploy}</url>
105     </site>
106   </distributionManagement>
107 </project>