Merge "Fixed publishDataChangeEvent in 2phase commit"
[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     <groupId>org.opendaylight.controller</groupId>
38     <artifactId>networkconfig.neutron.northbound</artifactId>
39     <version>0.4.2-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         </dependency>
93         <dependency>
94             <groupId>org.opendaylight.controller</groupId>
95             <artifactId>sal</artifactId>
96         </dependency>
97         <dependency>
98             <groupId>org.opendaylight.controller</groupId>
99             <artifactId>commons.northbound</artifactId>
100         </dependency>
101         <dependency>
102             <groupId>org.opendaylight.controller</groupId>
103             <artifactId>networkconfig.neutron</artifactId>
104         </dependency>
105         <dependency>
106             <groupId>org.codehaus.enunciate</groupId>
107             <artifactId>enunciate-core-annotations</artifactId>
108         </dependency>
109         <dependency>
110             <groupId>org.eclipse.persistence</groupId>
111             <artifactId>org.eclipse.persistence.moxy</artifactId>
112         </dependency>
113         <dependency>
114             <groupId>org.eclipse.persistence</groupId>
115             <artifactId>org.eclipse.persistence.core</artifactId>
116         </dependency>
117         <dependency>
118             <groupId>org.eclipse.persistence</groupId>
119             <artifactId>org.eclipse.persistence.antlr</artifactId>
120         </dependency>
121         <dependency>
122           <groupId>com.sun.jersey</groupId>
123           <artifactId>jersey-core</artifactId>
124         </dependency>
125     </dependencies>
126 </project>