https://github.com/osmerion/gradle-jdk-tools
A Gradle plugin that provides tasks for JDK tools that didn't make it into Gradle itself yet (such as JLink, JPackage, etc.).
https://github.com/osmerion/gradle-jdk-tools
gradle java jdk jlink jpackage
Last synced: 25 days ago
JSON representation
A Gradle plugin that provides tasks for JDK tools that didn't make it into Gradle itself yet (such as JLink, JPackage, etc.).
- Host: GitHub
- URL: https://github.com/osmerion/gradle-jdk-tools
- Owner: Osmerion
- License: apache-2.0
- Created: 2024-11-28T18:13:54.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2025-03-14T15:16:31.000Z (about 1 year ago)
- Last Synced: 2025-03-14T16:26:57.558Z (about 1 year ago)
- Topics: gradle, java, jdk, jlink, jpackage
- Language: Kotlin
- Homepage:
- Size: 161 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
README
# JDK Tools Gradle Plugin
[](https://github.com/Osmerion/gradle-jdk-tools/blob/master/LICENSE)
[](https://maven-badges.herokuapp.com/maven-central/com.osmerion.gradle.jdk.tools/gradle-jdk-tools)
[](https://plugins.gradle.org/plugin/com.osmerion.jdk-tools)


This plugin is a library of tasks for working with the JDK tools that did not
make it into Gradle itself yet. As such, it provides the foundational building
blocks for working with `jlink`, `jpackage`, and more.
The plugin does not register and tasks or extensions, or modifies the project in
any way. If you are looking for an out-of-the-box solution, this is not the
right plugin for you.
## Compatibility
| JDK Tools Gradle Plugin | Supported Gradle versions |
|-------------------------|---------------------------|
| 0.3.0 | 9.0+ |
| 0.1.0 | 8.0+ |
## Building from source
### Setup
This project uses [Gradle's toolchain support](https://docs.gradle.org/current/userguide/toolchains.html)
to detect and select the JDKs required to run the build. Please refer to the
build scripts to find out which toolchains are requested.
An available Java 17 (or later) runtime is required to use Gradle.
### Building
Once the setup is complete, invoke the respective Gradle tasks using the
following command on Unix/macOS:
./gradlew
or the following command on Windows:
gradlew
Important Gradle tasks to remember are:
- `clean` - clean build results
- `build` - assemble and test the Java library
- `publishToMavenLocal` - build and install all public artifacts to the
local maven repository
Additionally `tasks` may be used to print a list of all available tasks.
## License
```
Copyright 2024-2025 Leon Linhart
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
https://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
```