Add 'features/protocol-framework/' from commit 'cb42405784db97d0ce2c5991d12a89b46d185949'
[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         <features.test.version>1.9.0</features.test.version>
37
38         <mdsal.version>2.3.0-SNAPSHOT</mdsal.version>
39         <mdsal.model.version>0.11.0-SNAPSHOT</mdsal.model.version>
40         <controller.mdsal.version>1.6.0-SNAPSHOT</controller.mdsal.version>
41         <netconf.version>1.3.0-SNAPSHOT</netconf.version>
42         <restconf.version>1.6.0-SNAPSHOT</restconf.version>
43         <yangtools.version>1.2.0-SNAPSHOT</yangtools.version>
44     </properties>
45
46
47     <dependencyManagement>
48       <dependencies>
49         <dependency>
50             <groupId>org.opendaylight.yangtools</groupId>
51             <artifactId>yangtools-artifacts</artifactId>
52             <version>${yangtools.version}</version>
53             <type>pom</type>
54             <scope>import</scope>
55         </dependency>
56         <dependency>
57           <groupId>org.opendaylight.mdsal</groupId>
58           <artifactId>mdsal-artifacts</artifactId>
59           <version>${mdsal.version}</version>
60           <type>pom</type>
61           <scope>import</scope>
62         </dependency>
63         <dependency>
64           <groupId>org.opendaylight.mdsal.model</groupId>
65           <artifactId>mdsal-model-artifacts</artifactId>
66           <version>${mdsal.model.version}</version>
67           <type>pom</type>
68           <scope>import</scope>
69         </dependency>
70         <dependency>
71           <groupId>org.opendaylight.aaa</groupId>
72           <artifactId>aaa-artifacts</artifactId>
73           <version>0.6.0-SNAPSHOT</version>
74           <type>pom</type>
75           <scope>import</scope>
76         </dependency>
77         <dependency>
78           <groupId>org.opendaylight.controller</groupId>
79           <artifactId>config-artifacts</artifactId>
80           <version>${config.version}</version>
81           <type>pom</type>
82           <scope>import</scope>
83         </dependency>
84         <dependency>
85           <groupId>org.opendaylight.controller</groupId>
86           <artifactId>mdsal-artifacts</artifactId>
87           <version>${controller.mdsal.version}</version>
88           <type>pom</type>
89           <scope>import</scope>
90         </dependency>
91       </dependencies>
92     </dependencyManagement>
93
94     <profiles>
95         <profile>
96             <id>integrationtests</id>
97             <activation>
98                 <activeByDefault>false</activeByDefault>
99             </activation>
100             <modules>
101                 <!-- module>opendaylight/netconf/netconf-it</module -->
102             </modules>
103         </profile>
104     </profiles>
105 </project>