组织ID: |
com.google.code.java-allocation-instrumenter |
项目ID: |
java-allocation-instrumenter |
版本: |
2.0 |
最后修改时间: |
2018-07-27 18:02:39 |
包类型: |
jar |
标题: |
java-allocation-instrumenter |
描述: |
java-allocation-instrumenter: A Java agent that rewrites bytecode to instrument allocation sites |
相关URL: |
http://code.google.com/p/java-allocation-instrumenter/ |
大小: |
20.08KB |
|
Maven引入代码: |
<dependency>
<groupId>com.google.code.java-allocation-instrumenter</groupId>
<artifactId>java-allocation-instrumenter</artifactId>
<version>2.0</version>
</dependency>
|
Gradle引入代码: |
com.google.code.java-allocation-instrumenter:java-allocation-instrumenter:2.0
|
下载Jar包: |
|
POM文件内容: |
<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.code.java-allocation-instrumenter</groupId>
<artifactId>java-allocation-instrumenter</artifactId>
<packaging>jar</packaging>
<version>2.0</version>
<inceptionYear>2009</inceptionYear>
<name>java-allocation-instrumenter</name>
<parent>
<groupId>org.sonatype.oss</groupId>
<artifactId>oss-parent</artifactId>
<version>5</version>
</parent>
<url>http://code.google.com/p/java-allocation-instrumenter/</url>
<description>java-allocation-instrumenter: A Java agent that rewrites bytecode to instrument allocation sites</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:svn:http://java-allocation-instrumenter.googlecode.com/svn/tags/java-allocation-instrumenter-2.0</connection>
<developerConnection>scm:svn:https://java-allocation-instrumenter.googlecode.com/svn/tags/java-allocation-instrumenter-2.0</developerConnection>
<url>http://java-allocation-instrumenter.codegoogle.com/svn/tags/java-allocation-instrumenter-2.0</url>
</scm>
<issueManagement>
<system>Google Code Issue Tracking</system>
<url>http://code.google.com/p/java-allocation-instrumenter/issues/list</url>
</issueManagement>
<organization>
<name>Google, Inc.</name>
<url>http://www.google.com</url>
</organization>
<dependencies>
<dependency>
<groupId>asm</groupId>
<artifactId>asm</artifactId>
<version>3.3.1</version>
</dependency>
<dependency>
<groupId>asm</groupId>
<artifactId>asm-analysis</artifactId>
<version>3.3.1</version>
</dependency>
<dependency>
<groupId>asm</groupId>
<artifactId>asm-commons</artifactId>
<version>3.3.1</version>
</dependency>
<dependency>
<groupId>asm</groupId>
<artifactId>asm-tree</artifactId>
<version>3.3.1</version>
</dependency>
<dependency>
<groupId>asm</groupId>
<artifactId>asm-util</artifactId>
<version>3.3.1</version>
</dependency>
<dependency>
<groupId>asm</groupId>
<artifactId>asm-xml</artifactId>
<version>3.3.1</version>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>r08</version>
<scope>compile</scope>
</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-release-plugin</artifactId>
<version>2.1</version>
<configuration>
<arguments>-DenableCiProfile=true</arguments>
<tagBase>https://java-allocation-instrumenter.googlecode.com/svn/tags/</tagBase>
</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>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.7</version>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</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>
<developers>
<developer>
<name>Jeremy Manson</name>
<organization>Google Inc.</organization>
</developer>
</developers>
</project>
|
Jar包内容: |
META-INF/MANIFEST.MF
com.google.monitoring.runtime.instrumentation.AllocationInstrumenter$AIClassAdapter.class
com.google.monitoring.runtime.instrumentation.AllocationInstrumenter.class
com.google.monitoring.runtime.instrumentation.AllocationMethodAdapter$VariableScope.class
com.google.monitoring.runtime.instrumentation.AllocationMethodAdapter.class
com.google.monitoring.runtime.instrumentation.AllocationRecorder$1.class
com.google.monitoring.runtime.instrumentation.AllocationRecorder$2.class
com.google.monitoring.runtime.instrumentation.AllocationRecorder.class
com.google.monitoring.runtime.instrumentation.Sampler.class
com.google.monitoring.runtime.instrumentation.VerifyingClassAdapter$1.class
com.google.monitoring.runtime.instrumentation.VerifyingClassAdapter$State.class
com.google.monitoring.runtime.instrumentation.VerifyingClassAdapter.class
META-INF/maven/com.google.code.java-allocation-instrumenter/java-allocation-instrumenter/pom.xml
META-INF/maven/com.google.code.java-allocation-instrumenter/java-allocation-instrumenter/pom.properties
|
依赖Jar: |
asm-3.3.1.jar
/asm/asm/3.3.1
查看asm所有版本文件
asm-analysis-3.3.1.jar
/asm/asm-analysis/3.3.1
查看asm-analysis所有版本文件
asm-commons-3.3.1.jar
/asm/asm-commons/3.3.1
查看asm-commons所有版本文件
asm-tree-3.3.1.jar
/asm/asm-tree/3.3.1
查看asm-tree所有版本文件
asm-util-3.3.1.jar
/asm/asm-util/3.3.1
查看asm-util所有版本文件
asm-xml-3.3.1.jar
/asm/asm-xml/3.3.1
查看asm-xml所有版本文件
guava-r08.jar
/com.google.guava/guava/r08
查看guava所有版本文件
junit-3.8.2.jar
/junit/junit/3.8.2
查看junit所有版本文件
|