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