Skip to content

Releases: sekruse/profiledb-java

Minor release 0.1.1

06 Sep 17:55
Compare
Choose a tag to compare

It quickly turned out that apps using ProfileDB will need more control over the JSON serialization to better support custom types. Besides a few bugfixes, this minor release provides this improved control.

First release

29 Aug 15:25
Compare
Choose a tag to compare

This is the very first release of the Java client for ProfileDB. The following is included:

  • Basic domain model of experiments, configuration, and measurements.
  • JSON-based de/serialization of experiments.
  • A utility to keep the time of Java applications.

To include ProfileDB in your apps, use

<dependency>
    <groupId>de.hpi.isg</groupId>
    <artifactId>profiledb-store</artifactId>
    <version>0.1.0</version>
</dependency>

for the basic access to the domain model and the serialization layer, and/or

<dependency>
    <groupId>de.hpi.isg</groupId>
    <artifactId>profiledb-instrumentation</artifactId>
    <version>0.1.0</version>
</dependency>

to get access to the time-keeping utility.