Bump versions by x.(y+1).z for next dev cycle
[openflowplugin.git] / libraries / liblldp / 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
5   <parent>
6     <groupId>org.opendaylight.openflowplugin</groupId>
7     <artifactId>libraries</artifactId>
8     <version>0.8.0-SNAPSHOT</version>
9   </parent>
10
11   <groupId>org.opendaylight.openflowplugin.libraries</groupId>
12   <artifactId>liblldp</artifactId>
13   <packaging>bundle</packaging>
14
15   <dependencies>
16     <dependency>
17       <groupId>junit</groupId>
18       <artifactId>junit</artifactId>
19     </dependency>
20     <dependency>
21       <groupId>org.apache.commons</groupId>
22       <artifactId>commons-lang3</artifactId>
23     </dependency>
24     <dependency>
25       <groupId>org.slf4j</groupId>
26       <artifactId>slf4j-api</artifactId>
27     </dependency>
28     <dependency>
29       <groupId>org.slf4j</groupId>
30       <artifactId>slf4j-log4j12</artifactId>
31       <scope>test</scope>
32     </dependency>
33     <dependency>
34       <groupId>com.google.guava</groupId>
35       <artifactId>guava</artifactId>
36     </dependency>
37   </dependencies>
38
39   <build>
40     <plugins>
41       <plugin>
42         <groupId>org.apache.felix</groupId>
43         <artifactId>maven-bundle-plugin</artifactId>
44         <extensions>true</extensions>
45         <configuration>
46           <instructions>
47             <Export-Package>
48               org.opendaylight.openflowplugin.libraries.liblldp</Export-Package>
49           </instructions>
50         </configuration>
51       </plugin>
52     </plugins>
53   </build>
54
55   <scm>
56     <connection>scm:git:ssh://git.opendaylight.org:29418/openflowplugin.git</connection>
57     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/openflowplugin.git</developerConnection>
58     <url>https://wiki.opendaylight.org/view/OpenDaylight_OpenFlow_Plugin:Main</url>
59     <tag>HEAD</tag>
60   </scm>
61 </project>