Skip to content

Stable Version

Compare
Choose a tag to compare
@yegor256 yegor256 released this 21 Apr 07:11
· 206 commits to master since this release

This is the first stable version in Github, after migration from jcabi multi-module project. Simple use this library to get an attribute from one of your MANIFEST.MF files:

import com.jcabi.manifests.Manifests;
public class Main {
  public static void main(String[] args) {
    String version = Manifests.read("JCabi-Version");
    System.out.println("version is " + version);
  }
}