Raise EOS unsuccessful request reporting to error
[controller.git] / opendaylight / md-sal / benchmark-data-store / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 Copyright (c) 2014 Cisco Systems, Inc. and others.  All rights reserved.
4
5 This program and the accompanying materials are made available under the
6 terms of the Eclipse Public License v1.0 which accompanies this distribution,
7 and is available at http://www.eclipse.org/legal/epl-v10.html
8 -->
9 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
10   xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
11   <modelVersion>4.0.0</modelVersion>
12   <parent>
13     <groupId>org.opendaylight.controller</groupId>
14     <artifactId>mdsal-parent</artifactId>
15     <version>1.10.0-SNAPSHOT</version>
16     <relativePath>../parent</relativePath>
17   </parent>
18
19   <groupId>org.opendaylight.controller</groupId>
20   <artifactId>benchmark-data-store</artifactId>
21   <version>1.10.0-SNAPSHOT</version>
22   <packaging>jar</packaging>
23
24   <properties>
25     <spotbugs.skip>true</spotbugs.skip>
26   </properties>
27
28   <dependencies>
29     <dependency>
30       <groupId>org.opendaylight.yangtools</groupId>
31       <artifactId>yang-data-impl</artifactId>
32     </dependency>
33     <dependency>
34       <groupId>org.openjdk.jmh</groupId>
35       <artifactId>jmh-core</artifactId>
36       <version>1.21</version>
37     </dependency>
38     <dependency>
39       <groupId>org.openjdk.jmh</groupId>
40       <artifactId>jmh-generator-annprocess</artifactId>
41       <version>1.21</version>
42     </dependency>
43     <dependency>
44       <groupId>org.opendaylight.mdsal</groupId>
45       <artifactId>mdsal-dom-inmemory-datastore</artifactId>
46     </dependency>
47     <dependency>
48       <groupId>org.opendaylight.mdsal</groupId>
49       <artifactId>mdsal-dom-broker</artifactId>
50     </dependency>
51     <dependency>
52       <groupId>org.opendaylight.yangtools</groupId>
53       <artifactId>yang-test-util</artifactId>
54       <scope>compile</scope>
55     </dependency>
56   </dependencies>
57
58   <build>
59     <plugins>
60       <plugin>
61         <groupId>org.codehaus.mojo</groupId>
62         <artifactId>exec-maven-plugin</artifactId>
63         <configuration>
64           <classpathScope>test</classpathScope>
65           <executable>java</executable>
66           <arguments>
67             <argument>-classpath</argument>
68             <classpath />
69             <argument>org.openjdk.jmh.Main</argument>
70             <argument>.*</argument>
71           </arguments>
72         </configuration>
73         <executions>
74           <execution>
75             <id>run-benchmarks</id>
76             <phase>integration-test</phase>
77             <goals>
78               <goal>exec</goal>
79             </goals>
80           </execution>
81         </executions>
82       </plugin>
83     </plugins>
84   </build>
85 </project>