Bumping versions by x.y.(z+1) for next dev cycle
[mdsal.git] / singleton-service / mdsal-singleton-common-api / 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   <parent>
5     <groupId>org.opendaylight.mdsal</groupId>
6     <artifactId>singleton-service</artifactId>
7     <version>2.1.4-SNAPSHOT</version>
8   </parent>
9
10   <artifactId>mdsal-singleton-common-api</artifactId>
11   <packaging>bundle</packaging>
12
13   <dependencies>
14     <dependency>
15       <groupId>org.opendaylight.mdsal</groupId>
16       <artifactId>mdsal-eos-common-api</artifactId>
17     </dependency>
18     <dependency>
19       <groupId>com.google.guava</groupId>
20       <artifactId>guava</artifactId>
21     </dependency>
22     <dependency>
23       <groupId>org.opendaylight.yangtools</groupId>
24       <artifactId>concepts</artifactId>
25     </dependency>
26     <dependency>
27       <groupId>org.opendaylight.yangtools</groupId>
28       <artifactId>util</artifactId>
29     </dependency>
30     <dependency>
31       <groupId>org.opendaylight.yangtools</groupId>
32       <artifactId>yang-common</artifactId>
33     </dependency>
34     <dependency>
35       <groupId>junit</groupId>
36       <artifactId>junit</artifactId>
37       <scope>test</scope>
38     </dependency>
39     <dependency>
40       <groupId>org.opendaylight.yangtools</groupId>
41       <artifactId>mockito-configuration</artifactId>
42       <scope>test</scope>
43     </dependency>
44   </dependencies>
45
46   <scm>
47     <connection>scm:git:http://git.opendaylight.org/gerrit/mdsal.git</connection>
48     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/mdsal.git</developerConnection>
49     <tag>HEAD</tag>
50     <url>https://wiki.opendaylight.org/view/MD-SAL:Main</url>
51   </scm>
52
53   <!--
54       Maven Site Configuration
55
56       The following configuration is necessary for maven-site-plugin to
57       correctly identify the correct deployment path for OpenDaylight Maven
58       sites.
59   -->
60   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
61
62   <distributionManagement>
63     <site>
64       <id>opendaylight-site</id>
65       <url>${nexus.site.url}/${project.artifactId}/</url>
66     </site>
67   </distributionManagement>
68
69 </project>