This directory contains instructions for building and using the library as well as the HDF5 history files.
The HISTORY files contain the history of this branch of HDF5. They fall into
three categories.
These files are created when we release a new major version and include all
the changes that were made to the develop branch while creating a major release.
This file contains the changes that were made to a maintenance branch since
it split off from develop. It will also be found in the develop branch
when experimental releases have been created.
This is the changelog for the current version of the library.
For a MAJOR release (or in develop) this files lists all the changes since the
last major version. For a MINOR release (or in a maintenance branch), this file
lists all the changes since the last release in the maintenance branch.
Examples:
- The file for HDF5 1.14.0 includes all the changes since HDF5 1.12.0
- The file for HDF5 1.10.9 includes all the changes since HDF5 1.10.8
- The file in
developincludes all the changes since the last major release - The file in
hdf5_1_14includes all the changes since the last minor HDF5 1.14 release
Note that we make no effort to bring maintenance branch HISTORY files back to
develop. If you want to compare, say, 1.10.4 with 1.12.3, you'd have to get
the history files from those releases and compare them by hand.
-
If there were experimental releases, merge the experimental
HISTORYfile and the currentCHANGELOG.mdby category to create a separate, unified file that ignores the experimental releases. Don't check this in yet or clobber any existingHISTORY/RELEASEfiles, but put it someplace handy for use in later steps. -
Create the new maintenance branch
In develop:
- Create the new
HISTORY-\[VERSION 1\]-\[VERSION 2\].txtfile- If there is an experimental
HISTORYfile, addCHANGELOG.mdto the beginning of it and use that - Otherwise, start with
CHANGELOG.md - Add the introduction boilerplate like in the other
HISTORYfiles (TOC, etc.)
- If there is an experimental
- Delete any experimental
HISTORYfile - Clear out
CHANGELOG.md
Note that we're KEEPING any experimental release history information in the
HISTORY-\[VERSION 1\]-\[VERSION 2\].txt file, so do NOT use the merged file in
the above steps!
In the new maintenance branch:
-
Create the new
HISTORY-\[VERSION\].txtfile- If there is an experimental
HISTORYfile use the combined file you created earlier - Otherwise, start with
CHANGELOG.md - Add the introduction boilerplate like in the other
HISTORYfiles (TOC, etc.)
- If there is an experimental
-
Delete any experimental
HISTORYfile -
Clear out
CHANGELOG.md -
Create the new release branch
In the new release branch:
- If there were experimental releases, use the combined file you created earlier as
CHANGELOG.md - Otherwise the
CHANGELOG.mdwill be used as-is
- Create the release branch
In the maintenance branch:
- Add the contents of
CHANGELOG.mdto the beginnnig ofHISTORY-\[VERSION\].txt - Clear out
CHANGELOG.md
- Add the contents of
CHANGELOG.mdto the beginnnig ofHISTORY-\[VERSION\].txt - Clear out
CHANGELOG.md
These files include instructions for building and installing HDF5 on various platforms.
These files document how to build HDF5 applications with an installed HDF5 library.
The HDF5 Java examples are now integrated with Maven deployment to provide complete example applications that work with HDF5 Java library Maven artifacts:
HDF5 provides two Java implementation artifacts:
-
org.hdfgroup:hdf5-java-ffm- FFM (Foreign Function & Memory) implementation- Default for Java 25+, modern native access via Project Panama
- Platform-specific JARs: linux-x86_64, windows-x86_64, macos-x86_64, macos-aarch64
-
org.hdfgroup:hdf5-java-jni- JNI (Java Native Interface) implementation- Available for all Java versions (11+)
- Platform-specific JARs: linux-x86_64, windows-x86_64, macos-x86_64, macos-aarch64
-
org.hdfgroup:hdf5-java-examples- Complete collection of 62 Java examples- Platform-independent JAR with educational examples
- Covers all major HDF5 functionality: datasets, datatypes, groups, tutorials
- Compatible with both FFM and JNI implementations
Both implementations use the same hdf.hdf5lib.* package structure for seamless migration.
Running FFM Tests:
ctest -R "JUnitFFM" -V # All FFM tests
ctest -R "JUnit-TestH5Affm" -V # Attribute tests
ctest -R "JUnit-TestH5Pffm" -V # Property tests
ctest -R "JUnit-TestH5Tffm" -V # Datatype testsTest Location: java/jtest/TestH5*ffm.java
- Dual Implementation Support: Choose FFM for modern Java or JNI for compatibility
- Cross-Platform CI/CD: Automated testing across all supported platforms
- Fork-Based Testing: Complete validation framework for testing on repository forks
- Dynamic Repository Support: Workflows adapt automatically to any GitHub repository
- Maven Integration: Seamless integration with standard Maven dependency management
- Documentation: See
HDF5Examples/JAVA/README-MAVEN.mdfor complete usage instructions
Using FFM implementation (Java 25+):
<dependency>
<groupId>org.hdfgroup</groupId>
<artifactId>hdf5-java-ffm</artifactId>
<version>2.0.0-3</version>
<classifier>linux-x86_64</classifier>
</dependency>Using JNI implementation (Java 11+):
<dependency>
<groupId>org.hdfgroup</groupId>
<artifactId>hdf5-java-jni</artifactId>
<version>2.0.0-3</version>
<classifier>linux-x86_64</classifier>
</dependency>The Java examples demonstrate proper usage of HDF5 Java bindings in real-world scenarios and serve as templates for developing HDF5-based Java applications.