Merge "JUnit JAXB tests for Neutron Networks"
[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>com.sun.jersey</groupId>
35        <artifactId>jersey-json</artifactId>
36        <version>1.19</version>
37        <scope>test</scope>
38     </dependency>
39     <dependency>
40        <groupId>com.sun.jersey</groupId>
41        <artifactId>jersey-json</artifactId>
42        <version>1.19</version>
43        <scope>test</scope>
44     </dependency>
45   </dependencies>
46   <build>
47     <plugins>
48       <plugin>
49         <groupId>org.apache.felix</groupId>
50         <artifactId>maven-bundle-plugin</artifactId>
51         <extensions>true</extensions>
52         <configuration>
53           <instructions>
54             <Import-Package>*</Import-Package>
55           </instructions>
56           <manifestLocation>${project.basedir}/src/main/resources/META-INF</manifestLocation>
57         </configuration>
58       </plugin>
59     </plugins>
60   </build>
61   <scm>
62     <connection>scm:git:ssh://git.opendaylight.org:29418/neutron.git</connection>
63     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/neutron.git</developerConnection>
64     <tag>HEAD</tag>
65     <url>https://wiki.opendaylight.org/view/NeutronNorthBound:Main</url>
66   </scm>
67   <distributionManagement>
68     <!-- OpenDayLight Released artifact -->
69     <repository>
70       <id>opendaylight-release</id>
71       <url>${nexusproxy}/repositories/${nexus.repository.release}/</url>
72     </repository>
73     <!-- OpenDayLight Snapshot artifact -->
74     <snapshotRepository>
75       <id>opendaylight-snapshot</id>
76       <url>${nexusproxy}/repositories/${nexus.repository.snapshot}/</url>
77     </snapshotRepository>
78     <!-- Site deployment -->
79     <site>
80       <id>website</id>
81       <url>${sitedeploy}</url>
82     </site>
83   </distributionManagement>
84 </project>