Release Neon
[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.9.0</version>
16     <relativePath>../parent</relativePath>
17   </parent>
18
19   <groupId>org.opendaylight.controller</groupId>
20   <artifactId>benchmark-data-store</artifactId>
21   <version>1.9.0</version>
22   <packaging>jar</packaging>
23
24   <dependencies>
25     <dependency>
26       <groupId>org.opendaylight.yangtools</groupId>
27       <artifactId>yang-data-impl</artifactId>
28     </dependency>
29     <dependency>
30       <groupId>org.openjdk.jmh</groupId>
31       <artifactId>jmh-core</artifactId>
32       <version>1.17.5</version>
33     </dependency>
34     <dependency>
35       <groupId>org.openjdk.jmh</groupId>
36       <artifactId>jmh-generator-annprocess</artifactId>
37       <version>1.17.5</version>
38     </dependency>
39     <dependency>
40       <groupId>org.opendaylight.controller</groupId>
41       <artifactId>sal-inmemory-datastore</artifactId>
42     </dependency>
43     <dependency>
44       <groupId>org.opendaylight.controller</groupId>
45       <artifactId>sal-broker-impl</artifactId>
46     </dependency>
47     <dependency>
48       <groupId>org.opendaylight.yangtools</groupId>
49       <artifactId>yang-test-util</artifactId>
50       <scope>compile</scope>
51     </dependency>
52   </dependencies>
53
54   <build>
55     <plugins>
56       <plugin>
57         <groupId>org.codehaus.mojo</groupId>
58         <artifactId>exec-maven-plugin</artifactId>
59         <configuration>
60           <classpathScope>test</classpathScope>
61           <executable>java</executable>
62           <arguments>
63             <argument>-classpath</argument>
64             <classpath />
65             <argument>org.openjdk.jmh.Main</argument>
66             <argument>.*</argument>
67           </arguments>
68         </configuration>
69         <executions>
70           <execution>
71             <id>run-benchmarks</id>
72             <phase>integration-test</phase>
73             <goals>
74               <goal>exec</goal>
75             </goals>
76           </execution>
77         </executions>
78       </plugin>
79     </plugins>
80   </build>
81 </project>