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