Bump dependencies to newer Sodium SR2 dev versions
[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.4</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.2-SNAPSHOT</mdsal.version>
27     <yangtools.version>3.0.7</yangtools.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   <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>transportpce-common</artifactId>
93       <version>${project.version}</version>
94     </dependency>
95     <dependency>
96       <groupId>org.opendaylight.transportpce</groupId>
97       <artifactId>transportpce-networkmodel</artifactId>
98       <version>${project.version}</version>
99     </dependency>
100     <dependency>
101       <groupId>org.opendaylight.transportpce</groupId>
102       <artifactId>transportpce-pce</artifactId>
103       <version>${project.version}</version>
104     </dependency>
105     <dependency>
106       <groupId>org.opendaylight.transportpce</groupId>
107       <artifactId>transportpce-renderer</artifactId>
108       <version>${project.version}</version>
109     </dependency>
110     <dependency>
111       <groupId>org.opendaylight.transportpce</groupId>
112       <artifactId>transportpce-olm</artifactId>
113       <version>${project.version}</version>
114     </dependency>
115     <dependency>
116       <groupId>org.opendaylight.transportpce</groupId>
117       <artifactId>transportpce-servicehandler</artifactId>
118       <version>${project.version}</version>
119     </dependency>
120     <dependency>
121       <groupId>org.opendaylight.transportpce</groupId>
122       <artifactId>transportpce-tapimodels</artifactId>
123       <version>${project.version}</version>
124     </dependency>
125     <dependency>
126       <groupId>org.opendaylight.transportpce</groupId>
127       <artifactId>transportpce-tapi</artifactId>
128       <version>${project.version}</version>
129     </dependency>
130   </dependencies>
131
132 <!-- skipping test since this is an umbrella project / folder -->
133   <build>
134     <plugins>
135       <plugin>
136         <groupId>org.apache.maven.plugins</groupId>
137         <artifactId>maven-surefire-plugin</artifactId>
138         <version>2.18.1</version>
139         <configuration>
140           <skipTests>true</skipTests>
141         </configuration>
142       </plugin>
143     </plugins>
144   </build>
145
146
147 </project>