JImageHash icon indicating copy to clipboard operation
JImageHash copied to clipboard

Can this be built with Java 17? Do you see a issue with that?

Open gmaxim-byx opened this issue 2 years ago • 1 comments

Can this be built with Java 17? Do you see a issue with that? @KilianB

gmaxim-byx avatar Jan 16 '23 09:01 gmaxim-byx

Hey this is a little late, but I've got it working with Java 20:

build.gradle

plugins {
    id 'java'
    id 'org.openjfx.javafxplugin' version '0.0.14'
}

// ...

dependencies {
   implementation group: 'dev.brachtendorf', name: 'JImageHash', version: '1.0.0'
   implementation group: 'org.openjfx', name: 'javafx', version: '20.0.2', ext: 'pom'
   // ...
}

javafx {
    version = "20"
    modules = [ 'javafx.base', 'javafx.graphics' ]
}

ArrowM avatar Aug 10 '23 19:08 ArrowM