Bump versions by x.y.(z+1)
[netconf.git] / netconf / netconf-topology-singleton / 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"
10          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
11          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
12     <modelVersion>4.0.0</modelVersion>
13
14     <parent>
15         <groupId>org.opendaylight.mdsal</groupId>
16         <artifactId>binding-parent</artifactId>
17         <version>0.11.4-SNAPSHOT</version>
18         <relativePath/>
19     </parent>
20
21     <groupId>org.opendaylight.netconf</groupId>
22     <artifactId>netconf-topology-singleton</artifactId>
23     <version>1.3.4-SNAPSHOT</version>
24     <name>${project.artifactId}</name>
25     <packaging>bundle</packaging>
26
27     <dependencyManagement>
28         <dependencies>
29             <dependency>
30                 <groupId>org.opendaylight.netconf</groupId>
31                 <artifactId>netconf-artifacts</artifactId>
32                 <version>${project.version}</version>
33                 <type>pom</type>
34                 <scope>import</scope>
35             </dependency>
36             <dependency>
37                 <groupId>org.opendaylight.controller</groupId>
38                 <artifactId>config-artifacts</artifactId>
39                 <version>0.7.4-SNAPSHOT</version>
40                 <type>pom</type>
41                 <scope>import</scope>
42             </dependency>
43             <dependency>
44                 <groupId>org.opendaylight.controller</groupId>
45                 <artifactId>mdsal-artifacts</artifactId>
46                 <version>1.6.4-SNAPSHOT</version>
47                 <type>pom</type>
48                 <scope>import</scope>
49             </dependency>
50         </dependencies>
51     </dependencyManagement>
52
53     <dependencies>
54         <dependency>
55             <groupId>com.typesafe.akka</groupId>
56             <artifactId>akka-actor_${scala.version}</artifactId>
57         </dependency>
58         <dependency>
59             <groupId>com.typesafe.akka</groupId>
60             <artifactId>akka-cluster_${scala.version}</artifactId>
61         </dependency>
62
63         <dependency>
64             <groupId>org.opendaylight.yangtools</groupId>
65             <artifactId>yang-data-codec-xml</artifactId>
66         </dependency>
67         <dependency>
68             <groupId>org.opendaylight.netconf</groupId>
69             <artifactId>sal-netconf-connector</artifactId>
70         </dependency>
71         <dependency>
72             <groupId>org.opendaylight.controller</groupId>
73             <artifactId>sal-clustering-commons</artifactId>
74         </dependency>
75         <dependency>
76             <groupId>org.opendaylight.controller</groupId>
77             <artifactId>threadpool-config-api</artifactId>
78         </dependency>
79         <dependency>
80             <groupId>org.opendaylight.mdsal</groupId>
81             <artifactId>mdsal-singleton-common-api</artifactId>
82         </dependency>
83         <dependency>
84             <groupId>org.opendaylight.mdsal.model</groupId>
85             <artifactId>ietf-topology</artifactId>
86         </dependency>
87
88         <dependency>
89             <groupId>org.mockito</groupId>
90             <artifactId>mockito-core</artifactId>
91         </dependency>
92         <dependency>
93             <groupId>com.typesafe.akka</groupId>
94             <artifactId>akka-testkit_${scala.version}</artifactId>
95         </dependency>
96     </dependencies>
97
98     <build>
99         <plugins>
100             <plugin>
101                 <groupId>org.apache.maven.plugins</groupId>
102                 <artifactId>maven-checkstyle-plugin</artifactId>
103                 <configuration>
104                     <propertyExpansion>checkstyle.violationSeverity=error</propertyExpansion>
105                 </configuration>
106             </plugin>
107         </plugins>
108     </build>
109 </project>