Network topology and inventory init
[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>3.1.0</version>
16     <relativePath/>
17   </parent>
18
19   <groupId>org.opendaylight.transportpce</groupId>
20   <artifactId>odl-transportpce</artifactId>
21   <version>0.2.0-SNAPSHOT</version>
22   <packaging>feature</packaging>
23
24
25   <properties>
26     <mdsal.model.version>0.12.3-SNAPSHOT</mdsal.model.version>
27     <mdsal.version>1.7.3-SNAPSHOT</mdsal.version>
28     <yangtools.version>1.3.0-SNAPSHOT</yangtools.version>
29     <netconf.version>1.4.3-SNAPSHOT</netconf.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.controller</groupId>
38       <artifactId>odl-mdsal-broker</artifactId>
39       <version>${mdsal.version}</version>
40       <classifier>features</classifier>
41       <type>xml</type>
42     </dependency>
43     <dependency>
44       <groupId>org.opendaylight.netconf</groupId>
45       <artifactId>odl-netconf-all</artifactId>
46       <version>${netconf.version}</version>
47       <classifier>features</classifier>
48       <type>xml</type>
49     </dependency>
50     <dependency>
51       <groupId>org.opendaylight.netconf</groupId>
52       <artifactId>odl-netconf-connector-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-console</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>odl-netconf-topology</artifactId>
67       <version>${netconf.version}</version>
68       <classifier>features</classifier>
69       <type>xml</type>
70     </dependency>
71     <dependency>
72       <groupId>org.opendaylight.transportpce</groupId>
73       <artifactId>odl-transportpce-api</artifactId>
74       <version>${project.version}</version>
75       <classifier>features</classifier>
76       <type>xml</type>
77     </dependency>
78     <dependency>
79       <groupId>org.opendaylight.transportpce</groupId>
80       <artifactId>odl-transportpce-ordmodels</artifactId>
81       <version>${project.version}</version>
82       <classifier>features</classifier>
83       <type>xml</type>
84     </dependency>
85     <dependency>
86       <groupId>org.opendaylight.transportpce</groupId>
87       <artifactId>odl-transportpce-stubmodels</artifactId>
88       <version>${project.version}</version>
89       <classifier>features</classifier>
90       <type>xml</type>
91     </dependency>
92     <dependency>
93       <groupId>org.opendaylight.transportpce</groupId>
94       <artifactId>transportpce-common</artifactId>
95       <version>${project.version}</version>
96     </dependency>
97     <dependency>
98       <groupId>org.opendaylight.transportpce</groupId>
99       <artifactId>transportpce-networkmodel</artifactId>
100       <version>${project.version}</version>
101     </dependency>
102     <dependency>
103       <groupId>org.opendaylight.transportpce</groupId>
104       <artifactId>transportpce-renderer</artifactId>
105       <version>${project.version}</version>
106     </dependency>
107     <dependency>
108       <groupId>org.opendaylight.transportpce</groupId>
109       <artifactId>transportpce-olm</artifactId>
110       <version>${project.version}</version>
111     </dependency>
112     <dependency>
113       <groupId>org.opendaylight.transportpce</groupId>
114       <artifactId>transportpce-servicehandler</artifactId>
115       <version>${project.version}</version>
116     </dependency>
117     <dependency>
118       <groupId>org.opendaylight.transportpce</groupId>
119       <artifactId>transportpce-stubpce</artifactId>
120       <version>${project.version}</version>
121     </dependency>
122     <dependency>
123       <groupId>org.opendaylight.transportpce</groupId>
124       <artifactId>transportpce-stubrenderer</artifactId>
125       <version>${project.version}</version>
126     </dependency>
127   </dependencies>
128
129 <!-- skipping test since this is an umbrella project / folder -->
130   <build>
131     <plugins>
132       <plugin>
133         <groupId>org.apache.maven.plugins</groupId>
134         <artifactId>maven-surefire-plugin</artifactId>
135         <version>2.18.1</version>
136         <configuration>
137           <skipTests>true</skipTests>
138         </configuration>
139       </plugin>
140     </plugins>
141   </build>
142
143
144 </project>