lwjgl3-gradle icon indicating copy to clipboard operation
lwjgl3-gradle copied to clipboard

Unresolved reference: lwjgl

Open RefuX opened this issue 1 year ago • 1 comments

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!

RefuX avatar Sep 19 '23 08:09 RefuX