Bump versions to next development snapshot
[yangtools.git] / benchmarks / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- vi: set et smarttab sw=4 tabstop=4: -->
3 <!--
4  Copyright (c) 2013 Cisco Systems, Inc. and others.  All rights reserved.
5
6  This program and the accompanying materials are made available under the
7  terms of the Eclipse Public License v1.0 which accompanies this distribution,
8  and is available at http://www.eclipse.org/legal/epl-v10.html
9 -->
10 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
11     <parent>
12         <groupId>org.opendaylight.odlparent</groupId>
13         <artifactId>odlparent</artifactId>
14         <version>3.1.0</version>
15         <relativePath/>
16     </parent>
17     <modelVersion>4.0.0</modelVersion>
18
19     <groupId>org.opendaylight.yangtools</groupId>
20     <artifactId>benchmarks</artifactId>
21     <version>2.0.4-SNAPSHOT</version>
22
23     <dependencies>
24         <dependency>
25             <groupId>${project.groupId}</groupId>
26             <artifactId>yang-data-impl</artifactId>
27             <version>2.0.4-SNAPSHOT</version>
28         </dependency>
29         <dependency>
30             <groupId>${project.groupId}</groupId>
31             <artifactId>yang-parser-impl</artifactId>
32             <version>2.0.4-SNAPSHOT</version>
33         </dependency>
34         <dependency>
35             <groupId>org.openjdk.jmh</groupId>
36             <artifactId>jmh-core</artifactId>
37             <version>1.19</version>
38         </dependency>
39         <dependency>
40             <groupId>org.openjdk.jmh</groupId>
41             <artifactId>jmh-generator-annprocess</artifactId>
42             <version>1.19</version>
43         </dependency>
44     </dependencies>
45
46     <build>
47         <plugins>
48             <plugin>
49                 <groupId>org.codehaus.mojo</groupId>
50                 <artifactId>exec-maven-plugin</artifactId>
51                 <configuration>
52                     <classpathScope>test</classpathScope>
53                     <executable>java</executable>
54                     <arguments>
55                         <argument>-classpath</argument>
56                         <classpath/>
57                         <argument>org.openjdk.jmh.Main</argument>
58                         <argument>.*</argument>
59                     </arguments>
60                 </configuration>
61                 <executions>
62                     <execution>
63                         <id>run-benchmarks</id>
64                         <phase>integration-test</phase>
65                         <goals>
66                             <goal>exec</goal>
67                         </goals>
68                     </execution>
69                 </executions>
70             </plugin>
71         </plugins>
72     </build>
73
74 </project>