xpipe/gradle/gradle_scripts
2023-06-01 01:23:45 +00:00
..
annotation-indexer-1.14.jar
commons.gradle
extension.gradle Update dependencies and fix a few issues 2023-06-01 01:23:45 +00:00
extension_test.gradle Update dependencies and fix a few issues 2023-06-01 01:23:45 +00:00
java.gradle
javafx.gradle Update dependencies and fix a few issues 2023-06-01 01:23:45 +00:00
jSystemThemeDetector-3.8.jar
junit.gradle Update dependencies and fix a few issues 2023-06-01 01:23:45 +00:00
lombok.gradle
picocli.gradle
preferencesfx-core-11.15.0.jar
prettytime.gradle
publish-base.gradle
README.md
versioncompare.gradle

Gradle Scripts

This directory contains helper scripts and Java module generation rules for dependencies used by various XPipe gradle projects. It also contains various other types of shared build script components that are useful.

As the jlink tool effectively requires proper modules as inputs but many established java libraries did not add proper support yet, using an approach like this is required. The modules are generated with the help of moditect. The generated module-info.java file contains the necessary declarations to make a library work. While gradle already has a similar system to better share dependencies, this system is lacking several features. For one, it can't pass any other customizations to the build that are required by the dependencies, e.g. compiler parameters or annotation processors.