Merge "Bug 6198 - Use sal-netconf-connector to connet device costs too much time"
[netconf.git] / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <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">
3     <modelVersion>4.0.0</modelVersion>
4
5     <parent>
6         <groupId>org.opendaylight.odlparent</groupId>
7         <artifactId>odlparent-lite</artifactId>
8         <version>1.8.0-SNAPSHOT</version>
9         <relativePath/>
10     </parent>
11
12     <groupId>org.opendaylight.netconf</groupId>
13     <artifactId>netconf-parent</artifactId>
14     <version>1.2.0-SNAPSHOT</version>
15     <packaging>pom</packaging>
16     <name>${project.artifactId}</name>
17
18     <modules>
19         <module>netconf</module>
20         <module>restconf</module>
21
22         <module>features</module>
23         <module>karaf</module>
24     </modules>
25
26     <properties>
27         <config.version>0.6.0-SNAPSHOT</config.version>
28         <config.configfile.directory>etc/opendaylight/karaf</config.configfile.directory>
29         <features.test.version>1.8.0-SNAPSHOT</features.test.version>
30
31         <mdsal.version>2.2.0-SNAPSHOT</mdsal.version>
32         <mdsal.model.version>0.10.0-SNAPSHOT</mdsal.model.version>
33         <controller.mdsal.version>1.5.0-SNAPSHOT</controller.mdsal.version>
34         <netconf.version>1.2.0-SNAPSHOT</netconf.version>
35         <restconf.version>1.5.0-SNAPSHOT</restconf.version>
36         <yangtools.version>1.1.0-SNAPSHOT</yangtools.version>
37     </properties>
38
39
40     <dependencyManagement>
41       <dependencies>
42         <dependency>
43             <groupId>org.opendaylight.yangtools</groupId>
44             <artifactId>yangtools-artifacts</artifactId>
45             <version>${yangtools.version}</version>
46             <type>pom</type>
47             <scope>import</scope>
48         </dependency>
49         <dependency>
50           <groupId>org.opendaylight.mdsal</groupId>
51           <artifactId>mdsal-artifacts</artifactId>
52           <version>${mdsal.version}</version>
53           <type>pom</type>
54           <scope>import</scope>
55         </dependency>
56         <dependency>
57           <groupId>org.opendaylight.mdsal.model</groupId>
58           <artifactId>mdsal-model-artifacts</artifactId>
59           <version>${mdsal.model.version}</version>
60           <type>pom</type>
61           <scope>import</scope>
62         </dependency>
63         <dependency>
64           <groupId>org.opendaylight.aaa</groupId>
65           <artifactId>aaa-artifacts</artifactId>
66           <version>0.5.0-SNAPSHOT</version>
67           <type>pom</type>
68           <scope>import</scope>
69         </dependency>
70         <dependency>
71           <groupId>org.opendaylight.controller</groupId>
72           <artifactId>config-artifacts</artifactId>
73           <version>${config.version}</version>
74           <type>pom</type>
75           <scope>import</scope>
76         </dependency>
77         <dependency>
78           <groupId>org.opendaylight.controller</groupId>
79           <artifactId>mdsal-artifacts</artifactId>
80           <version>${controller.mdsal.version}</version>
81           <type>pom</type>
82           <scope>import</scope>
83         </dependency>
84       </dependencies>
85     </dependencyManagement>
86
87     <build>
88         <pluginManagement>
89             <plugins>
90                 <plugin>
91                     <groupId>org.apache.maven.plugins</groupId>
92                     <artifactId>maven-checkstyle-plugin</artifactId>
93                     <dependencies>
94                         <dependency>
95                             <groupId>org.opendaylight.controller</groupId>
96                             <artifactId>checkstyle</artifactId>
97                             <version>0.4.0-SNAPSHOT</version>
98                         </dependency>
99                     </dependencies>
100                 </plugin>
101             </plugins>
102         </pluginManagement>
103     </build>
104
105     <profiles>
106         <profile>
107             <id>integrationtests</id>
108             <activation>
109                 <activeByDefault>false</activeByDefault>
110             </activation>
111             <modules>
112                 <!-- module>opendaylight/netconf/netconf-it</module -->
113             </modules>
114         </profile>
115     </profiles>
116 </project>