Added scm and maven-release-plugin to pom.xml
[openflowjava.git] / openflow-protocol-it / pom.xml
1 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2          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.openflowjava</groupId>
6         <artifactId>openflow-protocol-parent</artifactId>
7         <version>0.1-SNAPSHOT</version>
8     </parent>
9     <artifactId>openflow-protocol-it</artifactId>
10     <packaging>bundle</packaging>
11     <name>Openflow Protocol Integration Test</name>
12     <scm>
13         <url>https://wiki.opendaylight.org/view/Openflow_Protocol_Library:Main</url>
14     </scm>
15     
16     <dependencies>
17         <dependency>
18             <groupId>${project.groupId}</groupId>
19             <artifactId>openflow-protocol-impl</artifactId>
20             <version>${project.version}</version>
21             <scope>test</scope>
22         </dependency>
23         <dependency>
24             <groupId>${project.groupId}</groupId>
25             <artifactId>simple-client</artifactId>
26             <version>${project.version}</version>
27             <scope>test</scope>
28         </dependency>
29         <dependency>
30             <groupId>junit</groupId>
31             <artifactId>junit</artifactId>
32             <scope>test</scope>
33         </dependency>
34         <dependency>
35             <groupId>org.slf4j</groupId>
36             <artifactId>slf4j-log4j12</artifactId>
37             <version>${slf4j.version}</version>
38         </dependency>
39     </dependencies>
40 </project>