Hello, The extra/java-openjfx package has been flagged out-of-date since 2016-09-13 and is stuck at verison 8u76-b03. This can result in runtime warnings for some JavaFX applications whose FXML was created specifying a newer API version, potentially causing confusion for users because `java -version` would return the newest version (1.8.0_121). The following patch (created using `svn diff`) of the PKGBUILD should bring it up to match the latest version of extra/jdk8-openjdk. No changes should be necessary for the gradle.properties file. Regards, Kyle Patch: Index: PKGBUILD =================================================================== --- PKGBUILD (revision 287772) +++ PKGBUILD (working copy) @@ -12,11 +12,11 @@ pkgbase=java-${_libname} pkgname=('java-openjfx' 'java-openjfx-doc' 'java-openjfx-src') _java_ver=8 -_jdk_update=76 -_jdk_build=03 +_jdk_update=121 +_jdk_build=13 _hgtag=${_java_ver}u${_jdk_update}-b${_jdk_build} pkgver=${_java_ver}.u${_jdk_update} -pkgrel=2 +pkgrel=1 pkgdesc='Java OpenJFX 8 client application platform (open-source implementation of JavaFX)' arch=('i686' 'x86_64') url='https://wiki.openjdk.java.net/display/OpenJFX/Main'