Release controller
[controller.git] / opendaylight / md-sal / cds-access-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>8.0.0</version>
8         <relativePath>../parent</relativePath>
9     </parent>
10
11     <artifactId>cds-access-api</artifactId>
12     <packaging>bundle</packaging>
13
14     <dependencies>
15         <dependency>
16             <groupId>com.google.guava</groupId>
17             <artifactId>guava</artifactId>
18         </dependency>
19         <dependency>
20             <groupId>org.eclipse.jdt</groupId>
21             <artifactId>org.eclipse.jdt.annotation</artifactId>
22         </dependency>
23         <dependency>
24             <groupId>org.opendaylight.yangtools</groupId>
25             <artifactId>concepts</artifactId>
26         </dependency>
27         <dependency>
28             <groupId>org.opendaylight.yangtools</groupId>
29             <artifactId>yang-common</artifactId>
30         </dependency>
31         <dependency>
32             <groupId>org.opendaylight.yangtools</groupId>
33             <artifactId>yang-data-api</artifactId>
34         </dependency>
35         <dependency>
36             <groupId>org.opendaylight.yangtools</groupId>
37             <artifactId>yang-data-impl</artifactId>
38         </dependency>
39         <dependency>
40             <groupId>org.opendaylight.yangtools</groupId>
41             <artifactId>yang-data-codec-binfmt</artifactId>
42         </dependency>
43         <dependency>
44             <groupId>org.opendaylight.yangtools</groupId>
45             <artifactId>yang-data-tree-api</artifactId>
46         </dependency>
47         <dependency>
48             <groupId>org.opendaylight.controller</groupId>
49             <artifactId>repackaged-akka</artifactId>
50         </dependency>
51         <dependency>
52             <groupId>org.scala-lang</groupId>
53             <artifactId>scala-library</artifactId>
54         </dependency>
55
56         <!-- Testing dependencies -->
57         <dependency>
58             <groupId>org.apache.commons</groupId>
59             <artifactId>commons-lang3</artifactId>
60             <scope>test</scope>
61         </dependency>
62         <dependency>
63             <groupId>org.opendaylight.yangtools</groupId>
64             <artifactId>mockito-configuration</artifactId>
65         </dependency>
66         <dependency>
67             <groupId>org.opendaylight.yangtools</groupId>
68             <artifactId>yang-data-tree-ri</artifactId>
69             <scope>test</scope>
70         </dependency>
71         <dependency>
72             <groupId>com.typesafe.akka</groupId>
73             <artifactId>akka-testkit_2.13</artifactId>
74         </dependency>
75     </dependencies>
76
77     <build>
78         <pluginManagement>
79             <plugins>
80                 <plugin>
81                     <artifactId>maven-javadoc-plugin</artifactId>
82                     <version>3.1.1</version>
83                 </plugin>
84             </plugins>
85         </pluginManagement>
86
87         <plugins>
88             <plugin>
89                 <groupId>org.apache.felix</groupId>
90                 <artifactId>maven-bundle-plugin</artifactId>
91                 <configuration>
92                     <instructions>
93                         <Automatic-Module-Name>org.opendaylight.controller.cluster.access.api</Automatic-Module-Name>
94                     </instructions>
95                 </configuration>
96             </plugin>
97         </plugins>
98     </build>
99
100     <scm>
101         <connection>scm:git:http://git.opendaylight.org/gerrit/controller.git</connection>
102         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
103         <tag>HEAD</tag>
104         <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL:Architecture:Clustering</url>
105     </scm>
106 </project>