Skip to content

Latest commit

 

History

History
23 lines (19 loc) · 498 Bytes

README.md

File metadata and controls

23 lines (19 loc) · 498 Bytes

JImage

This library is used to read Jimage files. It was extracted from the OpenJDK 17.0.2 source code, the public replacement for jdk.internal.jimage, and it works on Java 8 and above.

It has been published to Maven Central. You can add dependencies on it in this way:

Maven:

<dependency>
  <groupId>org.glavo</groupId>
  <artifactId>jimage</artifactId>
  <version>1.0.0</version>
</dependency>

Gradle:

dependencies {
  implementation("org.glavo:jimage:1.0.0")
}