6c34df110ae45df007147f7a030dd9fe848ce1d8
[controller.git] / opendaylight / md-sal / cds-access-client / 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.4-SNAPSHOT</version>
8         <relativePath>../parent</relativePath>
9     </parent>
10
11     <artifactId>cds-access-client</artifactId>
12     <packaging>bundle</packaging>
13
14     <dependencies>
15         <dependency>
16             <groupId>org.opendaylight.controller</groupId>
17             <artifactId>cds-access-api</artifactId>
18         </dependency>
19
20         <dependency>
21             <groupId>org.opendaylight.yangtools</groupId>
22             <artifactId>concepts</artifactId>
23         </dependency>
24         <dependency>
25             <groupId>org.opendaylight.yangtools</groupId>
26             <artifactId>yang-data-api</artifactId>
27         </dependency>
28         <dependency>
29           <groupId>org.opendaylight.controller</groupId>
30           <artifactId>sal-clustering-commons</artifactId>
31         </dependency>
32
33         <dependency>
34             <groupId>org.mockito</groupId>
35             <artifactId>mockito-core</artifactId>
36         </dependency>
37         <dependency>
38             <groupId>com.typesafe.akka</groupId>
39             <artifactId>akka-testkit_2.13</artifactId>
40         </dependency>
41         <dependency>
42            <groupId>com.google.guava</groupId>
43            <artifactId>guava-testlib</artifactId>
44         </dependency>
45         <dependency>
46           <groupId>org.opendaylight.controller</groupId>
47           <artifactId>sal-clustering-commons</artifactId>
48           <type>test-jar</type>
49         </dependency>
50     </dependencies>
51
52     <build>
53         <plugins>
54             <plugin>
55                 <groupId>org.apache.felix</groupId>
56                 <artifactId>maven-bundle-plugin</artifactId>
57                 <configuration>
58                     <instructions>
59                         <Automatic-Module-Name>org.opendaylight.controller.cluster.access.client</Automatic-Module-Name>
60                     </instructions>
61                 </configuration>
62             </plugin>
63             <plugin>
64                 <artifactId>maven-jar-plugin</artifactId>
65                 <executions>
66                     <execution>
67                         <goals>
68                             <goal>test-jar</goal>
69                         </goals>
70                     </execution>
71                 </executions>
72             </plugin>
73             <plugin>
74                 <artifactId>maven-source-plugin</artifactId>
75                 <executions>
76                     <execution>
77                         <goals>
78                             <goal>test-jar-no-fork</goal>
79                         </goals>
80                     </execution>
81                 </executions>
82             </plugin>
83         </plugins>
84     </build>
85
86     <scm>
87         <connection>scm:git:http://git.opendaylight.org/gerrit/controller.git</connection>
88         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
89         <tag>HEAD</tag>
90         <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL:Architecture:Clustering</url>
91     </scm>
92 </project>