Skip to content

Releases: jcabi/jcabi-manifests

Add support for Jakarta EE 9.1 and higher

03 Jul 14:43
Compare
Choose a tag to compare

See #60, release log:

  • 2491e71: Enable using servlets APIs fro...
  • a23a1fa: Fix link to JAR Manifest offic...
  • ddd03fd: Support Jakarta EE - fixes #59

Released by Rultor 1.75.1, see build log

Manifests.DEFAULT is private, why?

29 May 06:28
Compare
Choose a tag to compare

See #61, release log:

Released by Rultor 1.75.0, see build log

1.2 released

23 May 15:09
feccf89
Compare
Choose a tag to compare
#49 javadoc fixes

Manifests append ignores already existing attributes

07 Oct 11:58
Compare
Choose a tag to compare

Bug fix

22 Jul 19:46
Compare
Choose a tag to compare

See #8

Bug fix

09 Jul 14:07
Compare
Choose a tag to compare

Bug fixed, as explained in #7

Bug fix

08 Jul 10:39
Compare
Choose a tag to compare

Bug fixed, as explained in #5

Dependencies optimized

02 Jul 09:59
Compare
Choose a tag to compare

Unnecessary dependencies removed, the entire code refactored, for better scalability

jcabi-parent 1.7

28 May 08:04
Compare
Choose a tag to compare

Parent POM upgraded to version 1.7

Stable Version

21 Apr 07:11
Compare
Choose a tag to compare

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);
  }
}