Merge "Bug 509: Improve logging in InMemoryDataStore."
[controller.git] / opendaylight / northbound / networkconfiguration / neutron / 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>commons.opendaylight</artifactId>
7     <version>1.4.2-SNAPSHOT</version>
8     <relativePath>../../../commons/opendaylight</relativePath>
9   </parent>
10   <artifactId>networkconfig.neutron.northbound</artifactId>
11   <version>0.4.2-SNAPSHOT</version>
12   <packaging>bundle</packaging>
13   <properties>
14     <enunciate.version>1.26.2</enunciate.version>
15   </properties>
16   <dependencies>
17     <dependency>
18       <groupId>com.sun.jersey</groupId>
19       <artifactId>jersey-core</artifactId>
20     </dependency>
21     <dependency>
22       <groupId>org.codehaus.enunciate</groupId>
23       <artifactId>enunciate-core-annotations</artifactId>
24     </dependency>
25     <dependency>
26       <groupId>org.eclipse.persistence</groupId>
27       <artifactId>org.eclipse.persistence.antlr</artifactId>
28     </dependency>
29     <dependency>
30       <groupId>org.eclipse.persistence</groupId>
31       <artifactId>org.eclipse.persistence.core</artifactId>
32     </dependency>
33     <dependency>
34       <groupId>org.eclipse.persistence</groupId>
35       <artifactId>org.eclipse.persistence.moxy</artifactId>
36     </dependency>
37     <dependency>
38       <groupId>org.opendaylight.controller</groupId>
39       <artifactId>commons.northbound</artifactId>
40     </dependency>
41     <dependency>
42       <groupId>org.opendaylight.controller</groupId>
43       <artifactId>containermanager</artifactId>
44     </dependency>
45     <dependency>
46       <groupId>org.opendaylight.controller</groupId>
47       <artifactId>networkconfig.neutron</artifactId>
48     </dependency>
49     <dependency>
50       <groupId>org.opendaylight.controller</groupId>
51       <artifactId>sal</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         <version>2.3.6</version>
61         <extensions>true</extensions>
62         <configuration>
63           <instructions>
64             <Import-Package>org.opendaylight.controller.sal.utils,
65                             org.opendaylight.controller.containermanager,
66                             org.opendaylight.controller.northbound.commons,
67                             org.opendaylight.controller.northbound.commons.exception,
68                             org.opendaylight.controller.northbound.commons.utils,
69                             org.opendaylight.controller.networkconfig.neutron,
70                             org.eclipse.persistence.jaxb.rs,
71                             com.sun.jersey.spi.container.servlet,
72                             javax.ws.rs,
73                             javax.ws.rs.core,
74                             javax.xml.bind.annotation,
75                             javax.xml.bind,
76                             org.slf4j,
77                             !org.codehaus.enunciate.jaxrs</Import-Package>
78             <Web-ContextPath>/controller/nb/v2/neutron</Web-ContextPath>
79           </instructions>
80           <manifestLocation>${project.basedir}/src/main/resources/META-INF</manifestLocation>
81         </configuration>
82       </plugin>
83       <plugin>
84         <groupId>org.codehaus.enunciate</groupId>
85         <artifactId>maven-enunciate-plugin</artifactId>
86         <configuration>
87           <configFile>enunciate.xml</configFile>
88         </configuration>
89         <executions>
90           <execution>
91             <goals>
92               <goal>docs</goal>
93             </goals>
94           </execution>
95         </executions>
96       </plugin>
97     </plugins>
98   </build>
99   <scm>
100     <connection>scm:git:ssh://git.opendaylight.org:29418/controller.git</connection>
101     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
102     <tag>HEAD</tag>
103     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:Main</url>
104   </scm>
105
106   <distributionManagement>
107     <!-- OpenDayLight Released artifact -->
108     <repository>
109       <id>opendaylight-release</id>
110       <url>${nexusproxy}/repositories/${nexus.repository.release}/</url>
111     </repository>
112     <!-- OpenDayLight Snapshot artifact -->
113     <snapshotRepository>
114       <id>opendaylight-snapshot</id>
115       <url>${nexusproxy}/repositories/${nexus.repository.snapshot}/</url>
116     </snapshotRepository>
117     <!-- Site deployment -->
118     <site>
119       <id>website</id>
120       <url>${sitedeploy}</url>
121     </site>
122   </distributionManagement>
123 </project>