Merge "BUG 720 - YANG leaf as JSON input *<*:* couldn't be saved"
[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.2.0-SNAPSHOT</version>
16   </parent>
17   <modelVersion>4.0.0</modelVersion>
18
19   <groupId>org.opendaylight.controller</groupId>
20   <artifactId>benchmark-data-store</artifactId>
21
22   <dependencies>
23     <dependency>
24       <groupId>org.opendaylight.yangtools</groupId>
25       <artifactId>yang-data-impl</artifactId>
26     </dependency>
27     <dependency>
28       <groupId>org.opendaylight.yangtools</groupId>
29       <artifactId>yang-parser-impl</artifactId>
30     </dependency>
31     <dependency>
32       <groupId>org.openjdk.jmh</groupId>
33       <artifactId>jmh-core</artifactId>
34     </dependency>
35     <dependency>
36       <groupId>org.openjdk.jmh</groupId>
37       <artifactId>jmh-generator-annprocess</artifactId>
38     </dependency>
39     <dependency>
40       <groupId>org.opendaylight.controller</groupId>
41       <artifactId>sal-inmemory-datastore</artifactId>
42     </dependency>
43   </dependencies>
44
45   <build>
46     <plugins>
47       <plugin>
48         <groupId>org.codehaus.mojo</groupId>
49         <artifactId>exec-maven-plugin</artifactId>
50         <configuration>
51           <classpathScope>test</classpathScope>
52           <executable>java</executable>
53           <arguments>
54             <argument>-classpath</argument>
55             <classpath/>
56             <argument>org.openjdk.jmh.Main</argument>
57             <argument>.*</argument>
58           </arguments>
59         </configuration>
60         <executions>
61           <execution>
62             <id>run-benchmarks</id>
63             <phase>integration-test</phase>
64             <goals>
65               <goal>exec</goal>
66             </goals>
67           </execution>
68         </executions>
69       </plugin>
70     </plugins>
71   </build>
72 </project>