JMH Generators: Annotation Processors.
JMH benchmark generator, based on annotation processors..
Here is the list of declaration for jmh-generator-annprocess. If you use Maven you can use the following code to add the dependency for this POM file.
<dependency> <groupId>org.openjdk.jmh</groupId> <artifactId>jmh-generator-annprocess</artifactId> <version>0.7.1</version> </dependency>
If you think this Maven repository POM file listing for jmh-generator-annprocess is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
GNU General Public License.
The following plugins are used in the jmh-generator-annprocess-0.7.1.jar
The following packages are defined in the jmh-generator-annprocess-0.7.1.jar
org.openjdk.jmh.generators org.openjdk.jmh.generators.annotations
Here is the content of the POM file.
<!-- Copyright (c) 2005, 2014, Oracle and/or its affiliates. All rights reserved. DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. This code is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 2 only, as published by the Free Software Foundation. Oracle designates this particular file as subject to the "Classpath" exception as provided by Oracle in the LICENSE file that accompanied this code. This code is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License version 2 for more details (a copy is included in the LICENSE file that accompanied this code). You should have received a copy of the GNU General Public License version 2 along with this work; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA or visit www.oracle.com if you need additional information or have any questions. --> <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/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.openjdk.jmh</groupId> <artifactId>jmh-parent</artifactId> <version>0.7.1</version> </parent> <name>JMH Generators: Annotation Processors</name> <artifactId>jmh-generator-annprocess</artifactId> <packaging>jar</packaging> <description> JMH benchmark generator, based on annotation processors. </description> <dependencies> <dependency> <groupId>org.openjdk.jmh</groupId> <artifactId>jmh-core</artifactId> <version>${project.version}</version> </dependency> </dependencies> <prerequisites> <maven>3.0</maven> </prerequisites> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.1</version> <configuration> <compilerVersion>1.6</compilerVersion> <source>1.6</source> <target>1.6</target> <compilerArgument>-proc:none</compilerArgument> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>2.14.1</version> <configuration> <useFile>false</useFile> </configuration> </plugin> <plugin> <groupId>com.mycila.maven-license-plugin</groupId> <artifactId>maven-license-plugin</artifactId> <version>1.10.b1</version> <executions> <execution> <goals> <goal>format</goal> </goals> <phase>process-sources</phase> <configuration> <header>file:///${project.basedir}/../src/license/gpl_cpe/header.txt</header> <skipExistingHeaders>true</skipExistingHeaders> <strictCheck>true</strictCheck> <mapping> <java>PHP</java> </mapping> </configuration> </execution> </executions> </plugin> </plugins> </build> </project>