[maven-release-plugin] prepare for next development iteration
[controller.git] / opendaylight / 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   <distributionManagement>
20     <!-- OpenDayLight Released artifact -->
21     <repository>
22       <id>opendaylight-release</id>
23       <url>${nexusproxy}/repositories/opendaylight.release/</url>
24     </repository>
25     <!-- OpenDayLight Snapshot artifact -->
26     <snapshotRepository>
27       <id>opendaylight-snapshot</id>
28       <url>${nexusproxy}/repositories/opendaylight.snapshot/</url>
29     </snapshotRepository>
30     <!-- Site deployment -->
31     <site>
32       <id>website</id>
33       <url>${sitedeploy}</url>
34     </site>
35   </distributionManagement>
36   <groupId>org.opendaylight.controller</groupId>
37   <artifactId>networkconfig.neutron</artifactId>
38   <version>0.4.2-SNAPSHOT</version>
39   <packaging>bundle</packaging>
40   <build>
41     <plugins>
42       <plugin>
43         <groupId>org.apache.felix</groupId>
44         <artifactId>maven-bundle-plugin</artifactId>
45         <version>${bundle.plugin.version}</version>
46         <extensions>true</extensions>
47         <configuration>
48           <instructions>
49             <Import-Package>
50               org.opendaylight.controller.configuration,
51               org.opendaylight.controller.clustering.services,
52               org.opendaylight.controller.sal.core,
53               org.opendaylight.controller.sal.utils,
54               org.apache.felix.dm,
55               org.apache.commons.net.util,
56               org.osgi.service.component,
57               org.slf4j,
58               javax.xml.bind.annotation
59             </Import-Package>
60           </instructions>
61           <manifestLocation>${project.basedir}/src/main/resources/META-INF</manifestLocation>
62         </configuration>
63       </plugin>
64     </plugins>
65   </build>
66   <dependencies>
67     <dependency>
68       <groupId>org.opendaylight.controller</groupId>
69       <artifactId>clustering.services</artifactId>
70     </dependency>
71     <dependency>
72       <groupId>org.opendaylight.controller</groupId>
73       <artifactId>configuration</artifactId>
74     </dependency>
75     <dependency>
76       <groupId>org.opendaylight.controller</groupId>
77       <artifactId>sal</artifactId>
78     </dependency>
79     <dependency>
80       <groupId>commons-net</groupId>
81       <artifactId>commons-net</artifactId>
82     </dependency>
83   </dependencies>
84 </project>