Fix followerDistributedDataStore tear down
[controller.git] / benchmark / dsbenchmark / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- vi: set et smarttab sw=4 tabstop=4: -->
3 <!--
4 Copyright (c) 2014 Cisco Systems, Inc. and others.  All rights reserved.
5
6 This program and the accompanying materials are made available under the
7 terms of the Eclipse Public License v1.0 which accompanies this distribution,
8 and is available at http://www.eclipse.org/legal/epl-v10.html
9 -->
10 <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">
11
12   <parent>
13     <groupId>org.opendaylight.mdsal</groupId>
14     <artifactId>binding-parent</artifactId>
15     <version>5.0.9</version>
16     <relativePath/>
17   </parent>
18
19   <modelVersion>4.0.0</modelVersion>
20   <groupId>org.opendaylight.controller</groupId>
21   <artifactId>dsbenchmark</artifactId>
22   <version>1.9.0-SNAPSHOT</version>
23   <packaging>bundle</packaging>
24
25   <dependencyManagement>
26     <dependencies>
27       <dependency>
28         <groupId>org.opendaylight.controller</groupId>
29         <artifactId>mdsal-artifacts</artifactId>
30         <version>1.11.0-SNAPSHOT</version>
31         <type>pom</type>
32         <scope>import</scope>
33       </dependency>
34     </dependencies>
35   </dependencyManagement>
36
37   <dependencies>
38     <dependency>
39       <groupId>org.opendaylight.controller</groupId>
40       <artifactId>benchmark-api</artifactId>
41       <version>${project.version}</version>
42     </dependency>
43     <dependency>
44       <groupId>org.opendaylight.mdsal</groupId>
45       <artifactId>mdsal-binding-api</artifactId>
46     </dependency>
47     <dependency>
48       <groupId>org.opendaylight.mdsal</groupId>
49       <artifactId>mdsal-dom-api</artifactId>
50     </dependency>
51     <dependency>
52       <groupId>org.opendaylight.yangtools</groupId>
53       <artifactId>yang-data-impl</artifactId>
54     </dependency>
55   </dependencies>
56
57   <build>
58     <pluginManagement>
59       <plugins>
60         <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.-->
61         <plugin>
62           <groupId>org.eclipse.m2e</groupId>
63           <artifactId>lifecycle-mapping</artifactId>
64           <version>1.0.0</version>
65           <configuration>
66             <lifecycleMappingMetadata>
67               <pluginExecutions>
68                 <pluginExecution>
69                   <pluginExecutionFilter>
70                     <groupId>org.jacoco</groupId>
71                     <artifactId>jacoco-maven-plugin</artifactId>
72                     <versionRange>[0.7.2.201409121644,)</versionRange>
73                     <goals>
74                       <goal>prepare-agent</goal>
75                     </goals>
76                   </pluginExecutionFilter>
77                   <action>
78                     <ignore/>
79                   </action>
80                 </pluginExecution>
81               </pluginExecutions>
82             </lifecycleMappingMetadata>
83           </configuration>
84         </plugin>
85         </plugins>
86     </pluginManagement>
87   </build>
88 </project>