xpipe/gradle/gradle_scripts
2023-08-15 11:05:49 +00:00
..
annotation-indexer-1.14.jar Merge main repository 2023-01-27 02:34:46 +00:00
commons.gradle Implement launch functionality [release] 2023-02-11 14:22:07 +00:00
extension.gradle Improve options validation display 2023-08-15 11:05:49 +00:00
extension_test.gradle Update dependencies and fix a few issues 2023-06-01 01:23:45 +00:00
java.gradle Update to graalvm 20 and some small adjustments [stage] 2023-07-19 08:50:19 +00:00
javafx.gradle Fix javafx dependency arch across operating systems 2023-08-12 10:03:36 +00:00
jSystemThemeDetector-3.8.jar Add changelog 2023-05-20 13:49:58 +00:00
junit.gradle Update dependencies and fix a few issues 2023-06-01 01:23:45 +00:00
lombok.gradle Update to graalvm 20 and some small adjustments [stage] 2023-07-19 08:50:19 +00:00
picocli.gradle Merge main repository 2023-01-27 02:34:46 +00:00
preferencesfx-core-11.15.0.jar Improve settings menu and connection creation [release] 2023-02-13 23:04:20 +00:00
prettytime.gradle Merge main repository 2023-01-27 02:34:46 +00:00
publish-base.gradle Try to improve release 2023-02-01 10:05:26 +00:00
README.md Rename project [stage] 2023-05-20 14:23:36 +00:00
versioncompare.gradle Add changelog 2023-05-20 13:49:58 +00:00

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.