fix for bug 2928
[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     <dependency>
29       <groupId>junit</groupId>
30       <artifactId>junit</artifactId>
31       <scope>test</scope>
32     </dependency>
33     <dependency>
34       <groupId>org.eclipse.persistence</groupId>
35       <artifactId>org.eclipse.persistence.antlr</artifactId>
36       <version>2.5.2</version>
37       <scope>test</scope>
38     </dependency>
39     <dependency>
40       <groupId>org.eclipse.persistence</groupId>
41       <artifactId>org.eclipse.persistence.core</artifactId>
42       <version>2.5.2</version>
43       <scope>test</scope>
44     </dependency>
45     <dependency>
46        <groupId>org.eclipse.persistence</groupId>
47        <artifactId>org.eclipse.persistence.moxy</artifactId>
48        <version>2.5.2</version>
49        <scope>test</scope>
50     </dependency>
51   </dependencies>
52   <build>
53     <plugins>
54       <plugin>
55         <groupId>org.apache.felix</groupId>
56         <artifactId>maven-bundle-plugin</artifactId>
57         <extensions>true</extensions>
58         <configuration>
59           <instructions>
60             <Import-Package>*</Import-Package>
61           </instructions>
62           <manifestLocation>${project.basedir}/src/main/resources/META-INF</manifestLocation>
63         </configuration>
64       </plugin>
65     </plugins>
66   </build>
67   <scm>
68     <connection>scm:git:ssh://git.opendaylight.org:29418/neutron.git</connection>
69     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/neutron.git</developerConnection>
70     <tag>HEAD</tag>
71     <url>https://wiki.opendaylight.org/view/NeutronNorthBound:Main</url>
72   </scm>
73   <distributionManagement>
74     <!-- OpenDayLight Released artifact -->
75     <repository>
76       <id>opendaylight-release</id>
77       <url>${nexusproxy}/repositories/${nexus.repository.release}/</url>
78     </repository>
79     <!-- OpenDayLight Snapshot artifact -->
80     <snapshotRepository>
81       <id>opendaylight-snapshot</id>
82       <url>${nexusproxy}/repositories/${nexus.repository.snapshot}/</url>
83     </snapshotRepository>
84     <!-- Site deployment -->
85     <site>
86       <id>website</id>
87       <url>${sitedeploy}</url>
88     </site>
89   </distributionManagement>
90 </project>