caliper.
Caliper: Microbenchmarking Framework for Java.
Here is the list of declaration for caliper. If you use Maven you can use the following code to add the dependency for this POM file.
<dependency> <groupId>com.google.caliper</groupId> <artifactId>caliper</artifactId> <version>0.5-rc1</version> </dependency>
If you think this Maven repository POM file listing for caliper is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
Name:The Apache Software License, Version 2.0
URL: http://www.apache.org/licenses/LICENSE-2.0.txt.
The caliper-0.5-rc1 has 5 dependencies.The most popular ones are listed in the following table along with their categories and number of artifacts depending on them.
Category | Artifact | Depended By Count |
---|---|---|
Testing Coding Style | jsr305 1.3.9 JSR305 Annotations for Findbugs | 150 |
JSON | gson 1.7.1 Google Gson library | 26 |
Development | guava 11.0.1 Guava is a suite of core and expanded libraries that include utility classes, google's collections, io classes, and much much more. This project is a complete packaging of all the Guava libraries into a single jar. Individual portions of Guava can be used by downloading the ap... | 200 |
JUnit | junit 3.8.2 JUnit is a regression testing framework written by Erich Gamma and Kent Beck. It is used by the developer who implements unit tests in Java. | 555 |
The following table lists the most popular artifacts which are depending on caliper-0.5-rc1. Their categories and depend by count are also listed.
Category | Artifact | Depended By Count |
---|---|---|
Cache | concurrentlinkedhashmap-lru 1.3 A high performance version of java.util.LinkedHashMap for use as a software cache. | 117 |
Cache | concurrentlinkedhashmap-lru 1.3.1 A high performance version of java.util.LinkedHashMap for use as a software cache. | 13 |
The following plugins are used in the caliper-0.5-rc1.jar
Here is the content of the POM file.
<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> <groupId>com.google.caliper</groupId> <artifactId>caliper</artifactId> <packaging>jar</packaging> <version>0.5-rc1</version> <inceptionYear>2009</inceptionYear> <name>caliper</name> <parent> <groupId>org.sonatype.oss</groupId> <artifactId>oss-parent</artifactId> <version>7</version> </parent> <url>http://code.google.com/p/caliper/</url> <description>Caliper: Microbenchmarking Framework for Java</description> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <scm> <connection>scm:git:http://code.google.com/p/caliper/</connection> <developerConnection>scm:git:http://code.google.com/p/caliper/</developerConnection> <url>http://code.google.com/p/caliper/source/browse</url> </scm> <issueManagement> <system>Google Code Issue Tracking</system> <url>http://code.google.com/p/caliper/issues/list</url> </issueManagement> <organization> <name>Google, Inc.</name> <url>http://www.google.com</url> </organization> <dependencies> <dependency> <groupId>com.google.code.findbugs</groupId> <artifactId>jsr305</artifactId> <version>1.3.9</version> </dependency> <dependency> <groupId>com.google.code.gson</groupId> <artifactId>gson</artifactId> <version>1.7.1</version> </dependency> <dependency> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> <version>11.0.1</version> <scope>compile</scope> </dependency> <dependency> <groupId>com.google.code.java-allocation-instrumenter</groupId> <artifactId>java-allocation-instrumenter</artifactId> <version>2.0</version> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>3.8.2</version> <scope>test</scope> </dependency> </dependencies> <build> <defaultGoal>package</defaultGoal> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>2.3.2</version> <configuration> <source>1.6</source> <target>1.6</target> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-eclipse-plugin</artifactId> <version>2.8</version> <configuration> <downloadSources>true</downloadSources> <downloadJavadocs>true</downloadJavadocs> <workspace>../eclipse-ws/</workspace> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>2.1.2</version> <executions> <execution> <id>attach-sources</id> <phase>verify</phase> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>2.7</version> <executions> <execution> <id>generate-javadocs</id> <phase>site</phase> <goals> <goal>javadoc</goal> </goals> </execution> </executions> <configuration> <links> <link>http://download.oracle.com/javase/1.5.0/docs/api/</link> </links> <version>true</version> <show>public</show> </configuration> </plugin> </plugins> </build> </project>