b04da8ea94db94b89f30afeef89795aa758fdb76
[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>6.0.0-SNAPSHOT</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.10.0-SNAPSHOT</version>
23   <packaging>bundle</packaging>
24
25   <dependencyManagement>
26     <dependencies>
27       <dependency>
28         <groupId>org.opendaylight.controller</groupId>
29         <artifactId>controller-artifacts</artifactId>
30         <version>1.12.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     </dependency>
42     <dependency>
43       <groupId>org.opendaylight.mdsal</groupId>
44       <artifactId>mdsal-binding-api</artifactId>
45     </dependency>
46     <dependency>
47       <groupId>org.opendaylight.mdsal</groupId>
48       <artifactId>mdsal-dom-api</artifactId>
49     </dependency>
50     <dependency>
51       <groupId>org.opendaylight.yangtools</groupId>
52       <artifactId>yang-data-impl</artifactId>
53     </dependency>
54   </dependencies>
55
56   <build>
57     <pluginManagement>
58       <plugins>
59         <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.-->
60         <plugin>
61           <groupId>org.eclipse.m2e</groupId>
62           <artifactId>lifecycle-mapping</artifactId>
63           <version>1.0.0</version>
64           <configuration>
65             <lifecycleMappingMetadata>
66               <pluginExecutions>
67                 <pluginExecution>
68                   <pluginExecutionFilter>
69                     <groupId>org.jacoco</groupId>
70                     <artifactId>jacoco-maven-plugin</artifactId>
71                     <versionRange>[0.7.2.201409121644,)</versionRange>
72                     <goals>
73                       <goal>prepare-agent</goal>
74                     </goals>
75                   </pluginExecutionFilter>
76                   <action>
77                     <ignore/>
78                   </action>
79                 </pluginExecution>
80               </pluginExecutions>
81             </lifecycleMappingMetadata>
82           </configuration>
83         </plugin>
84         </plugins>
85     </pluginManagement>
86   </build>
87 </project>