Merge "Fix typo in match types yang model"
[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         <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     <artifactId>networkconfig.neutron.northbound</artifactId>
38     <version>0.4.2-SNAPSHOT</version>
39     <packaging>bundle</packaging>
40
41     <build>
42         <plugins>
43             <plugin>
44                 <groupId>org.codehaus.enunciate</groupId>
45                 <artifactId>maven-enunciate-plugin</artifactId>
46                 <configuration>
47             <configFile>enunciate.xml</configFile>
48           </configuration>
49           <executions>
50             <execution>
51               <goals>
52                 <goal>docs</goal>
53               </goals>
54             </execution>
55           </executions>
56             </plugin>
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>
65                             org.opendaylight.controller.sal.utils,
66                             org.opendaylight.controller.containermanager,
67                             org.opendaylight.controller.northbound.commons,
68                             org.opendaylight.controller.northbound.commons.exception,
69                             org.opendaylight.controller.northbound.commons.utils,
70                             org.opendaylight.controller.networkconfig.neutron,
71                             org.eclipse.persistence.jaxb.rs,
72                             com.sun.jersey.spi.container.servlet,
73                             javax.ws.rs,
74                             javax.ws.rs.core,
75                             javax.xml.bind.annotation,
76                             javax.xml.bind,
77                             org.slf4j,
78                             !org.codehaus.enunciate.jaxrs
79                         </Import-Package>
80                         <Web-ContextPath>/controller/nb/v2/neutron</Web-ContextPath>
81                     </instructions>
82                     <manifestLocation>${project.basedir}/src/main/resources/META-INF</manifestLocation>
83                 </configuration>
84             </plugin>
85         </plugins>
86     </build>
87     <dependencies>
88         <dependency>
89             <groupId>org.opendaylight.controller</groupId>
90             <artifactId>containermanager</artifactId>
91         </dependency>
92         <dependency>
93             <groupId>org.opendaylight.controller</groupId>
94             <artifactId>sal</artifactId>
95         </dependency>
96         <dependency>
97             <groupId>org.opendaylight.controller</groupId>
98             <artifactId>commons.northbound</artifactId>
99         </dependency>
100         <dependency>
101             <groupId>org.opendaylight.controller</groupId>
102             <artifactId>networkconfig.neutron</artifactId>
103         </dependency>
104         <dependency>
105             <groupId>org.codehaus.enunciate</groupId>
106             <artifactId>enunciate-core-annotations</artifactId>
107         </dependency>
108         <dependency>
109             <groupId>org.eclipse.persistence</groupId>
110             <artifactId>org.eclipse.persistence.moxy</artifactId>
111         </dependency>
112         <dependency>
113             <groupId>org.eclipse.persistence</groupId>
114             <artifactId>org.eclipse.persistence.core</artifactId>
115         </dependency>
116         <dependency>
117             <groupId>org.eclipse.persistence</groupId>
118             <artifactId>org.eclipse.persistence.antlr</artifactId>
119         </dependency>
120         <dependency>
121           <groupId>com.sun.jersey</groupId>
122           <artifactId>jersey-core</artifactId>
123         </dependency>
124     </dependencies>
125 </project>