Bump versions by x.y.(z+1)
[dlux.git] / loader / api / 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.dlux</groupId>
6     <artifactId>dlux-parent</artifactId>
7     <version>0.5.1-SNAPSHOT</version>
8     <relativePath>../../</relativePath>
9   </parent>
10   <artifactId>loader</artifactId>
11   <packaging>bundle</packaging>
12   <dependencies>
13     <dependency>
14       <groupId>org.osgi</groupId>
15       <artifactId>org.osgi.core</artifactId>
16     </dependency>
17     <dependency>
18       <groupId>org.osgi</groupId>
19       <artifactId>org.osgi.compendium</artifactId>
20     </dependency>
21     <dependency>
22       <groupId>org.slf4j</groupId>
23       <artifactId>slf4j-api</artifactId>
24     </dependency>
25     <dependency>
26         <groupId>com.google.guava</groupId>
27         <artifactId>guava</artifactId>
28     </dependency>
29   </dependencies>
30  <build>
31     <plugins>
32       <plugin>
33         <groupId>org.apache.felix</groupId>
34         <artifactId>maven-bundle-plugin</artifactId>
35         <extensions>true</extensions>
36         <configuration>
37           <instructions>
38             <Import-Package>*</Import-Package>
39             <Export-Package>org.opendaylight.dlux.loader</Export-Package>
40           </instructions>
41         </configuration>
42       </plugin>
43     </plugins>
44   </build>
45   <scm>
46     <connection>scm:git:ssh://git.opendaylight.org:29418/dlux.git</connection>
47     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/dlux.git</developerConnection>
48     <tag>HEAD</tag>
49     <url>https://wiki.opendaylight.org/view/OpenDaylight_dlux:Main</url>
50   </scm>
51 </project>