d08e9b3c7ef7ec3099f7764602a78f71eb08b0a1
[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.odlparent</groupId>
14     <artifactId>odlparent</artifactId>
15     <version>2.0.4</version>
16     <relativePath />
17   </parent>
18
19
20   <groupId>org.opendaylight.controller</groupId>
21   <artifactId>benchmark-data-store</artifactId>
22   <version>1.7.0-SNAPSHOT</version>
23   <packaging>jar</packaging>
24
25   <dependencyManagement>
26     <dependencies>
27       <dependency>
28         <groupId>org.opendaylight.yangtools</groupId>
29         <artifactId>yangtools-artifacts</artifactId>
30         <version>2.0.0-SNAPSHOT</version>
31         <type>pom</type>
32         <scope>import</scope>
33       </dependency>
34       <dependency>
35         <groupId>org.opendaylight.controller</groupId>
36         <artifactId>mdsal-artifacts</artifactId>
37         <version>1.7.0-SNAPSHOT</version>
38         <type>pom</type>
39         <scope>import</scope>
40       </dependency>
41     </dependencies>
42   </dependencyManagement>
43
44   <dependencies>
45     <dependency>
46       <groupId>org.opendaylight.yangtools</groupId>
47       <artifactId>yang-data-impl</artifactId>
48     </dependency>
49     <dependency>
50       <groupId>org.openjdk.jmh</groupId>
51       <artifactId>jmh-core</artifactId>
52       <version>1.17.5</version>
53     </dependency>
54     <dependency>
55       <groupId>org.openjdk.jmh</groupId>
56       <artifactId>jmh-generator-annprocess</artifactId>
57       <version>1.17.5</version>
58     </dependency>
59     <dependency>
60       <groupId>org.opendaylight.controller</groupId>
61       <artifactId>sal-inmemory-datastore</artifactId>
62     </dependency>
63     <dependency>
64       <groupId>org.opendaylight.controller</groupId>
65       <artifactId>sal-broker-impl</artifactId>
66     </dependency>
67     <dependency>
68       <groupId>org.opendaylight.yangtools</groupId>
69       <artifactId>yang-test-util</artifactId>
70       <scope>compile</scope>
71     </dependency>
72   </dependencies>
73
74   <build>
75     <plugins>
76       <plugin>
77         <groupId>org.apache.maven.plugins</groupId>
78         <artifactId>maven-checkstyle-plugin</artifactId>
79         <configuration>
80           <propertyExpansion>checkstyle.violationSeverity=error</propertyExpansion>
81         </configuration>
82       </plugin>
83       <plugin>
84         <groupId>org.codehaus.mojo</groupId>
85         <artifactId>exec-maven-plugin</artifactId>
86         <configuration>
87           <classpathScope>test</classpathScope>
88           <executable>java</executable>
89           <arguments>
90             <argument>-classpath</argument>
91             <classpath />
92             <argument>org.openjdk.jmh.Main</argument>
93             <argument>.*</argument>
94           </arguments>
95         </configuration>
96         <executions>
97           <execution>
98             <id>run-benchmarks</id>
99             <phase>integration-test</phase>
100             <goals>
101               <goal>exec</goal>
102             </goals>
103           </execution>
104         </executions>
105       </plugin>
106     </plugins>
107   </build>
108 </project>