added a comment in features/pom.xml
[transportpce.git] / features / 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>features-parent</artifactId>
15     <version>1.8.0-SNAPSHOT</version>
16     <relativePath/>
17   </parent>
18
19   <groupId>org.opendaylight.transportpce</groupId>
20   <artifactId>transportpce-features</artifactId>
21   <version>0.1.0-SNAPSHOT</version>
22   <name>${project.artifactId}</name>
23   <!-- <packaging>kar</packaging>
24   This packaging solves a compilation warning but seems forbidden.
25   According to ODL documentation, the kar packaging should not be used in profit of the jar one (normally inherited)
26   https://bugs.opendaylight.org/show_bug.cgi?id=2760
27   http://docs.opendaylight.org/en/stable-boron/developer-guide/odl-parent-developer-guide.html#features-parent   -->
28
29   <properties>
30     <mdsal.model.version>0.10.0-SNAPSHOT</mdsal.model.version>
31     <mdsal.version>1.5.0-SNAPSHOT</mdsal.version>
32     <restconf.version>1.5.0-SNAPSHOT</restconf.version>
33     <yangtools.version>1.1.0-SNAPSHOT</yangtools.version>
34     <dlux.version>0.5.0-SNAPSHOT</dlux.version>
35     <netconf.version>1.2.0-SNAPSHOT</netconf.version>
36     <configfile.directory>etc/opendaylight/karaf</configfile.directory>
37   </properties>
38
39   <dependencyManagement>
40     <dependencies>
41       <!-- project specific dependencies -->
42       <dependency>
43         <groupId>org.opendaylight.controller</groupId>
44         <artifactId>mdsal-artifacts</artifactId>
45         <version>${mdsal.version}</version>
46         <type>pom</type>
47         <scope>import</scope>
48       </dependency>
49       <dependency>
50         <groupId>org.opendaylight.netconf</groupId>
51         <artifactId>restconf-artifacts</artifactId>
52         <version>${restconf.version}</version>
53         <type>pom</type>
54         <scope>import</scope>
55       </dependency>
56       <dependency>
57         <groupId>org.opendaylight.yangtools</groupId>
58         <artifactId>yangtools-artifacts</artifactId>
59         <version>${yangtools.version}</version>
60         <type>pom</type>
61         <scope>import</scope>
62       </dependency>
63     </dependencies>
64   </dependencyManagement>
65
66   <dependencies>
67     <dependency>
68       <groupId>org.opendaylight.yangtools</groupId>
69       <artifactId>features-yangtools</artifactId>
70       <classifier>features</classifier>
71       <type>xml</type>
72       <scope>runtime</scope>
73     </dependency>
74     <dependency>
75       <groupId>org.opendaylight.mdsal.model</groupId>
76       <artifactId>features-mdsal-model</artifactId>
77       <version>${mdsal.model.version}</version>
78       <classifier>features</classifier>
79       <type>xml</type>
80       <scope>runtime</scope>
81     </dependency>
82     <dependency>
83       <groupId>org.opendaylight.controller</groupId>
84       <artifactId>features-mdsal</artifactId>
85       <classifier>features</classifier>
86       <type>xml</type>
87       <scope>runtime</scope>
88     </dependency>
89     <dependency>
90       <groupId>org.opendaylight.netconf</groupId>
91       <artifactId>features-restconf</artifactId>
92       <classifier>features</classifier>
93       <type>xml</type>
94       <scope>runtime</scope>
95     </dependency>
96     <dependency>
97       <groupId>org.opendaylight.dlux</groupId>
98       <artifactId>features-dlux</artifactId>
99       <classifier>features</classifier>
100       <version>${dlux.version}</version>
101       <type>xml</type>
102       <scope>runtime</scope>
103     </dependency>
104     <dependency>
105       <groupId>org.opendaylight.netconf</groupId>
106       <artifactId>features-netconf</artifactId>
107       <classifier>features</classifier>
108       <version>${netconf.version}</version>
109       <type>xml</type>
110       <scope>runtime</scope>
111     </dependency>
112     <dependency>
113       <groupId>org.opendaylight.netconf</groupId>
114       <artifactId>features-netconf-connector</artifactId>
115       <classifier>features</classifier>
116       <version>${netconf.version}</version>
117       <type>xml</type>
118       <scope>runtime</scope>
119     </dependency>
120     <dependency>
121       <groupId>${project.groupId}</groupId>
122       <artifactId>transportpce-impl</artifactId>
123       <version>${project.version}</version>
124     </dependency>
125    <dependency>
126       <groupId>${project.groupId}</groupId>
127       <artifactId>transportpce-renderer</artifactId>
128       <version>${project.version}</version>
129     </dependency>
130     <dependency>
131       <groupId>${project.groupId}</groupId>
132       <artifactId>transportpce-api</artifactId>
133       <version>${project.version}</version>
134     </dependency>
135     <dependency>
136       <groupId>${project.groupId}</groupId>
137       <artifactId>transportpce-ordmodels</artifactId>
138       <version>${project.version}</version>
139     </dependency>
140     <dependency>
141       <groupId>${project.groupId}</groupId>
142       <artifactId>transportpce-cli</artifactId>
143       <version>${project.version}</version>
144     </dependency>
145   </dependencies>
146 </project>