Update pom dependencies
[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.1</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
25   <properties>
26     <mdsal.version>1.10.1-SNAPSHOT</mdsal.version>
27     <yangtools.version>3.0.4</yangtools.version>
28     <netconf.version>1.7.1-SNAPSHOT</netconf.version>
29     <restconf.version>1.10.1-SNAPSHOT</restconf.version>
30     <configfile.directory>etc/opendaylight/karaf</configfile.directory>
31   </properties>
32
33   <name>OpenDaylight :: transportpce</name>
34
35   <dependencies>
36     <dependency>
37       <groupId>org.opendaylight.netconf</groupId>
38       <artifactId>odl-restconf-all</artifactId>
39       <version>${restconf.version}</version>
40       <classifier>features</classifier>
41       <type>xml</type>
42     </dependency>
43     <dependency>
44       <groupId>org.opendaylight.controller</groupId>
45       <artifactId>odl-mdsal-broker</artifactId>
46       <version>${mdsal.version}</version>
47       <classifier>features</classifier>
48       <type>xml</type>
49     </dependency>
50     <dependency>
51       <groupId>org.opendaylight.netconf</groupId>
52       <artifactId>odl-netconf-all</artifactId>
53       <version>${netconf.version}</version>
54       <classifier>features</classifier>
55       <type>xml</type>
56     </dependency>
57     <dependency>
58       <groupId>org.opendaylight.netconf</groupId>
59       <artifactId>odl-netconf-connector-all</artifactId>
60       <version>${netconf.version}</version>
61       <classifier>features</classifier>
62       <type>xml</type>
63     </dependency>
64     <dependency>
65       <groupId>org.opendaylight.netconf</groupId>
66       <artifactId>netconf-console</artifactId>
67       <version>${netconf.version}</version>
68     </dependency>
69     <dependency>
70       <groupId>org.opendaylight.netconf</groupId>
71       <artifactId>odl-netconf-topology</artifactId>
72       <version>${netconf.version}</version>
73       <classifier>features</classifier>
74       <type>xml</type>
75     </dependency>
76     <dependency>
77       <groupId>org.opendaylight.transportpce</groupId>
78       <artifactId>odl-transportpce-api</artifactId>
79       <version>${project.version}</version>
80       <classifier>features</classifier>
81       <type>xml</type>
82     </dependency>
83     <dependency>
84       <groupId>org.opendaylight.transportpce</groupId>
85       <artifactId>odl-transportpce-ordmodels</artifactId>
86       <version>${project.version}</version>
87       <classifier>features</classifier>
88       <type>xml</type>
89     </dependency>
90     <!--dependency>
91       <groupId>org.opendaylight.transportpce</groupId>
92       <artifactId>odl-transportpce-stubmodels</artifactId>
93       <version>${project.version}</version>
94       <classifier>features</classifier>
95       <type>xml</type>
96     </dependency-->
97     <dependency>
98       <groupId>org.opendaylight.transportpce</groupId>
99       <artifactId>transportpce-common</artifactId>
100       <version>${project.version}</version>
101     </dependency>
102     <dependency>
103       <groupId>org.opendaylight.transportpce</groupId>
104       <artifactId>transportpce-networkmodel</artifactId>
105       <version>${project.version}</version>
106     </dependency>
107     <dependency>
108       <groupId>org.opendaylight.transportpce</groupId>
109       <artifactId>transportpce-pce</artifactId>
110       <version>${project.version}</version>
111     </dependency>
112     <dependency>
113       <groupId>org.opendaylight.transportpce</groupId>
114       <artifactId>transportpce-renderer</artifactId>
115       <version>${project.version}</version>
116     </dependency>
117     <dependency>
118       <groupId>org.opendaylight.transportpce</groupId>
119       <artifactId>transportpce-olm</artifactId>
120       <version>${project.version}</version>
121     </dependency>
122     <dependency>
123       <groupId>org.opendaylight.transportpce</groupId>
124       <artifactId>transportpce-servicehandler</artifactId>
125       <version>${project.version}</version>
126     </dependency>
127     <!--dependency>
128       <groupId>org.opendaylight.transportpce</groupId>
129       <artifactId>transportpce-stubpce</artifactId>
130       <version>${project.version}</version>
131     </dependency>
132     <dependency>
133       <groupId>org.opendaylight.transportpce</groupId>
134       <artifactId>transportpce-stubrenderer</artifactId>
135       <version>${project.version}</version>
136     </dependency-->
137   </dependencies>
138
139 <!-- skipping test since this is an umbrella project / folder -->
140   <build>
141     <plugins>
142       <plugin>
143         <groupId>org.apache.maven.plugins</groupId>
144         <artifactId>maven-surefire-plugin</artifactId>
145         <version>2.18.1</version>
146         <configuration>
147           <skipTests>true</skipTests>
148         </configuration>
149       </plugin>
150     </plugins>
151   </build>
152
153
154 </project>