Miscelanous fixes after the release of the artifacts
[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             </plugin>
48             <plugin>
49                 <groupId>org.apache.felix</groupId>
50                 <artifactId>maven-bundle-plugin</artifactId>
51                 <version>2.3.6</version>
52                 <extensions>true</extensions>
53                 <configuration>
54                     <instructions>
55                         <Import-Package>
56                             org.opendaylight.controller.sal.utils,
57                             org.opendaylight.controller.containermanager,
58                             org.opendaylight.controller.northbound.commons,
59                             org.opendaylight.controller.northbound.commons.exception,
60                             org.opendaylight.controller.northbound.commons.utils,
61                             org.opendaylight.controller.networkconfig.neutron,
62                             org.eclipse.persistence.jaxb.rs,
63                             com.sun.jersey.spi.container.servlet,
64                             javax.ws.rs,
65                             javax.ws.rs.core,
66                             javax.xml.bind.annotation,
67                             javax.xml.bind,
68                             org.slf4j,
69                             !org.codehaus.enunciate.jaxrs
70                         </Import-Package>
71                         <Web-ContextPath>/controller/nb/v2/neutron</Web-ContextPath>
72                     </instructions>
73                     <manifestLocation>${project.basedir}/src/main/resources/META-INF</manifestLocation>
74                 </configuration>
75             </plugin>
76         </plugins>
77     </build>
78     <dependencies>
79         <dependency>
80             <groupId>org.opendaylight.controller</groupId>
81             <artifactId>containermanager</artifactId>
82             <version>0.5.1-SNAPSHOT</version>
83         </dependency>
84         <dependency>
85             <groupId>org.opendaylight.controller</groupId>
86             <artifactId>sal</artifactId>
87             <version>0.5.1-SNAPSHOT</version>
88         </dependency>
89         <dependency>
90             <groupId>org.opendaylight.controller</groupId>
91             <artifactId>commons.northbound</artifactId>
92             <version>0.4.1-SNAPSHOT</version>
93         </dependency>
94         <dependency>
95             <groupId>org.opendaylight.controller</groupId>
96             <artifactId>networkconfig.neutron</artifactId>
97             <version>0.4.1-SNAPSHOT</version>
98         </dependency>
99         <dependency>
100             <groupId>org.codehaus.enunciate</groupId>
101             <artifactId>enunciate-core-annotations</artifactId>
102             <version>${enunciate.version}</version>
103         </dependency>
104         <dependency>
105             <groupId>org.eclipse.persistence</groupId>
106             <artifactId>org.eclipse.persistence.moxy</artifactId>
107             <version>2.5.0</version>
108         </dependency>
109         <dependency>
110             <groupId>org.eclipse.persistence</groupId>
111             <artifactId>org.eclipse.persistence.core</artifactId>
112             <version>2.5.0</version>
113         </dependency>
114         <dependency>
115             <groupId>org.eclipse.persistence</groupId>
116             <artifactId>org.eclipse.persistence.antlr</artifactId>
117             <version>2.5.0</version>
118         </dependency>
119     </dependencies>
120 </project>