Release transportpce
[transportpce.git] / features / odl-transportpce / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 Copyright © 2016 Orange and others. All rights reserved.
4
5 This program and the accompanying materials are made available under the
6 terms of the Eclipse Public License v1.0 which accompanies this distribution,
7 and is available at http://www.eclipse.org/legal/epl-v10.html INTERNAL
8 -->
9 <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">
10   <modelVersion>4.0.0</modelVersion>
11
12   <parent>
13     <groupId>org.opendaylight.odlparent</groupId>
14     <artifactId>single-feature-parent</artifactId>
15     <version>5.0.11</version>
16     <relativePath/>
17   </parent>
18
19   <groupId>org.opendaylight.transportpce</groupId>
20   <artifactId>odl-transportpce</artifactId>
21   <version>0.4.5</version>
22   <packaging>feature</packaging>
23
24   <name>OpenDaylight :: transportpce</name>
25
26   <properties>
27     <mdsal.version>1.10.4</mdsal.version>
28     <netconf.version>1.7.4</netconf.version>
29     <restconf.version>1.10.4</restconf.version>
30     <configfile.directory>etc/opendaylight/karaf</configfile.directory>
31   </properties>
32
33   <dependencies>
34     <dependency>
35       <groupId>org.opendaylight.transportpce</groupId>
36       <artifactId>odl-transportpce-api</artifactId>
37       <version>${project.version}</version>
38       <classifier>features</classifier>
39       <type>xml</type>
40     </dependency>
41     <dependency>
42       <groupId>org.opendaylight.transportpce</groupId>
43       <artifactId>transportpce-common</artifactId>
44       <version>${project.version}</version>
45     </dependency>
46     <dependency>
47       <groupId>org.opendaylight.transportpce</groupId>
48       <artifactId>transportpce-renderer</artifactId>
49       <version>${project.version}</version>
50     </dependency>
51     <dependency>
52       <groupId>org.opendaylight.transportpce</groupId>
53       <artifactId>transportpce-networkmodel</artifactId>
54       <version>${project.version}</version>
55     </dependency>
56     <dependency>
57       <groupId>org.opendaylight.transportpce</groupId>
58       <artifactId>transportpce-olm</artifactId>
59       <version>${project.version}</version>
60     </dependency>
61     <dependency>
62       <groupId>org.opendaylight.transportpce</groupId>
63       <artifactId>transportpce-pce</artifactId>
64       <version>${project.version}</version>
65     </dependency>
66     <dependency>
67       <groupId>org.opendaylight.transportpce</groupId>
68       <artifactId>transportpce-servicehandler</artifactId>
69       <version>${project.version}</version>
70     </dependency>
71
72     <dependency>
73       <groupId>org.opendaylight.controller</groupId>
74       <artifactId>odl-mdsal-broker</artifactId>
75       <version>${mdsal.version}</version>
76       <classifier>features</classifier>
77       <type>xml</type>
78     </dependency>
79     <dependency>
80       <groupId>org.opendaylight.netconf</groupId>
81       <artifactId>odl-restconf-all</artifactId>
82       <version>${restconf.version}</version>
83       <classifier>features</classifier>
84       <type>xml</type>
85     </dependency>
86     <dependency>
87       <groupId>org.opendaylight.netconf</groupId>
88       <artifactId>odl-netconf-all</artifactId>
89       <version>${netconf.version}</version>
90       <classifier>features</classifier>
91       <type>xml</type>
92     </dependency>
93     <dependency>
94       <groupId>org.opendaylight.netconf</groupId>
95       <artifactId>odl-netconf-connector-all</artifactId>
96       <version>${netconf.version}</version>
97       <classifier>features</classifier>
98       <type>xml</type>
99     </dependency>
100   </dependencies>
101
102 <!-- skipping test since this is an umbrella project / folder -->
103   <build>
104     <plugins>
105       <plugin>
106         <groupId>org.apache.maven.plugins</groupId>
107         <artifactId>maven-surefire-plugin</artifactId>
108         <version>2.18.1</version>
109         <configuration>
110           <skipTests>true</skipTests>
111         </configuration>
112       </plugin>
113     </plugins>
114   </build>
115 </project>