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