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