Download jvm-attach-api-1.2.jar file

Introduction

You can download jvm-attach-api-1.2.jar in this page.

License

The Apache Software License, Version 2.0

Type List

jvm-attach-api-1.2.jar file has the following types.

META-INF/MANIFEST.MF
META-INF/maven/org.gridkit.lab/jvm-attach-api/pom.properties
META-INF/maven/org.gridkit.lab/jvm-attach-api/pom.xml
org.gridkit.lab.jvm.attach.AttachAPI.class
org.gridkit.lab.jvm.attach.AttachManager.class
org.gridkit.lab.jvm.attach.HeapDumper.class
org.gridkit.lab.jvm.attach.HeapHisto.class
org.gridkit.lab.jvm.attach.JavaProcessDetails.class
org.gridkit.lab.jvm.attach.JavaProcessId.class
org.gridkit.lab.jvm.attach.JavaProcessMatcher.class
org.gridkit.lab.jvm.attach.LogStream.class
org.gridkit.lab.jvm.attach.PatternJvmMatcher.class
org.gridkit.lab.jvm.attach.Slf4JLogger.class
org.gridkit.lab.jvm.attach.SysErrLogger.class
org.gridkit.lab.jvm.perfdata.JStatData.class

Pom

jvm-attach-api-1.2.pom file content.

<?xml version="1.0" encoding="UTF-8"?>
<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.gridkit.lab</groupId>
        <artifactId>grid-lab-pom</artifactId>
        <version>2</version>        
    </parent>
    
    <artifactId>jvm-attach-api</artifactId>
    <version>1.2</version>        
    <name>${project.groupId}::${project.artifactId}</name>

    <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>

    <developers>
      <developer>
        <id>alexey.ragozin</id>
        <name>Alexey Ragozin</name>
        <email>alexey.ragozin@gmail.com</email>
      </developer>
    </developers>

    <scm>
        <connection>scm:svn:http://gridkit.googlecode.com/svn/grid-lab/tags/jvm-attach-api-1.2</connection>
        <developerConnection>scm:svn:https://gridkit.googlecode.com/svn/grid-lab/tags/jvm-attach-api-1.2</developerConnection>
        <url>http://gridkit.googlecode.com/svn/grid-lab/tags/jvm-attach-api-1.2</url>
    </scm>

    <properties>
        <javaVersion>1.6</javaVersion>
    </properties>

    <dependencies>

        <dependency>
            <groupId>com.sun</groupId>
            <artifactId>tools</artifactId>
            <version>1.6</version>
            <scope>system</scope>
            <systemPath>${java.home}/../lib/tools.jar</systemPath>
            <optional>true</optional>
        </dependency>

        <dependency>
            <groupId>org.slf4j</groupId>
            <artifactId>slf4j-api</artifactId>
            <version>1.6.6</version>
            <optional>true</optional>
        </dependency>

        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <version>4.10</version>
            <scope>test</scope>
        </dependency>

        <dependency>
            <groupId>ch.qos.logback</groupId>
            <artifactId>logback-classic</artifactId>
            <version>1.0.6</version>
            <scope>test</scope>
        </dependency>
        
    </dependencies>    

    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-release-plugin</artifactId>
                <version>2.4</version>
                <configuration>
                    <autoVersionSubmodules>true</autoVersionSubmodules>
                    <remoteTagging>false</remoteTagging>
                    <suppressCommitBeforeTag>true</suppressCommitBeforeTag>
                </configuration>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-compiler-plugin</artifactId>
                <version>3.0</version>
                <configuration>
                    <source>${javaVersion}</source>
                    <target>${javaVersion}</target>
                </configuration>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-surefire-plugin</artifactId>
                <version>2.13</version>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-javadoc-plugin</artifactId>
                <version>2.9</version>
                <executions>
                    <execution>
                        <id>attach-javadoc</id>
                        <goals>
                            <goal>jar</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-source-plugin</artifactId>
                <version>2.2.1</version>
                <executions>
                    <execution>
                        <id>attach-source</id>
                        <goals>
                            <goal>jar</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-resources-plugin</artifactId>
                <version>2.6</version>
                <configuration>
                    <encoding>UTF-8</encoding>
                </configuration> 
            </plugin>                
        </plugins>
    </build>

</project>

POM Entry

<dependency>
   <groupId>org.gridkit.lab</groupId>
   <artifactId>jvm-attach-api</artifactId>
   <version>1.2</version>
</dependency>

Download

If you think the following jvm-attach-api-1.2.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.



Download jvm-attach-api-1.2.jar file




PreviousNext

Related