Merge "Take advantage of MultipartTransactionAware"
[controller.git] / opendaylight / northbound / networkconfiguration / neutron / pom.xml
1 <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">
2     <modelVersion>4.0.0</modelVersion>
3     <parent>
4         <groupId>org.opendaylight.controller</groupId>
5         <artifactId>commons.opendaylight</artifactId>
6         <version>1.4.2-SNAPSHOT</version>
7         <relativePath>../../../commons/opendaylight</relativePath>
8     </parent>
9     <properties>
10         <enunciate.version>1.26.2</enunciate.version>
11     </properties>
12   <scm>
13     <connection>scm:git:ssh://git.opendaylight.org:29418/controller.git</connection>
14     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
15     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:Main</url>
16     <tag>HEAD</tag>
17   </scm>
18
19     <distributionManagement>
20         <!-- OpenDayLight Released artifact -->
21         <repository>
22             <id>opendaylight-release</id>
23             <url>${nexusproxy}/repositories/${nexus.repository.release}/</url>
24         </repository>
25         <!-- OpenDayLight Snapshot artifact -->
26         <snapshotRepository>
27             <id>opendaylight-snapshot</id>
28             <url>${nexusproxy}/repositories/${nexus.repository.snapshot}/</url>
29         </snapshotRepository>
30         <!-- Site deployment -->
31         <site>
32             <id>website</id>
33             <url>${sitedeploy}</url>
34         </site>
35     </distributionManagement>
36     <artifactId>networkconfig.neutron.northbound</artifactId>
37     <version>0.4.2-SNAPSHOT</version>
38     <packaging>bundle</packaging>
39
40     <build>
41         <plugins>
42             <plugin>
43                 <groupId>org.codehaus.enunciate</groupId>
44                 <artifactId>maven-enunciate-plugin</artifactId>
45                 <configuration>
46             <configFile>enunciate.xml</configFile>
47           </configuration>
48           <executions>
49             <execution>
50               <goals>
51                 <goal>docs</goal>
52               </goals>
53             </execution>
54           </executions>
55             </plugin>
56             <plugin>
57                 <groupId>org.apache.felix</groupId>
58                 <artifactId>maven-bundle-plugin</artifactId>
59                 <version>2.3.6</version>
60                 <extensions>true</extensions>
61                 <configuration>
62                     <instructions>
63                         <Import-Package>
64                             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
78                         </Import-Package>
79                         <Web-ContextPath>/controller/nb/v2/neutron</Web-ContextPath>
80                     </instructions>
81                     <manifestLocation>${project.basedir}/src/main/resources/META-INF</manifestLocation>
82                 </configuration>
83             </plugin>
84         </plugins>
85     </build>
86     <dependencies>
87         <dependency>
88             <groupId>org.opendaylight.controller</groupId>
89             <artifactId>containermanager</artifactId>
90         </dependency>
91         <dependency>
92             <groupId>org.opendaylight.controller</groupId>
93             <artifactId>sal</artifactId>
94         </dependency>
95         <dependency>
96             <groupId>org.opendaylight.controller</groupId>
97             <artifactId>commons.northbound</artifactId>
98         </dependency>
99         <dependency>
100             <groupId>org.opendaylight.controller</groupId>
101             <artifactId>networkconfig.neutron</artifactId>
102         </dependency>
103         <dependency>
104             <groupId>org.codehaus.enunciate</groupId>
105             <artifactId>enunciate-core-annotations</artifactId>
106         </dependency>
107         <dependency>
108             <groupId>org.eclipse.persistence</groupId>
109             <artifactId>org.eclipse.persistence.moxy</artifactId>
110         </dependency>
111         <dependency>
112             <groupId>org.eclipse.persistence</groupId>
113             <artifactId>org.eclipse.persistence.core</artifactId>
114         </dependency>
115         <dependency>
116             <groupId>org.eclipse.persistence</groupId>
117             <artifactId>org.eclipse.persistence.antlr</artifactId>
118         </dependency>
119         <dependency>
120           <groupId>com.sun.jersey</groupId>
121           <artifactId>jersey-core</artifactId>
122         </dependency>
123     </dependencies>
124 </project>