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