Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/akman/jlink-maven-plugin
The JLink Maven Plugin lets you create a custom runtime image with the jlink tool introduced in Java 9
https://github.com/akman/jlink-maven-plugin
java jlink maven maven-plugin
Last synced: 2 days ago
JSON representation
The JLink Maven Plugin lets you create a custom runtime image with the jlink tool introduced in Java 9
- Host: GitHub
- URL: https://github.com/akman/jlink-maven-plugin
- Owner: Akman
- License: apache-2.0
- Created: 2020-05-18T20:58:06.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2024-10-27T18:00:36.000Z (22 days ago)
- Last Synced: 2024-10-27T21:39:16.187Z (22 days ago)
- Topics: java, jlink, maven, maven-plugin
- Language: Java
- Homepage: https://akman.github.io/jlink-maven-plugin
- Size: 3.7 MB
- Stars: 2
- Watchers: 3
- Forks: 0
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# JLink Maven Plugin v0.1.11
[![Build Status][travis_badge]][travis_href]
[![Maven Central][central_badge]][central_href]
[![License][license_badge]][license_href]The jlink maven plugin lets you create a custom runtime image with
the jlink tool introduced in Java 9.The main idea is to avoid being tied to project artifacts and allow the user
to fully control the process of creating an image. However, it is possible,
of course, to customize the process using project artifacts.[The detailed documentation for this plugin is available here.][goals]
## Goals
This plugin has two [goals][goals]:
- [jlink:jlink][mojo_jlink] is not bound to any phase within the Maven
lifecycle and is therefore is not automatically executed, therefore
the required phase must be specified explicitly.- [jlink:help][mojo_help] display help information on the plugin.
To create a custom runtime image manually you need only to execute:
```console
mvn jlink:jlink
```It will not fork (spawn a parallel) an alternate build lifecycle and
will execute the *jlink* goal immediately.To display parameter details execute:
```console
mvn jlink:help -Ddetail=true
```## Usage
Add the plugin to your pom:
```xml
...
...
com.github.akman
jlink-maven-plugin
0.1.11
...
...
...
com.github.akman
jlink-maven-plugin
verify
jlink
...
...
```If you want to use snapshot versions of the plugin connect the snapshot
repository in your pom.xml.```xml
...
ossrh
OSS Sonatype Snapshots Repository
https://oss.sonatype.org/content/repositories/snapshots
default
true
false
...
```And then build your project, *jlink* starts automatically:
```console
mvn clean verify
```## Links
[The JLink tool official description.][jlink]
[JEP-220 Modular runtime images.][jep220]
## Pull request
Pull request template: [.github/pull_request_template.md][pull_request].
[travis_badge]: https://app.travis-ci.com/akman/jlink-maven-plugin.svg?branch=v0.1.11
[travis_href]: https://app.travis-ci.com/akman/jlink-maven-plugin
[central_badge]: https://img.shields.io/maven-central/v/com.github.akman/jlink-maven-plugin
[central_href]: https://search.maven.org/artifact/com.github.akman/jlink-maven-plugin
[license_badge]: https://img.shields.io/github/license/akman/jlink-maven-plugin.svg
[license_href]: https://github.com/akman/jlink-maven-plugin/blob/master/LICENSE
[goals]: https://akman.github.io/jlink-maven-plugin/plugin-info.html
[mojo_jlink]: https://akman.github.io/jlink-maven-plugin/jlink-mojo.html
[mojo_help]: https://akman.github.io/jlink-maven-plugin/help-mojo.html
[jlink]: https://docs.oracle.com/en/java/javase/14/docs/specs/man/jlink.html
[jep220]: http://openjdk.java.net/jeps/220
[pull_request]: https://github.com/akman/jlink-maven-plugin/blob/master/.github/pull_request_template.md