Bump versions by 0.1.0 for next dev cycle
[neutron.git] / transcriber / 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.controller</groupId>
6     <artifactId>config-parent</artifactId>
7     <version>0.5.0-SNAPSHOT</version>
8     <relativePath/>
9   </parent>
10   <groupId>org.opendaylight.neutron</groupId>
11   <artifactId>transcriber</artifactId>
12   <version>0.7.0-SNAPSHOT</version>
13   <packaging>bundle</packaging>
14   <properties>
15     <checkstyle.location>${project.parent.basedir}/src/main/resources</checkstyle.location>
16     <sonar.jacoco.itReportPath>../target/jacoco-it.exec</sonar.jacoco.itReportPath>
17   </properties>
18   <build>
19     <plugins>
20       <plugin>
21         <groupId>org.apache.felix</groupId>
22         <artifactId>maven-bundle-plugin</artifactId>
23         <extensions>true</extensions>
24         <configuration>
25           <instructions>
26             <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
27           </instructions>
28           <manifestLocation>${project.build.directory}/META-INF</manifestLocation>
29         </configuration>
30       </plugin>
31     </plugins>
32   </build>
33   <dependencies>
34     <dependency>
35       <groupId>org.opendaylight.neutron</groupId>
36       <artifactId>neutron-spi</artifactId>
37       <version>${project.version}</version>
38     </dependency>
39     <dependency>
40       <groupId>org.opendaylight.neutron</groupId>
41       <artifactId>model</artifactId>
42       <version>${project.version}</version>
43     </dependency>
44     <dependency>
45       <groupId>org.osgi</groupId>
46       <artifactId>org.osgi.core</artifactId>
47     </dependency>
48   </dependencies>
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 </project>