More migration to odlparent 2.0.2
[netconf.git] / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3  Copyright (c) 2016 Cisco Systems, Inc. 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
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>odlparent-lite</artifactId>
15         <version>2.0.2</version>
16         <relativePath/>
17     </parent>
18
19     <groupId>org.opendaylight.netconf</groupId>
20     <artifactId>netconf-parent</artifactId>
21     <version>1.3.0-SNAPSHOT</version>
22     <packaging>pom</packaging>
23     <name>${project.artifactId}</name>
24
25     <modules>
26         <module>netconf</module>
27         <module>restconf</module>
28
29         <module>features</module>
30         <module>karaf</module>
31     </modules>
32
33     <properties>
34         <config.version>0.7.0-SNAPSHOT</config.version>
35         <config.configfile.directory>etc/opendaylight/karaf</config.configfile.directory>
36
37         <mdsal.version>2.3.0-SNAPSHOT</mdsal.version>
38         <mdsal.model.version>0.11.0-SNAPSHOT</mdsal.model.version>
39         <controller.mdsal.version>1.6.0-SNAPSHOT</controller.mdsal.version>
40         <netconf.version>1.3.0-SNAPSHOT</netconf.version>
41         <restconf.version>1.6.0-SNAPSHOT</restconf.version>
42         <yangtools.version>1.2.0-SNAPSHOT</yangtools.version>
43     </properties>
44
45
46     <dependencyManagement>
47       <dependencies>
48         <dependency>
49             <groupId>org.opendaylight.yangtools</groupId>
50             <artifactId>yangtools-artifacts</artifactId>
51             <version>${yangtools.version}</version>
52             <type>pom</type>
53             <scope>import</scope>
54         </dependency>
55         <dependency>
56           <groupId>org.opendaylight.mdsal</groupId>
57           <artifactId>mdsal-artifacts</artifactId>
58           <version>${mdsal.version}</version>
59           <type>pom</type>
60           <scope>import</scope>
61         </dependency>
62         <dependency>
63           <groupId>org.opendaylight.mdsal.model</groupId>
64           <artifactId>mdsal-model-artifacts</artifactId>
65           <version>${mdsal.model.version}</version>
66           <type>pom</type>
67           <scope>import</scope>
68         </dependency>
69         <dependency>
70           <groupId>org.opendaylight.aaa</groupId>
71           <artifactId>aaa-artifacts</artifactId>
72           <version>0.6.0-SNAPSHOT</version>
73           <type>pom</type>
74           <scope>import</scope>
75         </dependency>
76         <dependency>
77           <groupId>org.opendaylight.controller</groupId>
78           <artifactId>config-artifacts</artifactId>
79           <version>${config.version}</version>
80           <type>pom</type>
81           <scope>import</scope>
82         </dependency>
83         <dependency>
84           <groupId>org.opendaylight.controller</groupId>
85           <artifactId>mdsal-artifacts</artifactId>
86           <version>${controller.mdsal.version}</version>
87           <type>pom</type>
88           <scope>import</scope>
89         </dependency>
90       </dependencies>
91     </dependencyManagement>
92
93     <profiles>
94         <profile>
95             <id>integrationtests</id>
96             <activation>
97                 <activeByDefault>false</activeByDefault>
98             </activation>
99             <modules>
100                 <!-- module>opendaylight/netconf/netconf-it</module -->
101             </modules>
102         </profile>
103     </profiles>
104 </project>