BUG-7159: eliminate use of CrossStatementSourceReactor
[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"
10          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
11          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
12   <parent>
13     <artifactId>sal-parent</artifactId>
14     <groupId>org.opendaylight.controller</groupId>
15     <version>1.5.0-SNAPSHOT</version>
16   </parent>
17   <modelVersion>4.0.0</modelVersion>
18
19   <artifactId>benchmark-data-store</artifactId>
20
21   <dependencies>
22     <dependency>
23       <groupId>org.opendaylight.yangtools</groupId>
24       <artifactId>yang-data-impl</artifactId>
25     </dependency>
26     <dependency>
27       <groupId>org.openjdk.jmh</groupId>
28       <artifactId>jmh-core</artifactId>
29       <version>1.17.3</version>
30     </dependency>
31     <dependency>
32       <groupId>org.openjdk.jmh</groupId>
33       <artifactId>jmh-generator-annprocess</artifactId>
34       <version>1.17.3</version>
35     </dependency>
36     <dependency>
37       <groupId>org.opendaylight.controller</groupId>
38       <artifactId>sal-inmemory-datastore</artifactId>
39     </dependency>
40     <dependency>
41       <groupId>org.opendaylight.controller</groupId>
42       <artifactId>sal-broker-impl</artifactId>
43     </dependency>
44     <dependency>
45       <groupId>org.opendaylight.yangtools</groupId>
46       <artifactId>yang-test-util</artifactId>
47       <scope>compile</scope>
48     </dependency>
49   </dependencies>
50
51   <build>
52     <plugins>
53       <plugin>
54         <groupId>org.codehaus.mojo</groupId>
55         <artifactId>exec-maven-plugin</artifactId>
56         <configuration>
57           <classpathScope>test</classpathScope>
58           <executable>java</executable>
59           <arguments>
60             <argument>-classpath</argument>
61             <classpath/>
62             <argument>org.openjdk.jmh.Main</argument>
63             <argument>.*</argument>
64           </arguments>
65         </configuration>
66         <executions>
67           <execution>
68             <id>run-benchmarks</id>
69             <phase>integration-test</phase>
70             <goals>
71               <goal>exec</goal>
72             </goals>
73           </execution>
74         </executions>
75       </plugin>
76     </plugins>
77   </build>
78 </project>