Bump versions by x.y.(z+1)
[mdsal.git] / dom / mdsal-dom-inmemory-datastore / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- vi: set et smarttab sw=4 tabstop=4: -->
3 <!--
4  Copyright (c) 2016 Cisco Systems, Inc. and others.  All rights reserved.
5
6  This program and the accompanying materials are made available under the
7  terms of the Eclipse Public License v1.0 which accompanies this distribution,
8  and is available at http://www.eclipse.org/legal/epl-v10.html
9 -->
10 <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">
11
12    <modelVersion>4.0.0</modelVersion>
13     <parent>
14         <groupId>org.opendaylight.odlparent</groupId>
15         <artifactId>bundle-parent</artifactId>
16         <version>3.1.7</version>
17         <relativePath/>
18     </parent>
19
20     <groupId>org.opendaylight.mdsal</groupId>
21     <artifactId>mdsal-dom-inmemory-datastore</artifactId>
22     <version>2.5.4-SNAPSHOT</version>
23     <packaging>bundle</packaging>
24
25     <dependencyManagement>
26         <dependencies>
27             <dependency>
28                 <groupId>org.opendaylight.mdsal</groupId>
29                 <artifactId>mdsal-artifacts</artifactId>
30                 <version>2.5.4-SNAPSHOT</version>
31                 <type>pom</type>
32                 <scope>import</scope>
33             </dependency>
34             <dependency>
35                 <groupId>org.opendaylight.yangtools</groupId>
36                 <artifactId>yangtools-artifacts</artifactId>
37                 <version>2.0.20</version>
38                 <type>pom</type>
39                 <scope>import</scope>
40             </dependency>
41         </dependencies>
42     </dependencyManagement>
43
44     <dependencies>
45         <dependency>
46             <groupId>com.google.guava</groupId>
47             <artifactId>guava</artifactId>
48         </dependency>
49
50         <dependency>
51             <groupId>org.opendaylight.mdsal</groupId>
52             <artifactId>mdsal-common-api</artifactId>
53         </dependency>
54         <dependency>
55             <groupId>org.opendaylight.mdsal</groupId>
56             <artifactId>mdsal-dom-api</artifactId>
57         </dependency>
58         <dependency>
59             <groupId>org.opendaylight.mdsal</groupId>
60             <artifactId>mdsal-dom-spi</artifactId>
61         </dependency>
62         <dependency>
63             <groupId>org.opendaylight.yangtools</groupId>
64             <artifactId>concepts</artifactId>
65         </dependency>
66         <dependency>
67             <groupId>org.opendaylight.yangtools</groupId>
68             <artifactId>util</artifactId>
69         </dependency>
70         <dependency>
71             <groupId>org.opendaylight.yangtools</groupId>
72             <artifactId>yang-common</artifactId>
73         </dependency>
74         <dependency>
75             <groupId>org.opendaylight.yangtools</groupId>
76             <artifactId>yang-data-api</artifactId>
77         </dependency>
78         <dependency>
79             <groupId>org.opendaylight.yangtools</groupId>
80             <artifactId>yang-data-impl</artifactId>
81         </dependency>
82         <dependency>
83             <groupId>org.osgi</groupId>
84             <artifactId>org.osgi.core</artifactId>
85         </dependency>
86
87         <dependency>
88           <groupId>org.immutables</groupId>
89           <artifactId>value</artifactId>
90         </dependency>
91
92         <!-- Test Dependencies -->
93         <dependency>
94             <groupId>junit</groupId>
95             <artifactId>junit</artifactId>
96             <scope>test</scope>
97         </dependency>
98         <dependency>
99             <groupId>org.opendaylight.yangtools</groupId>
100             <artifactId>mockito-configuration</artifactId>
101             <scope>test</scope>
102         </dependency>
103         <dependency>
104             <groupId>org.opendaylight.yangtools</groupId>
105             <artifactId>yang-test-util</artifactId>
106         </dependency>
107     </dependencies>
108
109     <build>
110         <plugins>
111             <plugin>
112                 <groupId>org.apache.maven.plugins</groupId>
113                 <artifactId>maven-checkstyle-plugin</artifactId>
114                 <configuration>
115                     <propertyExpansion>checkstyle.violationSeverity=error</propertyExpansion>
116                 </configuration>
117             </plugin>
118             <plugin>
119                 <groupId>org.apache.felix</groupId>
120                 <artifactId>maven-bundle-plugin</artifactId>
121                 <extensions>true</extensions>
122                 <configuration>
123                     <instructions>
124                         <Import-Package>
125                             !org.immutables.value,
126                             *
127                         </Import-Package>
128                     </instructions>
129                 </configuration>
130             </plugin>
131         </plugins>
132     </build>
133     <scm>
134         <connection>scm:git:http://git.opendaylight.org/gerrit/controller.git</connection>
135         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
136         <tag>HEAD</tag>
137         <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL:Architecture:Clustering</url>
138     </scm>
139 </project>