-
Notifications
You must be signed in to change notification settings - Fork 64
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Documentation on the Gradle Task is outdated/incomplete #42
Comments
Also, you mention Java-8 as a requirement. However, this seems to be misleading as it yields into a are@archlinux ~/d/s/J/JSQLFormatter (main) [1]> JAVA_HOME=/usr/lib/jvm/java-8-openjdk gradle --no-build-cache wasm
FAILURE: Build failed with an exception.
* What went wrong:
java.lang.UnsupportedClassVersionError: de/inetsoftware/jwebassembly/gradle/WasmPlugin has been compiled by a more recent version of the Java Runtime (class file version 55.0), this version of the Java Runtime only recognizes class file versions up to 52.0
> de/inetsoftware/jwebassembly/gradle/WasmPlugin has been compiled by a more recent version of the Java Runtime (class file version 55.0), this version of the Java Runtime only recognizes class file versions up to 52.0
* Try:
> Run with --stacktrace option to get the stack trace.
> Run with --info or --debug option to get more log output.
> Run with --scan to get full insights.
* Get more help at https://help.gradle.org
BUILD FAILED in 355ms
<-------------> 0% WAITING |
This is strange. I will check this out. Shouldn't be. Must have been an error when deploying the Gradle plugin. |
buildscript { apply plugin: 'de.inetsoftware.jwebassembly' group 'org.pepperoni' repositories { } sourceSets { } wasm {
} |
Working build.gradle, java 8, also so this |
@Eskerepvp you have a typo on the "this" link above. (it has an extra 'l' at the end). The corrected link is: Thanks for sharing that I was actually looking for it, I guess it was a good Idea for me to start tinkering with JWebAssembly today since I have been postponing that for a while now, and you just provided that yesterday hahaha. I was noticing that apparently the project is lacking maintainers, based on the Question you opened. Would you mind sharing any info you have found to get started? I would also like contributing to this. Greetings |
1 : Oops also thats outdated... 2: I haven't actually looked at the source code of JWebAssembly itself, only the API. But I have found some issues, the biggest one being that Kotlin doesn't work :( I made a web framework for JWebAssembly-API if you would like to check it out! Contributing would be nice, fixing my spaghetti code, and adding some of the features in the todo list would be greatly appreciated. |
Greetings.
Thank you for providing this project, I have an high interest in it.
Although I have had a hard time to even follow the most basic
Getting Started
instructions. The information seems to be outdated. Below is the Gradle 7.4 configuration, which seems to work:Putting this into
build gradle
I have been able to import theExport
annotation and to annotate my Java Method.The text was updated successfully, but these errors were encountered: