Merge "Add new groupId to pom.xml files"
[neutron.git] / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <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">
3   <modelVersion>4.0.0</modelVersion>
4   <parent>
5     <groupId>org.opendaylight.controller</groupId>
6     <artifactId>commons.opendaylight</artifactId>
7     <version>1.5.0-SNAPSHOT</version>
8     <relativePath>../../commons/opendaylight</relativePath>
9   </parent>
10   <groupId>org.opendaylight.neutron</groupId>
11   <artifactId>networkconfig.neutron</artifactId>
12   <version>0.5.0-SNAPSHOT</version>
13   <packaging>bundle</packaging>
14   <dependencies>
15     <dependency>
16       <groupId>commons-net</groupId>
17       <artifactId>commons-net</artifactId>
18     </dependency>
19     <dependency>
20       <groupId>org.osgi</groupId>
21       <artifactId>org.osgi.core</artifactId>
22     </dependency>
23     <dependency>
24       <groupId>org.slf4j</groupId>
25       <artifactId>slf4j-api</artifactId>
26     </dependency>
27   </dependencies>
28   <build>
29     <plugins>
30       <plugin>
31         <groupId>org.apache.felix</groupId>
32         <artifactId>maven-bundle-plugin</artifactId>
33         <extensions>true</extensions>
34         <configuration>
35           <instructions>
36             <Import-Package>*</Import-Package>
37           </instructions>
38           <manifestLocation>${project.basedir}/src/main/resources/META-INF</manifestLocation>
39         </configuration>
40       </plugin>
41     </plugins>
42   </build>
43   <scm>
44     <connection>scm:git:ssh://git.opendaylight.org:29418/controller.git</connection>
45     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
46     <tag>HEAD</tag>
47     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:Main</url>
48   </scm>
49   <distributionManagement>
50     <!-- OpenDayLight Released artifact -->
51     <repository>
52       <id>opendaylight-release</id>
53       <url>${nexusproxy}/repositories/${nexus.repository.release}/</url>
54     </repository>
55     <!-- OpenDayLight Snapshot artifact -->
56     <snapshotRepository>
57       <id>opendaylight-snapshot</id>
58       <url>${nexusproxy}/repositories/${nexus.repository.snapshot}/</url>
59     </snapshotRepository>
60     <!-- Site deployment -->
61     <site>
62       <id>website</id>
63       <url>${sitedeploy}</url>
64     </site>
65   </distributionManagement>
66 </project>