Bump versions by x.y.(z+1)
[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.5-SNAPSHOT</version>
8     <relativePath>../parent</relativePath>
9   </parent>
10
11   <groupId>org.opendaylight.neutron</groupId>
12   <artifactId>northbound-api</artifactId>
13   <version>0.7.5-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.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>javax.validation</groupId>
37         <artifactId>validation-api</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   <build>
50     <plugins>
51       <plugin>
52         <groupId>org.apache.felix</groupId>
53         <artifactId>maven-bundle-plugin</artifactId>
54         <extensions>true</extensions>
55         <configuration>
56           <instructions>
57             <Import-Package>
58               com.sun.jersey.spi.container.servlet,
59               org.eclipse.jetty.servlets,
60               org.opendaylight.aaa.shiro.filters,
61               org.opendaylight.aaa.shiro.realm,
62               org.opendaylight.aaa.shiro.web.env,
63               org.apache.shiro.web.env,
64               !org.codehaus.enunciate.jaxrs,
65               javax.validation,
66               javax.ws.rs.ext,
67               javax.xml.bind,
68               *
69             </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       <plugin>
76         <groupId>org.apache.maven.plugins</groupId>
77         <artifactId>maven-compiler-plugin</artifactId>
78         <inherited>true</inherited>
79         <configuration>
80           <compilerArgs>
81             <arg>-Xlint:unchecked</arg>
82             <arg>-Xlint:deprecation</arg>
83           </compilerArgs>
84         </configuration>
85       </plugin>
86     </plugins>
87   </build>
88   <scm>
89     <connection>scm:git:ssh://git.opendaylight.org:29418/neutron.git</connection>
90     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/neutron.git</developerConnection>
91     <tag>HEAD</tag>
92     <url>https://wiki.opendaylight.org/view/NeutronNorthBound:Main</url>
93   </scm>
94
95   <distributionManagement>
96     <!-- Site deployment -->
97     <site>
98       <id>opendaylight-site</id>
99       <url>${nexus.site.url}/${project.artifactId}/</url>
100     </site>
101   </distributionManagement>
102
103   <!--
104       Maven Site Configuration
105
106       The following configuration is necessary for maven-site-plugin to
107       correctly identify the correct deployment path for OpenDaylight Maven
108       sites.
109   -->
110   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
111 </project>