https://github.com/jcabi/jcabi-manifests
Java library for convenient reading of MANIFEST.MF files available in classpath
https://github.com/jcabi/jcabi-manifests
java manifest
Last synced: 12 months ago
JSON representation
Java library for convenient reading of MANIFEST.MF files available in classpath
- Host: GitHub
- URL: https://github.com/jcabi/jcabi-manifests
- Owner: jcabi
- License: other
- Created: 2013-09-04T07:39:42.000Z (almost 13 years ago)
- Default Branch: master
- Last Pushed: 2024-07-19T13:03:02.000Z (almost 2 years ago)
- Last Synced: 2024-08-05T19:35:37.543Z (almost 2 years ago)
- Topics: java, manifest
- Language: Java
- Homepage: https://manifests.jcabi.com
- Size: 1.09 MB
- Stars: 59
- Watchers: 7
- Forks: 22
- Open Issues: 15
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README

[](https://www.elegantobjects.org)
[](https://www.rultor.com/p/jcabi/jcabi-manifests)
[](https://github.com/jcabi/jcabi-manifests/actions/workflows/mvn.yml)
[](https://www.0pdd.com/p?name=jcabi/jcabi-manifests)
[](https://maven-badges.herokuapp.com/maven-central/com.jcabi/jcabi-manifests)
[](https://www.javadoc.io/doc/com.jcabi/jcabi-manifests)
More details are here: [manifests.jcabi.com](http://manifests.jcabi.com/index.html).
Also, read this blog post: [How to Read MANIFEST.MF Files](http://www.yegor256.com/2014/07/03/how-to-read-manifest-mf.html).
Manipulations with `MANIFEST.MF` files in Java made easy:
```java
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);
}
}
```
## How to contribute?
Fork the repository, make changes, submit a pull request.
We promise to review your changes same day and apply to
the `master` branch, if they look correct.
Please run Maven build before submitting a pull request:
```
$ mvn clean install -Pqulice
```