Bump to odlparent-5.0.5/yangtools-3.0.9/mdsal-4.0.11
[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.5</version>
16     <relativePath/>
17   </parent>
18
19   <groupId>org.opendaylight.transportpce</groupId>
20   <artifactId>odl-transportpce</artifactId>
21   <version>0.5.0-SNAPSHOT</version>
22   <packaging>feature</packaging>
23
24   <name>OpenDaylight :: transportpce</name>
25
26   <properties>
27     <mdsal.version>1.10.2-SNAPSHOT</mdsal.version>
28     <netconf.version>1.7.2-SNAPSHOT</netconf.version>
29     <restconf.version>1.10.2-SNAPSHOT</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     <dependency>
72       <groupId>org.opendaylight.transportpce</groupId>
73       <artifactId>transportpce-tapimodels</artifactId>
74       <version>${project.version}</version>
75     </dependency>
76     <dependency>
77       <groupId>org.opendaylight.transportpce</groupId>
78       <artifactId>transportpce-tapi</artifactId>
79       <version>${project.version}</version>
80     </dependency>
81
82     <dependency>
83       <groupId>org.opendaylight.controller</groupId>
84       <artifactId>odl-mdsal-broker</artifactId>
85       <version>${mdsal.version}</version>
86       <classifier>features</classifier>
87       <type>xml</type>
88     </dependency>
89     <dependency>
90       <groupId>org.opendaylight.netconf</groupId>
91       <artifactId>odl-restconf-all</artifactId>
92       <version>${restconf.version}</version>
93       <classifier>features</classifier>
94       <type>xml</type>
95     </dependency>
96     <dependency>
97       <groupId>org.opendaylight.netconf</groupId>
98       <artifactId>odl-netconf-all</artifactId>
99       <version>${netconf.version}</version>
100       <classifier>features</classifier>
101       <type>xml</type>
102     </dependency>
103     <dependency>
104       <groupId>org.opendaylight.netconf</groupId>
105       <artifactId>odl-netconf-connector-all</artifactId>
106       <version>${netconf.version}</version>
107       <classifier>features</classifier>
108       <type>xml</type>
109     </dependency>
110   </dependencies>
111
112 <!-- skipping test since this is an umbrella project / folder -->
113   <build>
114     <plugins>
115       <plugin>
116         <groupId>org.apache.maven.plugins</groupId>
117         <artifactId>maven-surefire-plugin</artifactId>
118         <version>2.18.1</version>
119         <configuration>
120           <skipTests>true</skipTests>
121         </configuration>
122       </plugin>
123     </plugins>
124   </build>
125 </project>