I am trying to configure the Gradle to run fetch the imgui dependencies, but have been so far unsuccessful. I have tried different variants of -SNAPSHOT and v1.79, to no avail. Here is my build.gradle.kts script:
import org.gradle.internal.os.OperatingSystem
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
plugins {
application
kotlin("jvm") version "1.4.21"
}
group = "me.breandan"
version = "1.0-SNAPSHOT"
repositories {
mavenCentral()
maven("https://dl.bintray.com/kotlin/kotlin-dev")
maven("https://oss.sonatype.org/content/repositories/snapshots/")
maven("https://jitpack.io")
}
application.mainClass.set("HelloImGuiKt")
dependencies {
implementation(platform("org.jetbrains.kotlin:kotlin-bom"))
implementation("org.jetbrains.kotlin:kotlin-stdlib-jdk8")
compile("com.github.kotlin-graphics:imgui:-SNAPSHOT")
val lwjglNatives = when (OperatingSystem.current()) {
OperatingSystem.WINDOWS -> "natives-windows"
OperatingSystem.LINUX -> "natives-linux"
OperatingSystem.MAC_OS -> "natives-macos"
else -> ""
}
// Look up which modules and versions of LWJGL are required and add setup the approriate natives.
configurations["compile"].resolvedConfiguration.resolvedArtifacts.forEach {
if (it.moduleVersion.id.group == "org.lwjgl") {
"runtime"("org.lwjgl:${it.moduleVersion.id.name}:${it.moduleVersion.id.version}:$lwjglNatives")
}
}
}
tasks.withType<KotlinCompile> {
kotlinOptions.jvmTarget = "1.8"
}
When I run ./gradlew run, I receive the following error message:
Click to expand!
FAILURE: Build failed with an exception.
* Where:
Build file '/home/breandan/IdeaProjects/HelloImGui/build.gradle.kts' line: 35
* What went wrong:
Could not resolve all dependencies for configuration ':compile'.
> Could not find org.lwjgl:lwjgl:.
Required by:
project : > com.github.kotlin-graphics:imgui:-SNAPSHOT:b339be6257-1 > com.github.kotlin-graphics.imgui:bgfx:-SNAPSHOT:b339be6257-1
project : > com.github.kotlin-graphics:imgui:-SNAPSHOT:b339be6257-1 > com.github.kotlin-graphics.imgui:core:-SNAPSHOT:b339be6257-1
project : > com.github.kotlin-graphics:imgui:-SNAPSHOT:b339be6257-1 > com.github.kotlin-graphics.imgui:gl:-SNAPSHOT:b339be6257-1
project : > com.github.kotlin-graphics:imgui:-SNAPSHOT:b339be6257-1 > com.github.kotlin-graphics.imgui:glfw:-SNAPSHOT:b339be6257-1
project : > com.github.kotlin-graphics:imgui:-SNAPSHOT:b339be6257-1 > com.github.kotlin-graphics.imgui:openjfx:-SNAPSHOT:b339be6257-1
project : > com.github.kotlin-graphics:imgui:-SNAPSHOT:b339be6257-1 > com.github.kotlin-graphics.imgui:vk:-SNAPSHOT:b339be6257-1
project : > com.github.kotlin-graphics:imgui:-SNAPSHOT:b339be6257-1 > com.github.kotlin-graphics.imgui:bgfx:-SNAPSHOT:b339be6257-1 > com.github.kotlin-graphics:kool:b393e4c2
project : > com.github.kotlin-graphics:imgui:-SNAPSHOT:b339be6257-1 > com.github.kotlin-graphics.imgui:gl:-SNAPSHOT:b339be6257-1 > com.github.kotlin-graphics:gln:3e59f9ea
project : > com.github.kotlin-graphics:imgui:-SNAPSHOT:b339be6257-1 > com.github.kotlin-graphics.imgui:gl:-SNAPSHOT:b339be6257-1 > com.github.kotlin-graphics.uno-sdk:core:f60532b7
project : > com.github.kotlin-graphics:imgui:-SNAPSHOT:b339be6257-1 > com.github.kotlin-graphics.imgui:vk:-SNAPSHOT:b339be6257-1 > com.github.kotlin-graphics:vkk:cd252353
project : > com.github.kotlin-graphics:imgui:-SNAPSHOT:b339be6257-1 > com.github.kotlin-graphics.imgui:bgfx:-SNAPSHOT:b339be6257-1 > com.github.kotlin-graphics:uno-sdk:f60532b7 > com.github.kotlin-graphics.uno-sdk:awt:f60532b7
project : > com.github.kotlin-graphics:imgui:-SNAPSHOT:b339be6257-1 > com.github.kotlin-graphics.imgui:bgfx:-SNAPSHOT:b339be6257-1 > com.github.kotlin-graphics:uno-sdk:f60532b7 > com.github.kotlin-graphics.uno-sdk:vk:f60532b7
project : > com.github.kotlin-graphics:imgui:-SNAPSHOT:b339be6257-1 > com.github.kotlin-graphics.imgui:bgfx:-SNAPSHOT:b339be6257-1 > com.github.kotlin-graphics:glm:3466fcde
project : > com.github.kotlin-graphics:imgui:-SNAPSHOT:b339be6257-1 > com.github.kotlin-graphics.imgui:core:-SNAPSHOT:b339be6257-1 > com.github.kotlin-graphics:gli:01358f8c
> Could not find org.lwjgl:lwjgl-glfw:.
Required by:
project : > com.github.kotlin-graphics:imgui:-SNAPSHOT:b339be6257-1 > com.github.kotlin-graphics.imgui:bgfx:-SNAPSHOT:b339be6257-1
project : > com.github.kotlin-graphics:imgui:-SNAPSHOT:b339be6257-1 > com.github.kotlin-graphics.imgui:gl:-SNAPSHOT:b339be6257-1
project : > com.github.kotlin-graphics:imgui:-SNAPSHOT:b339be6257-1 > com.github.kotlin-graphics.imgui:glfw:-SNAPSHOT:b339be6257-1
project : > com.github.kotlin-graphics:imgui:-SNAPSHOT:b339be6257-1 > com.github.kotlin-graphics.imgui:vk:-SNAPSHOT:b339be6257-1
project : > com.github.kotlin-graphics:imgui:-SNAPSHOT:b339be6257-1 > com.github.kotlin-graphics.imgui:gl:-SNAPSHOT:b339be6257-1 > com.github.kotlin-graphics:gln:3e59f9ea
project : > com.github.kotlin-graphics:imgui:-SNAPSHOT:b339be6257-1 > com.github.kotlin-graphics.imgui:gl:-SNAPSHOT:b339be6257-1 > com.github.kotlin-graphics.uno-sdk:core:f60532b7
project : > com.github.kotlin-graphics:imgui:-SNAPSHOT:b339be6257-1 > com.github.kotlin-graphics.imgui:bgfx:-SNAPSHOT:b339be6257-1 > com.github.kotlin-graphics:uno-sdk:f60532b7 > com.github.kotlin-graphics.uno-sdk:awt:f60532b7
project : > com.github.kotlin-graphics:imgui:-SNAPSHOT:b339be6257-1 > com.github.kotlin-graphics.imgui:bgfx:-SNAPSHOT:b339be6257-1 > com.github.kotlin-graphics:uno-sdk:f60532b7 > com.github.kotlin-graphics.uno-sdk:vk:f60532b7
project : > com.github.kotlin-graphics:imgui:-SNAPSHOT:b339be6257-1 > com.github.kotlin-graphics.imgui:bgfx:-SNAPSHOT:b339be6257-1 > com.github.kotlin-graphics:glm:3466fcde
> Could not find org.lwjgl:lwjgl-bgfx:.
Required by:
project : > com.github.kotlin-graphics:imgui:-SNAPSHOT:b339be6257-1 > com.github.kotlin-graphics.imgui:bgfx:-SNAPSHOT:b339be6257-1
> Could not find org.lwjgl:lwjgl-stb:.
Required by:
project : > com.github.kotlin-graphics:imgui:-SNAPSHOT:b339be6257-1 > com.github.kotlin-graphics.imgui:bgfx:-SNAPSHOT:b339be6257-1
project : > com.github.kotlin-graphics:imgui:-SNAPSHOT:b339be6257-1 > com.github.kotlin-graphics.imgui:core:-SNAPSHOT:b339be6257-1
project : > com.github.kotlin-graphics:imgui:-SNAPSHOT:b339be6257-1 > com.github.kotlin-graphics.imgui:gl:-SNAPSHOT:b339be6257-1
project : > com.github.kotlin-graphics:imgui:-SNAPSHOT:b339be6257-1 > com.github.kotlin-graphics.imgui:gl:-SNAPSHOT:b339be6257-1 > com.github.kotlin-graphics:gln:3e59f9ea
project : > com.github.kotlin-graphics:imgui:-SNAPSHOT:b339be6257-1 > com.github.kotlin-graphics.imgui:bgfx:-SNAPSHOT:b339be6257-1 > com.github.kotlin-graphics:glm:3466fcde
> Could not find org.lwjgl:lwjgl-jemalloc:.
Required by:
project : > com.github.kotlin-graphics:imgui:-SNAPSHOT:b339be6257-1 > com.github.kotlin-graphics.imgui:core:-SNAPSHOT:b339be6257-1
project : > com.github.kotlin-graphics:imgui:-SNAPSHOT:b339be6257-1 > com.github.kotlin-graphics.imgui:gl:-SNAPSHOT:b339be6257-1
project : > com.github.kotlin-graphics:imgui:-SNAPSHOT:b339be6257-1 > com.github.kotlin-graphics.imgui:bgfx:-SNAPSHOT:b339be6257-1 > com.github.kotlin-graphics:kool:b393e4c2
project : > com.github.kotlin-graphics:imgui:-SNAPSHOT:b339be6257-1 > com.github.kotlin-graphics.imgui:gl:-SNAPSHOT:b339be6257-1 > com.github.kotlin-graphics:gln:3e59f9ea
project : > com.github.kotlin-graphics:imgui:-SNAPSHOT:b339be6257-1 > com.github.kotlin-graphics.imgui:gl:-SNAPSHOT:b339be6257-1 > com.github.kotlin-graphics.uno-sdk:core:f60532b7
project : > com.github.kotlin-graphics:imgui:-SNAPSHOT:b339be6257-1 > com.github.kotlin-graphics.imgui:vk:-SNAPSHOT:b339be6257-1 > com.github.kotlin-graphics:vkk:cd252353
project : > com.github.kotlin-graphics:imgui:-SNAPSHOT:b339be6257-1 > com.github.kotlin-graphics.imgui:bgfx:-SNAPSHOT:b339be6257-1 > com.github.kotlin-graphics:uno-sdk:f60532b7 > com.github.kotlin-graphics.uno-sdk:awt:f60532b7
project : > com.github.kotlin-graphics:imgui:-SNAPSHOT:b339be6257-1 > com.github.kotlin-graphics.imgui:bgfx:-SNAPSHOT:b339be6257-1 > com.github.kotlin-graphics:uno-sdk:f60532b7 > com.github.kotlin-graphics.uno-sdk:vk:f60532b7
project : > com.github.kotlin-graphics:imgui:-SNAPSHOT:b339be6257-1 > com.github.kotlin-graphics.imgui:bgfx:-SNAPSHOT:b339be6257-1 > com.github.kotlin-graphics:glm:3466fcde
project : > com.github.kotlin-graphics:imgui:-SNAPSHOT:b339be6257-1 > com.github.kotlin-graphics.imgui:core:-SNAPSHOT:b339be6257-1 > com.github.kotlin-graphics:gli:01358f8c
> Could not find org.lwjgl:lwjgl-opengl:.
Required by:
project : > com.github.kotlin-graphics:imgui:-SNAPSHOT:b339be6257-1 > com.github.kotlin-graphics.imgui:gl:-SNAPSHOT:b339be6257-1
project : > com.github.kotlin-graphics:imgui:-SNAPSHOT:b339be6257-1 > com.github.kotlin-graphics.imgui:glfw:-SNAPSHOT:b339be6257-1
project : > com.github.kotlin-graphics:imgui:-SNAPSHOT:b339be6257-1 > com.github.kotlin-graphics.imgui:vk:-SNAPSHOT:b339be6257-1
project : > com.github.kotlin-graphics:imgui:-SNAPSHOT:b339be6257-1 > com.github.kotlin-graphics.imgui:gl:-SNAPSHOT:b339be6257-1 > com.github.kotlin-graphics:gln:3e59f9ea
project : > com.github.kotlin-graphics:imgui:-SNAPSHOT:b339be6257-1 > com.github.kotlin-graphics.imgui:gl:-SNAPSHOT:b339be6257-1 > com.github.kotlin-graphics.uno-sdk:core:f60532b7
project : > com.github.kotlin-graphics:imgui:-SNAPSHOT:b339be6257-1 > com.github.kotlin-graphics.imgui:bgfx:-SNAPSHOT:b339be6257-1 > com.github.kotlin-graphics:uno-sdk:f60532b7 > com.github.kotlin-graphics.uno-sdk:awt:f60532b7
project : > com.github.kotlin-graphics:imgui:-SNAPSHOT:b339be6257-1 > com.github.kotlin-graphics.imgui:bgfx:-SNAPSHOT:b339be6257-1 > com.github.kotlin-graphics:uno-sdk:f60532b7 > com.github.kotlin-graphics.uno-sdk:vk:f60532b7
project : > com.github.kotlin-graphics:imgui:-SNAPSHOT:b339be6257-1 > com.github.kotlin-graphics.imgui:bgfx:-SNAPSHOT:b339be6257-1 > com.github.kotlin-graphics:glm:3466fcde
project : > com.github.kotlin-graphics:imgui:-SNAPSHOT:b339be6257-1 > com.github.kotlin-graphics.imgui:core:-SNAPSHOT:b339be6257-1 > com.github.kotlin-graphics:gli:01358f8c
> Could not find org.lwjgl:lwjgl-remotery:.
Required by:
project : > com.github.kotlin-graphics:imgui:-SNAPSHOT:b339be6257-1 > com.github.kotlin-graphics.imgui:gl:-SNAPSHOT:b339be6257-1
project : > com.github.kotlin-graphics:imgui:-SNAPSHOT:b339be6257-1 > com.github.kotlin-graphics.imgui:glfw:-SNAPSHOT:b339be6257-1
project : > com.github.kotlin-graphics:imgui:-SNAPSHOT:b339be6257-1 > com.github.kotlin-graphics.imgui:vk:-SNAPSHOT:b339be6257-1
> Could not find org.lwjgl:lwjgl-vulkan:.
Required by:
project : > com.github.kotlin-graphics:imgui:-SNAPSHOT:b339be6257-1 > com.github.kotlin-graphics.imgui:vk:-SNAPSHOT:b339be6257-1
project : > com.github.kotlin-graphics:imgui:-SNAPSHOT:b339be6257-1 > com.github.kotlin-graphics.imgui:vk:-SNAPSHOT:b339be6257-1 > com.github.kotlin-graphics:vkk:cd252353
project : > com.github.kotlin-graphics:imgui:-SNAPSHOT:b339be6257-1 > com.github.kotlin-graphics.imgui:bgfx:-SNAPSHOT:b339be6257-1 > com.github.kotlin-graphics:uno-sdk:f60532b7 > com.github.kotlin-graphics.uno-sdk:vk:f60532b7
> Could not find org.lwjgl:lwjgl-openal:.
Required by:
project : > com.github.kotlin-graphics:imgui:-SNAPSHOT:b339be6257-1 > com.github.kotlin-graphics.imgui:gl:-SNAPSHOT:b339be6257-1 > com.github.kotlin-graphics:gln:3e59f9ea
project : > com.github.kotlin-graphics:imgui:-SNAPSHOT:b339be6257-1 > com.github.kotlin-graphics.imgui:bgfx:-SNAPSHOT:b339be6257-1 > com.github.kotlin-graphics:glm:3466fcde
> Could not find org.lwjgl:lwjgl-opengles:.
Required by:
project : > com.github.kotlin-graphics:imgui:-SNAPSHOT:b339be6257-1 > com.github.kotlin-graphics.imgui:gl:-SNAPSHOT:b339be6257-1 > com.github.kotlin-graphics:gln:3e59f9ea
> Could not find org.lwjgl:lwjgl-jawt:.
Required by:
project : > com.github.kotlin-graphics:imgui:-SNAPSHOT:b339be6257-1 > com.github.kotlin-graphics.imgui:bgfx:-SNAPSHOT:b339be6257-1 > com.github.kotlin-graphics:uno-sdk:f60532b7 > com.github.kotlin-graphics.uno-sdk:awt:f60532b7
* 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
Deprecated Gradle features were used in this build, making it incompatible with Gradle 7.0.
Use '--warning-mode all' to show the individual deprecation warnings.
See https://docs.gradle.org/6.8/userguide/command_line_interface.html#sec:command_line_warnings
BUILD FAILED in 2s
When I change the version to v1.79, this produces the following error:
Click to expand!
```
FAILURE: Build failed with an exception.
Could not find org.lwjgl:lwjgl:.
Required by:
project : > com.github.kotlin-graphics:imgui:v1.79 > com.github.kotlin-graphics.imgui:bgfx:v1.79
project : > com.github.kotlin-graphics:imgui:v1.79 > com.github.kotlin-graphics.imgui:core:v1.79
project : > com.github.kotlin-graphics:imgui:v1.79 > com.github.kotlin-graphics.imgui:gl:v1.79
project : > com.github.kotlin-graphics:imgui:v1.79 > com.github.kotlin-graphics.imgui:glfw:v1.79
project : > com.github.kotlin-graphics:imgui:v1.79 > com.github.kotlin-graphics.imgui:openjfx:v1.79
project : > com.github.kotlin-graphics:imgui:v1.79 > com.github.kotlin-graphics.imgui:vk:v1.79
project : > com.github.kotlin-graphics:imgui:v1.79 > com.github.kotlin-graphics.imgui:bgfx:v1.79 > com.github.kotlin-graphics:kool:b393e4c2
project : > com.github.kotlin-graphics:imgui:v1.79 > com.github.kotlin-graphics.imgui:core:v1.79 > com.github.kotlin-graphics:gli:01358f8c
project : > com.github.kotlin-graphics:imgui:v1.79 > com.github.kotlin-graphics.imgui:gl:v1.79 > com.github.kotlin-graphics:gln:3e59f9ea
project : > com.github.kotlin-graphics:imgui:v1.79 > com.github.kotlin-graphics.imgui:gl:v1.79 > com.github.kotlin-graphics.uno-sdk:core:2b06aa78
project : > com.github.kotlin-graphics:imgui:v1.79 > com.github.kotlin-graphics.imgui:vk:v1.79 > com.github.kotlin-graphics:vkk:b06075d1
project : > com.github.kotlin-graphics:imgui:v1.79 > com.github.kotlin-graphics.imgui:bgfx:v1.79 > com.github.kotlin-graphics:uno-sdk:2b06aa78 > com.github.kotlin-graphics.uno-sdk:awt:2b06aa78
project : > com.github.kotlin-graphics:imgui:v1.79 > com.github.kotlin-graphics.imgui:bgfx:v1.79 > com.github.kotlin-graphics:uno-sdk:2b06aa78 > com.github.kotlin-graphics.uno-sdk:vk:2b06aa78
project : > com.github.kotlin-graphics:imgui:v1.79 > com.github.kotlin-graphics.imgui:bgfx:v1.79 > com.github.kotlin-graphics:glm:3466fcde
Could not find org.lwjgl:lwjgl-glfw:.
Required by:
project : > com.github.kotlin-graphics:imgui:v1.79 > com.github.kotlin-graphics.imgui:bgfx:v1.79
project : > com.github.kotlin-graphics:imgui:v1.79 > com.github.kotlin-graphics.imgui:gl:v1.79
project : > com.github.kotlin-graphics:imgui:v1.79 > com.github.kotlin-graphics.imgui:glfw:v1.79
project : > com.github.kotlin-graphics:imgui:v1.79 > com.github.kotlin-graphics.imgui:vk:v1.79
project : > com.github.kotlin-graphics:imgui:v1.79 > com.github.kotlin-graphics.imgui:gl:v1.79 > com.github.kotlin-graphics:gln:3e59f9ea
project : > com.github.kotlin-graphics:imgui:v1.79 > com.github.kotlin-graphics.imgui:gl:v1.79 > com.github.kotlin-graphics.uno-sdk:core:2b06aa78
project : > com.github.kotlin-graphics:imgui:v1.79 > com.github.kotlin-graphics.imgui:bgfx:v1.79 > com.github.kotlin-graphics:uno-sdk:2b06aa78 > com.github.kotlin-graphics.uno-sdk:awt:2b06aa78
project : > com.github.kotlin-graphics:imgui:v1.79 > com.github.kotlin-graphics.imgui:bgfx:v1.79 > com.github.kotlin-graphics:uno-sdk:2b06aa78 > com.github.kotlin-graphics.uno-sdk:vk:2b06aa78
project : > com.github.kotlin-graphics:imgui:v1.79 > com.github.kotlin-graphics.imgui:bgfx:v1.79 > com.github.kotlin-graphics:glm:3466fcde
Could not find org.lwjgl:lwjgl-bgfx:.
Required by:
project : > com.github.kotlin-graphics:imgui:v1.79 > com.github.kotlin-graphics.imgui:bgfx:v1.79
Could not find org.lwjgl:lwjgl-stb:.
Required by:
project : > com.github.kotlin-graphics:imgui:v1.79 > com.github.kotlin-graphics.imgui:bgfx:v1.79
project : > com.github.kotlin-graphics:imgui:v1.79 > com.github.kotlin-graphics.imgui:core:v1.79
project : > com.github.kotlin-graphics:imgui:v1.79 > com.github.kotlin-graphics.imgui:gl:v1.79
project : > com.github.kotlin-graphics:imgui:v1.79 > com.github.kotlin-graphics.imgui:gl:v1.79 > com.github.kotlin-graphics:gln:3e59f9ea
project : > com.github.kotlin-graphics:imgui:v1.79 > com.github.kotlin-graphics.imgui:bgfx:v1.79 > com.github.kotlin-graphics:glm:3466fcde
Could not find org.lwjgl:lwjgl-jemalloc:.
Required by:
project : > com.github.kotlin-graphics:imgui:v1.79 > com.github.kotlin-graphics.imgui:core:v1.79
project : > com.github.kotlin-graphics:imgui:v1.79 > com.github.kotlin-graphics.imgui:gl:v1.79
project : > com.github.kotlin-graphics:imgui:v1.79 > com.github.kotlin-graphics.imgui:bgfx:v1.79 > com.github.kotlin-graphics:kool:b393e4c2
project : > com.github.kotlin-graphics:imgui:v1.79 > com.github.kotlin-graphics.imgui:core:v1.79 > com.github.kotlin-graphics:gli:01358f8c
project : > com.github.kotlin-graphics:imgui:v1.79 > com.github.kotlin-graphics.imgui:gl:v1.79 > com.github.kotlin-graphics:gln:3e59f9ea
project : > com.github.kotlin-graphics:imgui:v1.79 > com.github.kotlin-graphics.imgui:gl:v1.79 > com.github.kotlin-graphics.uno-sdk:core:2b06aa78
project : > com.github.kotlin-graphics:imgui:v1.79 > com.github.kotlin-graphics.imgui:vk:v1.79 > com.github.kotlin-graphics:vkk:b06075d1
project : > com.github.kotlin-graphics:imgui:v1.79 > com.github.kotlin-graphics.imgui:bgfx:v1.79 > com.github.kotlin-graphics:uno-sdk:2b06aa78 > com.github.kotlin-graphics.uno-sdk:awt:2b06aa78
project : > com.github.kotlin-graphics:imgui:v1.79 > com.github.kotlin-graphics.imgui:bgfx:v1.79 > com.github.kotlin-graphics:uno-sdk:2b06aa78 > com.github.kotlin-graphics.uno-sdk:vk:2b06aa78
project : > com.github.kotlin-graphics:imgui:v1.79 > com.github.kotlin-graphics.imgui:bgfx:v1.79 > com.github.kotlin-graphics:glm:3466fcde
Could not find org.lwjgl:lwjgl-opengl:.
Required by:
project : > com.github.kotlin-graphics:imgui:v1.79 > com.github.kotlin-graphics.imgui:gl:v1.79
project : > com.github.kotlin-graphics:imgui:v1.79 > com.github.kotlin-graphics.imgui:glfw:v1.79
project : > com.github.kotlin-graphics:imgui:v1.79 > com.github.kotlin-graphics.imgui:vk:v1.79
project : > com.github.kotlin-graphics:imgui:v1.79 > com.github.kotlin-graphics.imgui:core:v1.79 > com.github.kotlin-graphics:gli:01358f8c
project : > com.github.kotlin-graphics:imgui:v1.79 > com.github.kotlin-graphics.imgui:gl:v1.79 > com.github.kotlin-graphics:gln:3e59f9ea
project : > com.github.kotlin-graphics:imgui:v1.79 > com.github.kotlin-graphics.imgui:gl:v1.79 > com.github.kotlin-graphics.uno-sdk:core:2b06aa78
project : > com.github.kotlin-graphics:imgui:v1.79 > com.github.kotlin-graphics.imgui:bgfx:v1.79 > com.github.kotlin-graphics:uno-sdk:2b06aa78 > com.github.kotlin-graphics.uno-sdk:awt:2b06aa78
project : > com.github.kotlin-graphics:imgui:v1.79 > com.github.kotlin-graphics.imgui:bgfx:v1.79 > com.github.kotlin-graphics:uno-sdk:2b06aa78 > com.github.kotlin-graphics.uno-sdk:vk:2b06aa78
project : > com.github.kotlin-graphics:imgui:v1.79 > com.github.kotlin-graphics.imgui:bgfx:v1.79 > com.github.kotlin-graphics:glm:3466fcde
Could not find org.lwjgl:lwjgl-remotery:.
Required by:
project : > com.github.kotlin-graphics:imgui:v1.79 > com.github.kotlin-graphics.imgui:gl:v1.79
project : > com.github.kotlin-graphics:imgui:v1.79 > com.github.kotlin-graphics.imgui:glfw:v1.79
project : > com.github.kotlin-graphics:imgui:v1.79 > com.github.kotlin-graphics.imgui:vk:v1.79
Could not find org.lwjgl:lwjgl-vulkan:.
Required by:
project : > com.github.kotlin-graphics:imgui:v1.79 > com.github.kotlin-graphics.imgui:vk:v1.79
project : > com.github.kotlin-graphics:imgui:v1.79 > com.github.kotlin-graphics.imgui:vk:v1.79 > com.github.kotlin-graphics:vkk:b06075d1
project : > com.github.kotlin-graphics:imgui:v1.79 > com.github.kotlin-graphics.imgui:bgfx:v1.79 > com.github.kotlin-graphics:uno-sdk:2b06aa78 > com.github.kotlin-graphics.uno-sdk:vk:2b06aa78
Could not find org.lwjgl:lwjgl-openal:.
Required by:
project : > com.github.kotlin-graphics:imgui:v1.79 > com.github.kotlin-graphics.imgui:gl:v1.79 > com.github.kotlin-graphics:gln:3e59f9ea
project : > com.github.kotlin-graphics:imgui:v1.79 > com.github.kotlin-graphics.imgui:bgfx:v1.79 > com.github.kotlin-graphics:glm:3466fcde
Could not find org.lwjgl:lwjgl-opengles:.
Required by:
project : > com.github.kotlin-graphics:imgui:v1.79 > com.github.kotlin-graphics.imgui:gl:v1.79 > com.github.kotlin-graphics:gln:3e59f9ea
Could not find org.lwjgl:lwjgl-jawt:.
Required by:
project : > com.github.kotlin-graphics:imgui:v1.79 > com.github.kotlin-graphics.imgui:bgfx:v1.79 > com.github.kotlin-graphics:uno-sdk:2b06aa78 > com.github.kotlin-graphics.uno-sdk:awt:2b06aa78
Deprecated Gradle features were used in this build, making it incompatible with Gradle 7.0.
Use '--warning-mode all' to show the individual deprecation warnings.
See https://docs.gradle.org/6.8/userguide/command_line_interface.html#sec:command_line_warnings
BUILD FAILED in 1s
I am trying to configure the Gradle to run fetch the imgui dependencies, but have been so far unsuccessful. I have tried different variants of
-SNAPSHOTandv1.79, to no avail. Here is mybuild.gradle.ktsscript:When I run
./gradlew run, I receive the following error message:Click to expand!
When I change the version to
v1.79, this produces the following error:Click to expand!
```FAILURE: Build failed with an exception.
Where:
Build file '/home/breandan/IdeaProjects/HelloImGui/build.gradle.kts' line: 35
What went wrong:
Could not resolve all dependencies for configuration ':compile'.
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
Deprecated Gradle features were used in this build, making it incompatible with Gradle 7.0.
Use '--warning-mode all' to show the individual deprecation warnings.
See https://docs.gradle.org/6.8/userguide/command_line_interface.html#sec:command_line_warnings
BUILD FAILED in 1s