1. Added 'renderer' folder to the project
[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
24   <properties>
25     <mdsal.model.version>0.10.0-SNAPSHOT</mdsal.model.version>
26     <mdsal.version>1.5.0-SNAPSHOT</mdsal.version>
27     <restconf.version>1.5.0-SNAPSHOT</restconf.version>
28     <yangtools.version>1.1.0-SNAPSHOT</yangtools.version>
29     <dlux.version>0.5.0-SNAPSHOT</dlux.version>
30     <netconf.version>1.2.0-SNAPSHOT</netconf.version>
31     <configfile.directory>etc/opendaylight/karaf</configfile.directory>
32   </properties>
33
34   <dependencyManagement>
35     <dependencies>
36       <!-- project specific dependencies -->
37       <dependency>
38         <groupId>org.opendaylight.controller</groupId>
39         <artifactId>mdsal-artifacts</artifactId>
40         <version>${mdsal.version}</version>
41         <type>pom</type>
42         <scope>import</scope>
43       </dependency>
44       <dependency>
45         <groupId>org.opendaylight.netconf</groupId>
46         <artifactId>restconf-artifacts</artifactId>
47         <version>${restconf.version}</version>
48         <type>pom</type>
49         <scope>import</scope>
50       </dependency>
51       <dependency>
52         <groupId>org.opendaylight.yangtools</groupId>
53         <artifactId>yangtools-artifacts</artifactId>
54         <version>${yangtools.version}</version>
55         <type>pom</type>
56         <scope>import</scope>
57       </dependency>
58     </dependencies>
59   </dependencyManagement>
60
61   <dependencies>
62     <dependency>
63       <groupId>org.opendaylight.yangtools</groupId>
64       <artifactId>features-yangtools</artifactId>
65       <classifier>features</classifier>
66       <type>xml</type>
67       <scope>runtime</scope>
68     </dependency>
69     <dependency>
70       <groupId>org.opendaylight.mdsal.model</groupId>
71       <artifactId>features-mdsal-model</artifactId>
72       <version>${mdsal.model.version}</version>
73       <classifier>features</classifier>
74       <type>xml</type>
75       <scope>runtime</scope>
76     </dependency>
77     <dependency>
78       <groupId>org.opendaylight.controller</groupId>
79       <artifactId>features-mdsal</artifactId>
80       <classifier>features</classifier>
81       <type>xml</type>
82       <scope>runtime</scope>
83     </dependency>
84     <dependency>
85       <groupId>org.opendaylight.netconf</groupId>
86       <artifactId>features-restconf</artifactId>
87       <classifier>features</classifier>
88       <type>xml</type>
89       <scope>runtime</scope>
90     </dependency>
91     <dependency>
92       <groupId>org.opendaylight.dlux</groupId>
93       <artifactId>features-dlux</artifactId>
94       <classifier>features</classifier>
95       <version>${dlux.version}</version>
96       <type>xml</type>
97       <scope>runtime</scope>
98     </dependency>
99     <dependency>
100       <groupId>org.opendaylight.netconf</groupId>
101       <artifactId>features-netconf</artifactId>
102       <classifier>features</classifier>
103       <version>${netconf.version}</version>
104       <type>xml</type>
105       <scope>runtime</scope>
106     </dependency>
107     <dependency>
108       <groupId>org.opendaylight.netconf</groupId>
109       <artifactId>features-netconf-connector</artifactId>
110       <classifier>features</classifier>
111       <version>${netconf.version}</version>
112       <type>xml</type>
113       <scope>runtime</scope>
114     </dependency>
115     <dependency>
116       <groupId>${project.groupId}</groupId>
117       <artifactId>transportpce-impl</artifactId>
118       <version>${project.version}</version>
119     </dependency>
120    <dependency>
121       <groupId>${project.groupId}</groupId>
122       <artifactId>transportpce-renderer</artifactId>
123       <version>${project.version}</version>
124     </dependency>
125     <dependency>
126       <groupId>${project.groupId}</groupId>
127       <artifactId>transportpce-api</artifactId>
128       <version>${project.version}</version>
129     </dependency>
130     <dependency>
131       <groupId>${project.groupId}</groupId>
132       <artifactId>transportpce-cli</artifactId>
133       <version>${project.version}</version>
134     </dependency>
135   </dependencies>
136 </project>