Start 2.0.2 release cycle
[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"
11          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
12          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
13     <parent>
14         <groupId>org.opendaylight.odlparent</groupId>
15         <artifactId>odlparent</artifactId>
16         <version>3.0.2</version>
17         <relativePath/>
18     </parent>
19     <modelVersion>4.0.0</modelVersion>
20
21     <groupId>org.opendaylight.yangtools</groupId>
22     <artifactId>benchmarks</artifactId>
23     <version>2.0.2-SNAPSHOT</version>
24
25     <dependencies>
26         <dependency>
27             <groupId>${project.groupId}</groupId>
28             <artifactId>yang-data-impl</artifactId>
29             <version>2.0.2-SNAPSHOT</version>
30         </dependency>
31         <dependency>
32             <groupId>${project.groupId}</groupId>
33             <artifactId>yang-parser-impl</artifactId>
34             <version>2.0.2-SNAPSHOT</version>
35         </dependency>
36         <dependency>
37             <groupId>org.openjdk.jmh</groupId>
38             <artifactId>jmh-core</artifactId>
39             <version>1.19</version>
40         </dependency>
41         <dependency>
42             <groupId>org.openjdk.jmh</groupId>
43             <artifactId>jmh-generator-annprocess</artifactId>
44             <version>1.19</version>
45         </dependency>
46     </dependencies>
47
48     <build>
49         <plugins>
50             <plugin>
51                 <groupId>org.codehaus.mojo</groupId>
52                 <artifactId>exec-maven-plugin</artifactId>
53                 <configuration>
54                     <classpathScope>test</classpathScope>
55                     <executable>java</executable>
56                     <arguments>
57                         <argument>-classpath</argument>
58                         <classpath/>
59                         <argument>org.openjdk.jmh.Main</argument>
60                         <argument>.*</argument>
61                     </arguments>
62                 </configuration>
63                 <executions>
64                     <execution>
65                         <id>run-benchmarks</id>
66                         <phase>integration-test</phase>
67                         <goals>
68                             <goal>exec</goal>
69                         </goals>
70                     </execution>
71                 </executions>
72             </plugin>
73         </plugins>
74     </build>
75
76 </project>