c8e5ce6136e0fd2de73ca265cd0dc18bb629bbec
[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>3.0.6</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.8.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.10.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     <plugins>
59       <plugin>
60         <groupId>org.apache.maven.plugins</groupId>
61         <artifactId>maven-checkstyle-plugin</artifactId>
62         <configuration>
63           <propertyExpansion>checkstyle.violationSeverity=error</propertyExpansion>
64         </configuration>
65       </plugin>
66     </plugins>
67
68     <pluginManagement>
69       <plugins>
70         <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.-->
71         <plugin>
72           <groupId>org.eclipse.m2e</groupId>
73           <artifactId>lifecycle-mapping</artifactId>
74           <version>1.0.0</version>
75           <configuration>
76             <lifecycleMappingMetadata>
77               <pluginExecutions>
78                 <pluginExecution>
79                   <pluginExecutionFilter>
80                     <groupId>org.jacoco</groupId>
81                     <artifactId>jacoco-maven-plugin</artifactId>
82                     <versionRange>[0.7.2.201409121644,)</versionRange>
83                     <goals>
84                       <goal>prepare-agent</goal>
85                     </goals>
86                   </pluginExecutionFilter>
87                   <action>
88                     <ignore/>
89                   </action>
90                 </pluginExecution>
91               </pluginExecutions>
92             </lifecycleMappingMetadata>
93           </configuration>
94         </plugin>
95         </plugins>
96     </pluginManagement>
97   </build>
98 </project>