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