BUG-2626: activate enunciate only on jdk-1.7
[controller.git] / opendaylight / networkconfiguration / neutron / northbound / 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>../../../commons/enunciate-parent</relativePath>
9   </parent>
10   <artifactId>networkconfig.neutron.northbound</artifactId>
11   <version>0.5.0-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>com.sun.jersey</groupId>
20       <artifactId>jersey-server</artifactId>
21     </dependency>
22     <dependency>
23       <groupId>com.sun.jersey</groupId>
24       <artifactId>jersey-servlet</artifactId>
25     </dependency>
26     <dependency>
27       <groupId>org.codehaus.enunciate</groupId>
28       <artifactId>enunciate-core-annotations</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>networkconfig.neutron</artifactId>
37     </dependency>
38   </dependencies>
39
40   <build>
41     <plugins>
42       <plugin>
43         <groupId>org.apache.felix</groupId>
44         <artifactId>maven-bundle-plugin</artifactId>
45         <extensions>true</extensions>
46         <configuration>
47           <instructions>
48             <Import-Package>org.opendaylight.controller.networkconfig.neutron,
49                             org.eclipse.persistence.jaxb.rs,
50                             com.sun.jersey.spi.container.servlet,
51                             javax.ws.rs,
52                             javax.ws.rs.ext,
53                             javax.ws.rs.core,
54                             javax.xml.bind.annotation,
55                             javax.xml.bind,
56                             org.slf4j,
57                             org.osgi.framework,
58                             !org.codehaus.enunciate.jaxrs</Import-Package>
59             <Web-ContextPath>/controller/nb/v2/neutron</Web-ContextPath>
60           </instructions>
61           <manifestLocation>${project.basedir}/src/main/resources/META-INF</manifestLocation>
62         </configuration>
63       </plugin>
64     </plugins>
65   </build>
66   <scm>
67     <connection>scm:git:ssh://git.opendaylight.org:29418/controller.git</connection>
68     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
69     <tag>HEAD</tag>
70     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:Main</url>
71   </scm>
72
73   <distributionManagement>
74     <!-- OpenDayLight Released artifact -->
75     <repository>
76       <id>opendaylight-release</id>
77       <url>${nexusproxy}/repositories/${nexus.repository.release}/</url>
78     </repository>
79     <!-- OpenDayLight Snapshot artifact -->
80     <snapshotRepository>
81       <id>opendaylight-snapshot</id>
82       <url>${nexusproxy}/repositories/${nexus.repository.snapshot}/</url>
83     </snapshotRepository>
84     <!-- Site deployment -->
85     <site>
86       <id>website</id>
87       <url>${sitedeploy}</url>
88     </site>
89   </distributionManagement>
90 </project>