Merge "Marking of FWaaS classes and interfaces with as deprecated."
[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   </dependencies>
40   <build>
41     <plugins>
42       <plugin>
43         <groupId>org.apache.felix</groupId>
44         <artifactId>maven-bundle-plugin</artifactId>
45         <extensions>true</extensions>
46         <configuration>
47           <instructions>
48             <Import-Package>*</Import-Package>
49           </instructions>
50           <manifestLocation>${project.basedir}/src/main/resources/META-INF</manifestLocation>
51         </configuration>
52       </plugin>
53     </plugins>
54   </build>
55   <scm>
56     <connection>scm:git:ssh://git.opendaylight.org:29418/neutron.git</connection>
57     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/neutron.git</developerConnection>
58     <tag>HEAD</tag>
59     <url>https://wiki.opendaylight.org/view/NeutronNorthBound:Main</url>
60   </scm>
61   <distributionManagement>
62     <!-- OpenDayLight Released artifact -->
63     <repository>
64       <id>opendaylight-release</id>
65       <url>${nexusproxy}/repositories/${nexus.repository.release}/</url>
66     </repository>
67     <!-- OpenDayLight Snapshot artifact -->
68     <snapshotRepository>
69       <id>opendaylight-snapshot</id>
70       <url>${nexusproxy}/repositories/${nexus.repository.snapshot}/</url>
71     </snapshotRepository>
72     <!-- Site deployment -->
73     <site>
74       <id>website</id>
75       <url>${sitedeploy}</url>
76     </site>
77   </distributionManagement>
78 </project>