I am a Gradle beginner. I have to download the binaries of org.openjfx:javafxplugin:0.1.0 whose source code is available at @https://github.com/openjfx/javafx-gradle-plugin in order to use this plugin offline.
https://github.com/openjfx/javafx-gradle-plugin and https://plugins.gradle.org/plugin/org.openjfx.javafxplugin only provide sources, not binaries.
https://mvnrepository.com/artifact/org.openjfx/javafx-plugin provides downloadable outdated binaries releases up to 0.0.13 and latest binaries releases located on an EEA SK repository but the latters are unreachable.
And I only found snapshots on Nexus repository @ https://oss.sonatype.org/#nexus-search;quick~javafx.
I tried building a empty maven project using this plugin as a dependency to retrieve it in the .m2 local maven cache but it didn't work.
<modelVersion>4.0.0</modelVersion>
<groupId>fr</groupId>
<artifactId>cl</artifactId>
<version>0.0.1-SNAPSHOT</version>
<name>download_javafxplugin</name>
<dependencies>
<!-- https://mvnrepository.com/artifact/org.openjfx/javafx-plugin -->
<dependency>
<groupId>org.openjfx</groupId>
<artifactId>javafx-plugin</artifactId>
<version>0.1.0</version>
</dependency>
</dependencies>
</project>
Where can I found this plugin binaries without rebuilding from sources or how can I download automatically this plugin in a cache using Maven or Gradle ?