Bumping versions by 0.0.1 for next dev cycle
[mdsal.git] / dom / mdsal-dom-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>mdsal-dom</artifactId>
7     <version>2.1.1-SNAPSHOT</version>
8   </parent>
9   <artifactId>mdsal-dom-api</artifactId>
10   <packaging>bundle</packaging>
11   <dependencies>
12     <dependency>
13       <groupId>org.opendaylight.mdsal</groupId>
14       <artifactId>mdsal-common-api</artifactId>
15     </dependency>
16     <dependency>
17       <groupId>org.opendaylight.yangtools</groupId>
18       <artifactId>yang-data-api</artifactId>
19     </dependency>
20     <dependency>
21       <groupId>org.opendaylight.yangtools</groupId>
22       <artifactId>yang-model-api</artifactId>
23     </dependency>
24     <dependency>
25       <groupId>org.osgi</groupId>
26       <artifactId>org.osgi.core</artifactId>
27     </dependency>
28
29     <dependency>
30       <groupId>junit</groupId>
31       <artifactId>junit</artifactId>
32     </dependency>
33     <dependency>
34       <groupId>org.opendaylight.yangtools</groupId>
35       <artifactId>yang-data-impl</artifactId>
36       <scope>test</scope>
37     </dependency>
38     <dependency>
39       <groupId>org.mockito</groupId>
40       <artifactId>mockito-all</artifactId>
41       <scope>test</scope>
42     </dependency>
43   </dependencies>
44   <build>
45     <plugins>
46       <plugin>
47         <groupId>org.apache.felix</groupId>
48         <artifactId>maven-bundle-plugin</artifactId>
49         <extensions>true</extensions>
50       </plugin>
51     </plugins>
52   </build>
53   <scm>
54     <connection>scm:git:http://git.opendaylight.org/gerrit/controller.git</connection>
55     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
56     <tag>HEAD</tag>
57     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL</url>
58   </scm>
59
60   <!--
61       Maven Site Configuration
62
63       The following configuration is necessary for maven-site-plugin to
64       correctly identify the correct deployment path for OpenDaylight Maven
65       sites.
66   -->
67   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
68
69   <distributionManagement>
70     <site>
71       <id>opendaylight-site</id>
72       <url>${nexus.site.url}/${project.artifactId}/</url>
73     </site>
74   </distributionManagement>
75
76 </project>