Merge "BUG-2470: add trace of failed modification"
[controller.git] / opendaylight / md-sal / sal-clustering-commons / 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
5   <parent>
6     <groupId>org.opendaylight.controller</groupId>
7     <artifactId>sal-parent</artifactId>
8     <version>1.2.0-SNAPSHOT</version>
9   </parent>
10
11   <artifactId>sal-clustering-commons</artifactId>
12   <packaging>bundle</packaging>
13
14   <dependencies>
15     <!-- Java -->
16     <dependency>
17       <groupId>junit</groupId>
18       <artifactId>junit</artifactId>
19       <scope>test</scope>
20     </dependency>
21     <dependency>
22       <groupId>xmlunit</groupId>
23       <artifactId>xmlunit</artifactId>
24     </dependency>
25
26     <dependency>
27       <groupId>org.mockito</groupId>
28       <artifactId>mockito-all</artifactId>
29       <scope>test</scope>
30     </dependency>
31     <dependency>
32       <groupId>org.slf4j</groupId>
33       <artifactId>slf4j-simple</artifactId>
34       <scope>test</scope>
35     </dependency>
36
37     <!-- Apache -->
38     <dependency>
39       <groupId>commons-lang</groupId>
40       <artifactId>commons-lang</artifactId>
41     </dependency>
42
43     <!-- Akka -->
44     <dependency>
45       <groupId>com.typesafe.akka</groupId>
46       <artifactId>akka-actor_${scala.version}</artifactId>
47     </dependency>
48     <dependency>
49       <groupId>com.typesafe.akka</groupId>
50       <artifactId>akka-cluster_${scala.version}</artifactId>
51     </dependency>
52     <dependency>
53       <groupId>com.typesafe.akka</groupId>
54       <artifactId>akka-osgi_${scala.version}</artifactId>
55     </dependency>
56     <dependency>
57       <groupId>com.typesafe.akka</groupId>
58       <artifactId>akka-persistence-experimental_${scala.version}</artifactId>
59     </dependency>
60     <dependency>
61       <groupId>com.typesafe.akka</groupId>
62       <artifactId>akka-remote_${scala.version}</artifactId>
63     </dependency>
64     <dependency>
65       <groupId>com.typesafe.akka</groupId>
66       <artifactId>akka-slf4j_${scala.version}</artifactId>
67     </dependency>
68     <dependency>
69       <groupId>com.typesafe.akka</groupId>
70       <artifactId>akka-testkit_${scala.version}</artifactId>
71     </dependency>
72
73     <!-- Codahale -->
74     <dependency>
75       <groupId>com.codahale.metrics</groupId>
76       <artifactId>metrics-core</artifactId>
77     </dependency>
78     <dependency>
79       <groupId>com.codahale.metrics</groupId>
80       <artifactId>metrics-graphite</artifactId>
81     </dependency>
82
83     <!-- Google -->
84     <dependency>
85       <groupId>com.google.code.findbugs</groupId>
86       <artifactId>jsr305</artifactId>
87     </dependency>
88     <dependency>
89       <groupId>com.google.guava</groupId>
90       <artifactId>guava</artifactId>
91     </dependency>
92     <dependency>
93       <groupId>com.google.protobuf</groupId>
94       <artifactId>protobuf-java</artifactId>
95       <version>2.5.0</version>
96     </dependency>
97
98     <!-- Scala -->
99     <dependency>
100       <groupId>org.scala-lang</groupId>
101       <artifactId>scala-library</artifactId>
102     </dependency>
103
104     <!-- OpenDaylight -->
105     <dependency>
106       <groupId>org.opendaylight.controller</groupId>
107       <artifactId>netconf-util</artifactId>
108     </dependency>
109     <dependency>
110       <groupId>org.opendaylight.yangtools</groupId>
111       <artifactId>util</artifactId>
112     </dependency>
113     <dependency>
114       <groupId>org.opendaylight.yangtools</groupId>
115       <artifactId>yang-binding</artifactId>
116     </dependency>
117     <dependency>
118       <groupId>org.opendaylight.yangtools</groupId>
119       <artifactId>yang-common</artifactId>
120     </dependency>
121     <dependency>
122       <groupId>org.opendaylight.yangtools</groupId>
123       <artifactId>yang-data-api</artifactId>
124     </dependency>
125     <dependency>
126       <groupId>org.opendaylight.yangtools</groupId>
127       <artifactId>yang-data-impl</artifactId>
128     </dependency>
129     <dependency>
130       <groupId>org.opendaylight.yangtools</groupId>
131       <artifactId>yang-model-api</artifactId>
132     </dependency>
133     <dependency>
134       <groupId>org.opendaylight.yangtools</groupId>
135       <artifactId>yang-model-util</artifactId>
136     </dependency>
137     <dependency>
138       <groupId>org.opendaylight.yangtools</groupId>
139       <artifactId>yang-parser-impl</artifactId>
140     </dependency>
141   </dependencies>
142
143   <build>
144       <plugins>
145           <plugin>
146               <groupId>org.jacoco</groupId>
147               <artifactId>jacoco-maven-plugin</artifactId>
148               <configuration>
149                   <includes>
150                       <include>org.opendaylight.controller.*</include>
151                   </includes>
152                   <excludes>
153                       <exclude>org.opendaylight.controller.protobuff.*</exclude>
154                   </excludes>
155                   <check>false</check>
156               </configuration>
157               <executions>
158                   <execution>
159                       <id>pre-test</id>
160                       <goals>
161                           <goal>prepare-agent</goal>
162                       </goals>
163                   </execution>
164                   <execution>
165                       <id>post-test</id>
166                       <goals>
167                           <goal>report</goal>
168                       </goals>
169                       <phase>test</phase>
170                   </execution>
171               </executions>
172           </plugin>
173           <plugin>
174             <groupId>org.apache.felix</groupId>
175             <artifactId>maven-bundle-plugin</artifactId>
176             <extensions>true</extensions>
177             <configuration>
178             <instructions>
179                 <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
180                 <Export-Package>org.opendaylight.controller.cluster.*,org.opendaylight.common.actor,org.opendaylight.common.reporting,org.opendaylight.controller.protobuff.*,org.opendaylight.controller.xml.*</Export-Package>
181                 <Import-Package>*</Import-Package>
182             </instructions>
183             </configuration>
184           </plugin>
185     </plugins>
186   </build>
187 </project>