Cleanup versions across modules
[controller.git] / opendaylight / md-sal / cds-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.controller</groupId>
6         <artifactId>mdsal-parent</artifactId>
7         <version>2.0.0-SNAPSHOT</version>
8         <relativePath>../parent</relativePath>
9     </parent>
10
11     <groupId>org.opendaylight.controller</groupId>
12     <artifactId>cds-dom-api</artifactId>
13     <packaging>bundle</packaging>
14
15     <dependencies>
16         <dependency>
17             <groupId>com.typesafe.akka</groupId>
18             <artifactId>akka-actor_2.13</artifactId>
19         </dependency>
20
21         <dependency>
22             <groupId>org.opendaylight.yangtools</groupId>
23             <artifactId>concepts</artifactId>
24         </dependency>
25         <dependency>
26             <groupId>org.opendaylight.mdsal</groupId>
27             <artifactId>mdsal-dom-api</artifactId>
28         </dependency>
29     </dependencies>
30
31     <build>
32         <plugins>
33             <plugin>
34                 <groupId>org.apache.felix</groupId>
35                 <artifactId>maven-bundle-plugin</artifactId>
36                 <configuration>
37                     <instructions>
38                         <Automatic-Module-Name>org.opendaylight.controller.cluster.dom.api</Automatic-Module-Name>
39                     </instructions>
40                 </configuration>
41             </plugin>
42         </plugins>
43     </build>
44
45     <scm>
46         <connection>scm:git:http://git.opendaylight.org/gerrit/controller.git</connection>
47         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
48         <tag>HEAD</tag>
49         <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL:Architecture:Clustering</url>
50     </scm>
51 </project>