Fixup checkstyle
[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>5.0.0-SNAPSHOT</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>org.opendaylight.controller</groupId>
17             <artifactId>repackaged-akka</artifactId>
18         </dependency>
19         <dependency>
20             <groupId>com.google.guava</groupId>
21             <artifactId>guava</artifactId>
22         </dependency>
23
24         <dependency>
25             <groupId>org.opendaylight.yangtools</groupId>
26             <artifactId>concepts</artifactId>
27         </dependency>
28         <dependency>
29             <groupId>org.opendaylight.yangtools</groupId>
30             <artifactId>yang-common</artifactId>
31         </dependency>
32         <dependency>
33             <groupId>org.opendaylight.yangtools</groupId>
34             <artifactId>yang-data-api</artifactId>
35         </dependency>
36         <dependency>
37             <groupId>org.opendaylight.yangtools</groupId>
38             <artifactId>yang-data-impl</artifactId>
39         </dependency>
40         <dependency>
41             <groupId>org.opendaylight.yangtools</groupId>
42             <artifactId>yang-data-codec-binfmt</artifactId>
43         </dependency>
44
45         <!-- Testing dependencies -->
46         <dependency>
47             <groupId>org.opendaylight.yangtools</groupId>
48             <artifactId>mockito-configuration</artifactId>
49         </dependency>
50         <dependency>
51             <groupId>com.typesafe.akka</groupId>
52             <artifactId>akka-testkit_2.13</artifactId>
53         </dependency>
54         <dependency>
55             <groupId>commons-lang</groupId>
56             <artifactId>commons-lang</artifactId>
57             <scope>test</scope>
58         </dependency>
59     </dependencies>
60
61     <build>
62         <plugins>
63             <plugin>
64                 <groupId>org.apache.felix</groupId>
65                 <artifactId>maven-bundle-plugin</artifactId>
66                 <configuration>
67                     <instructions>
68                         <Automatic-Module-Name>org.opendaylight.controller.cluster.access.api</Automatic-Module-Name>
69                     </instructions>
70                 </configuration>
71             </plugin>
72         </plugins>
73     </build>
74
75     <scm>
76         <connection>scm:git:http://git.opendaylight.org/gerrit/controller.git</connection>
77         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
78         <tag>HEAD</tag>
79         <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL:Architecture:Clustering</url>
80     </scm>
81 </project>