We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Hi there,
I have created a new project in IntelliJ and when I try to use your plugin I get "Unresolved reference: lwjgl"
plugins { id("org.lwjgl.plugin") version "0.0.34" kotlin("jvm") version "1.9.0" application } group = "org.example" version = "1.0-SNAPSHOT" repositories { mavenCentral() } dependencies { testImplementation(kotlin("test")) lwjgl { implementation(Preset.everything) } } tasks.test { useJUnitPlatform() } kotlin { jvmToolchain(8) } application { mainClass.set("MainKt") }
Thanks for any help!
The text was updated successfully, but these errors were encountered:
Hello. Use the following solution for Groovy:
import org.lwjgl.Lwjgl plugins { id 'org.lwjgl.plugin' version '0.0.34' } repositories { mavenCentral() } Lwjgl.INSTANCE.implementation(dependencies, Lwjgl.Preset.everything)
Sorry, something went wrong.
Please re-open if still valid
No branches or pull requests
Hi there,
I have created a new project in IntelliJ and when I try to use your plugin I get "Unresolved reference: lwjgl"
Thanks for any help!
The text was updated successfully, but these errors were encountered: