Bump upstream dependencies to Cl-SR1
[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>11.0.3</version>
16     <relativePath/>
17   </parent>
18
19   <groupId>org.opendaylight.transportpce</groupId>
20   <artifactId>odl-transportpce</artifactId>
21   <version>7.0.0-SNAPSHOT</version>
22   <packaging>feature</packaging>
23   <name>OpenDaylight :: transportpce</name>
24
25   <properties>
26     <netconf.version>4.0.4</netconf.version>
27     <transportpce.models.version>17.1.0-SNAPSHOT</transportpce.models.version>
28     <configfile.directory>etc/opendaylight/karaf</configfile.directory>
29   </properties>
30
31   <dependencyManagement>
32     <dependencies>
33       <dependency>
34         <groupId>org.opendaylight.netconf</groupId>
35         <artifactId>netconf-artifacts</artifactId>
36         <version>${netconf.version}</version>
37         <type>pom</type>
38         <scope>import</scope>
39       </dependency>
40     </dependencies>
41   </dependencyManagement>
42
43   <dependencies>
44     <dependency>
45       <groupId>org.opendaylight.transportpce.models</groupId>
46       <artifactId>odl-openroadm-models</artifactId>
47       <version>${transportpce.models.version}</version>
48       <classifier>features</classifier>
49       <type>xml</type>
50     </dependency>
51     <dependency>
52       <groupId>org.opendaylight.transportpce</groupId>
53       <artifactId>transportpce-api</artifactId>
54       <version>${project.version}</version>
55     </dependency>
56     <dependency>
57       <groupId>org.opendaylight.transportpce</groupId>
58       <artifactId>transportpce-common</artifactId>
59       <version>${project.version}</version>
60     </dependency>
61     <dependency>
62       <groupId>org.opendaylight.transportpce</groupId>
63       <artifactId>transportpce-renderer</artifactId>
64       <version>${project.version}</version>
65     </dependency>
66     <dependency>
67       <groupId>org.opendaylight.transportpce</groupId>
68       <artifactId>transportpce-networkmodel</artifactId>
69       <version>${project.version}</version>
70     </dependency>
71     <dependency>
72       <groupId>org.opendaylight.transportpce</groupId>
73       <artifactId>transportpce-olm</artifactId>
74       <version>${project.version}</version>
75     </dependency>
76     <dependency>
77       <groupId>org.opendaylight.transportpce</groupId>
78       <artifactId>transportpce-pce</artifactId>
79       <version>${project.version}</version>
80     </dependency>
81     <dependency>
82       <groupId>org.opendaylight.transportpce</groupId>
83       <artifactId>transportpce-servicehandler</artifactId>
84       <version>${project.version}</version>
85     </dependency>
86     <dependency>
87       <groupId>org.opendaylight.netconf</groupId>
88       <artifactId>odl-restconf-all</artifactId>
89       <classifier>features</classifier>
90       <type>xml</type>
91     </dependency>
92     <dependency>
93       <groupId>org.opendaylight.netconf</groupId>
94       <artifactId>odl-netconf-connector</artifactId>
95       <classifier>features</classifier>
96       <type>xml</type>
97     </dependency>
98     <dependency>
99       <groupId>org.opendaylight.netconf</groupId>
100       <artifactId>odl-netconf-topology</artifactId>
101       <classifier>features</classifier>
102       <type>xml</type>
103     </dependency>
104   </dependencies>
105
106   <!-- skipping test since this is an umbrella project / folder -->
107   <build>
108     <plugins>
109       <plugin>
110         <groupId>org.apache.maven.plugins</groupId>
111         <artifactId>maven-surefire-plugin</artifactId>
112         <configuration>
113           <skipTests>true</skipTests>
114         </configuration>
115       </plugin>
116       <plugin>
117         <groupId>org.codehaus.mojo</groupId>
118         <artifactId>build-helper-maven-plugin</artifactId>
119         <executions>
120           <execution>
121             <id>attach-artifact</id>
122             <phase>test</phase>
123             <goals>
124               <goal>attach-artifact</goal>
125             </goals>
126             <configuration>
127               <artifacts>
128                 <artifact>
129                   <file>${basedir}/src/main/resources/org.opendaylight.transportpce.cfg</file>
130                   <type>cfg</type>
131                   <classifier>config</classifier>
132                 </artifact>
133               </artifacts>
134             </configuration>
135           </execution>
136         </executions>
137       </plugin>
138     </plugins>
139   </build>
140 </project>