Bump project to 2.0.0 and fix feature deployment
[transportpce.git] / servicehandler / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- vi: set et smarttab sw=4 tabstop=4: -->
3 <!--
4 Copyright © 2017 Orange and others. All rights reserved.
5
6 This program and the accompanying materials are made available under the
7 terms of the Eclipse Public License v1.0 which accompanies this distribution,
8 and is available at http://www.eclipse.org/legal/epl-v10.html
9
10 Author: Martial Coulibaly <martial.coulibaly@gfi.com> on behalf of Orange
11 -->
12 <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">
13   <modelVersion>4.0.0</modelVersion>
14
15   <parent>
16     <groupId>org.opendaylight.mdsal</groupId>
17     <artifactId>binding-parent</artifactId>
18     <version>5.0.9</version>
19     <relativePath/>
20   </parent>
21
22   <groupId>org.opendaylight.transportpce</groupId>
23   <artifactId>transportpce-servicehandler</artifactId>
24   <version>2.0.0-SNAPSHOT</version>
25   <packaging>bundle</packaging>
26
27   <dependencies>
28     <dependency>
29       <groupId>${project.groupId}</groupId>
30       <artifactId>transportpce-pce</artifactId>
31       <version>${project.version}</version>
32     </dependency>
33
34     <!-- Testing Dependencies -->
35     <dependency>
36       <groupId>${project.groupId}</groupId>
37       <artifactId>test-common</artifactId>
38       <version>${project.version}</version>
39       <scope>test</scope>
40     </dependency>
41     <dependency>
42       <groupId>${project.groupId}</groupId>
43       <artifactId>transportpce-renderer</artifactId>
44       <version>${project.version}</version>
45     </dependency>
46   </dependencies>
47
48 <!-- checkstyle and spotbugds enforced by odlparent since Magnesium -->
49   <properties>
50     <!-- odlparent.checkstyle.enforce>false</odlparent.checkstyle.enforce -->
51     <odlparent.spotbugs.enforce>false</odlparent.spotbugs.enforce>
52   </properties>
53
54 </project>