Merge "BUG-2288: deprecate old binding Notification API elements"
[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.3.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.opendaylight.yangtools</groupId>
28       <artifactId>yang-parser-impl</artifactId>
29     </dependency>
30     <dependency>
31       <groupId>org.openjdk.jmh</groupId>
32       <artifactId>jmh-core</artifactId>
33     </dependency>
34     <dependency>
35       <groupId>org.openjdk.jmh</groupId>
36       <artifactId>jmh-generator-annprocess</artifactId>
37     </dependency>
38     <dependency>
39       <groupId>org.opendaylight.controller</groupId>
40       <artifactId>sal-inmemory-datastore</artifactId>
41     </dependency>
42     <dependency>
43       <groupId>org.opendaylight.controller</groupId>
44       <artifactId>sal-broker-impl</artifactId>
45     </dependency>
46     <dependency>
47       <groupId>org.slf4j</groupId>
48       <artifactId>slf4j-simple</artifactId>
49     </dependency>
50   </dependencies>
51
52   <build>
53     <plugins>
54       <plugin>
55         <groupId>org.codehaus.mojo</groupId>
56         <artifactId>exec-maven-plugin</artifactId>
57         <configuration>
58           <classpathScope>test</classpathScope>
59           <executable>java</executable>
60           <arguments>
61             <argument>-classpath</argument>
62             <classpath/>
63             <argument>org.openjdk.jmh.Main</argument>
64             <argument>.*</argument>
65           </arguments>
66         </configuration>
67         <executions>
68           <execution>
69             <id>run-benchmarks</id>
70             <phase>integration-test</phase>
71             <goals>
72               <goal>exec</goal>
73             </goals>
74           </execution>
75         </executions>
76       </plugin>
77     </plugins>
78   </build>
79 </project>