Download jol-core-0.8.jar file

Introduction

You can download jol-core-0.8.jar in this page.

License

Open Source License

Type List

jol-core-0.8.jar file has the following types.

LICENSE
META-INF/MANIFEST.MF
META-INF/maven/org.openjdk.jol/jol-core/pom.properties
META-INF/maven/org.openjdk.jol/jol-core/pom.xml
THIRD-PARTY
org.openjdk.jol.datamodel.CurrentDataModel.class
org.openjdk.jol.datamodel.DataModel.class
org.openjdk.jol.datamodel.X86_32_DataModel.class
org.openjdk.jol.datamodel.X86_64_COOPS_DataModel.class
org.openjdk.jol.datamodel.X86_64_DataModel.class
org.openjdk.jol.heap.HeapDumpException.class
org.openjdk.jol.heap.HeapDumpReader.class
org.openjdk.jol.info.ClassData.class
org.openjdk.jol.info.ClassLayout.class
org.openjdk.jol.info.FieldData.class
org.openjdk.jol.info.FieldLayout.class
org.openjdk.jol.info.GraphLayout.class
org.openjdk.jol.info.GraphPathRecord.class
org.openjdk.jol.info.GraphVisitor.class
org.openjdk.jol.info.GraphWalker.class
org.openjdk.jol.layouters.CurrentLayouter.class
org.openjdk.jol.layouters.FieldAllocationType.class
org.openjdk.jol.layouters.HotSpotLayouter.class
org.openjdk.jol.layouters.Layouter.class
org.openjdk.jol.layouters.RawLayouter.class
org.openjdk.jol.util.ClassUtils.class
org.openjdk.jol.util.IOUtils.class
org.openjdk.jol.util.MathUtil.class
org.openjdk.jol.util.Multiset.class
org.openjdk.jol.util.ObjectUtils.class
org.openjdk.jol.vm.ContendedSupport.class
org.openjdk.jol.vm.Experiments.class
org.openjdk.jol.vm.HotspotUnsafe.class
org.openjdk.jol.vm.InstrumentationException.class
org.openjdk.jol.vm.InstrumentationSupport.class
org.openjdk.jol.vm.VM.class
org.openjdk.jol.vm.VMOptions.class
org.openjdk.jol.vm.VirtualMachine.class
org.openjdk.jol.vm.sa.AttachMain.class
org.openjdk.jol.vm.sa.Constants.class
org.openjdk.jol.vm.sa.Request.class
org.openjdk.jol.vm.sa.Response.class
org.openjdk.jol.vm.sa.Result.class
org.openjdk.jol.vm.sa.SASupportException.class
org.openjdk.jol.vm.sa.SenseAccessMain.class
org.openjdk.jol.vm.sa.ServiceabilityAgentSupport.class
org.openjdk.jol.vm.sa.Task.class
org.openjdk.jol.vm.sa.UniverseData.class
org.openjdk.jol.vm.sa.UniverseTask.class

Pom

jol-core-0.8.pom file content.

<!--
Copyright (c) 2012, 2013, 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/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>

    <parent>
        <groupId>org.openjdk.jol</groupId>
        <artifactId>jol-parent</artifactId>
        <version>0.8</version>
    </parent>

    <artifactId>jol-core</artifactId>
    <packaging>jar</packaging>

    <name>Java Object Layout: Core</name>
    <url>http://maven.apache.org</url>

    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-compiler-plugin</artifactId>
                <version>2.3.2</version>
                <configuration>
                    <compilerVersion>1.6</compilerVersion>
                    <source>1.6</source>
                    <target>1.6</target>
                </configuration>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-source-plugin</artifactId>
                <version>2.2.1</version>
                <executions>
                    <execution>
                        <id>attach-sources</id>
                        <phase>verify</phase>
                        <goals>
                            <goal>jar</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-javadoc-plugin</artifactId>
                <version>2.9</version>
                <configuration>
                    <quiet>true</quiet>
                </configuration>
                <executions>
                    <execution>
                        <id>attach-javadoc</id>
                        <phase>verify</phase>
                        <goals>
                            <goal>jar</goal>
                        </goals>
                    </execution>
                </executions>
            </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>
                            <basedir>src/main/</basedir>
                            <mapping>
                                <java>PHP</java>
                            </mapping>
                        </configuration>
                    </execution>
                </executions>
            </plugin>
        </plugins>
    </build>

    <dependencies>
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <version>4.10</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.ow2.asm</groupId>
            <artifactId>asm</artifactId>
            <version>5.0.3</version>
            <scope>test</scope>
        </dependency>
    </dependencies>

    <properties>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    </properties>

</project>

POM Entry

<dependency>
   <groupId>org.openjdk.jol</groupId>
   <artifactId>jol-core</artifactId>
   <version>0.8</version>
</dependency>

Download

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



Download jol-core-0.8.jar file




PreviousNext

Related