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