Improve segmented journal actor metrics
[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>9.0.3-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>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.controller</groupId>
30             <artifactId>cds-access-api</artifactId>
31         </dependency>
32         <dependency>
33             <groupId>org.opendaylight.controller</groupId>
34             <artifactId>repackaged-akka</artifactId>
35         </dependency>
36         <dependency>
37             <groupId>org.opendaylight.controller</groupId>
38             <artifactId>sal-clustering-commons</artifactId>
39         </dependency>
40         <dependency>
41             <groupId>org.opendaylight.yangtools</groupId>
42             <artifactId>concepts</artifactId>
43         </dependency>
44         <dependency>
45             <groupId>org.scala-lang</groupId>
46             <artifactId>scala-library</artifactId>
47         </dependency>
48         <dependency>
49             <groupId>org.checkerframework</groupId>
50             <artifactId>checker-qual</artifactId>
51             <optional>true</optional>
52         </dependency>
53
54         <dependency>
55             <groupId>com.typesafe</groupId>
56             <artifactId>config</artifactId>
57             <scope>test</scope>
58         </dependency>
59         <dependency>
60             <groupId>com.typesafe.akka</groupId>
61             <artifactId>akka-testkit_2.13</artifactId>
62         </dependency>
63         <dependency>
64             <groupId>com.google.guava</groupId>
65             <artifactId>guava-testlib</artifactId>
66         </dependency>
67         <dependency>
68             <groupId>org.opendaylight.yangtools</groupId>
69             <artifactId>yang-common</artifactId>
70             <scope>test</scope>
71         </dependency>
72         <dependency>
73             <groupId>org.opendaylight.yangtools</groupId>
74             <artifactId>yang-data-api</artifactId>
75             <scope>test</scope>
76         </dependency>
77         <dependency>
78             <groupId>org.opendaylight.yangtools</groupId>
79             <artifactId>yang-data-impl</artifactId>
80             <scope>test</scope>
81         </dependency>
82         <dependency>
83             <groupId>org.opendaylight.controller</groupId>
84             <artifactId>sal-clustering-commons</artifactId>
85             <type>test-jar</type>
86         </dependency>
87     </dependencies>
88
89     <build>
90         <pluginManagement>
91             <plugins>
92                 <plugin>
93                     <artifactId>maven-javadoc-plugin</artifactId>
94                     <version>3.1.1</version>
95                 </plugin>
96             </plugins>
97         </pluginManagement>
98
99         <plugins>
100             <plugin>
101                 <groupId>org.apache.felix</groupId>
102                 <artifactId>maven-bundle-plugin</artifactId>
103                 <configuration>
104                     <instructions>
105                         <Automatic-Module-Name>org.opendaylight.controller.cluster.access.client</Automatic-Module-Name>
106                     </instructions>
107                 </configuration>
108             </plugin>
109             <plugin>
110                 <artifactId>maven-jar-plugin</artifactId>
111                 <executions>
112                     <execution>
113                         <goals>
114                             <goal>test-jar</goal>
115                         </goals>
116                     </execution>
117                 </executions>
118             </plugin>
119             <plugin>
120                 <artifactId>maven-source-plugin</artifactId>
121                 <executions>
122                     <execution>
123                         <goals>
124                             <goal>test-jar-no-fork</goal>
125                         </goals>
126                     </execution>
127                 </executions>
128             </plugin>
129         </plugins>
130     </build>
131
132     <scm>
133         <connection>scm:git:http://git.opendaylight.org/gerrit/controller.git</connection>
134         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
135         <tag>HEAD</tag>
136         <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL:Architecture:Clustering</url>
137     </scm>
138 </project>