Open memtech3 opened 2 years ago
JDK 11 requires libjpeg 7, but you only have libjpeg 8 or higher installed locally. I expect this is going to happen more frequently as people run newer Ubuntu versions. The fix is to install libjpeg 7. The two versions can coexist.
Looks like openjfx 12 was updated to libjpeg 9c. https://bugs.openjdk.java.net/browse/JDK-8203884
libjpeg 7 doesn't seem to be available in my apt repositories. Is there a recommended install method?
See if libjpeg62 works. It might be forward compatible with libjpeg7.
Also see #246.
libjpeg62 doesn't work
The only other recourse I see is compiling libjpeg7 yourself as per the issue Peter linked (was for Arch, so might not be possible on Ubuntu), or using Windows instead.
Building PathWeaver from source with a newer JDK might work too. I had to make the following changes for it to compile with a newer JDK version.
diff --git a/build.gradle b/build.gradle
index 26c69e8..b1a1ae1 100644
--- a/build.gradle
+++ b/build.gradle
@@ -9,10 +9,10 @@ import static org.gradle.api.artifacts.type.ArtifactTypeDefinition.ZIP_TYPE
plugins {
id 'java'
id 'application'
- id 'com.github.johnrengelman.shadow' version '7.1.1'
- id "com.jfrog.artifactory" version "4.16.0"
- id "com.diffplug.spotless" version "6.0.5"
- id "com.github.spotbugs" version "5.0.3"
+ id 'com.github.johnrengelman.shadow' version '7.1.2'
+ id "com.jfrog.artifactory" version "4.26.2"
+ id "com.diffplug.spotless" version "6.1.2"
+ id "com.github.spotbugs" version "5.0.4"
id 'maven-publish'
id 'idea'
id 'jacoco'
@@ -169,7 +169,7 @@ spotbugs {
}
jacoco {
- toolVersion = "0.8.5"
+ toolVersion = "0.8.7"
}
tasks.withType(JacocoReport).configureEach {
You'd run it with ./gradlew run
.
It still seems to require libjpeg7 though, despite running on a later JDK that's supposedly patched.
Describe the bug
Nothing happens when I click the Create Project button
To Reproduce
Steps to reproduce the behavior:
Expected behavior
I expected the create project form to pop up
Stacktrace
Screenshots
If applicable, add screenshots to help explain your problem.
Desktop (please complete the following information):
Additional context
When I run the pathweaver jar from the command line I get the following output