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