Is there any reason why you don't update the plugi...
# korge
s
Is there any reason why you don't update the plugin there https://plugins.gradle.org/plugin/com.soywiz.korge ? I think
plugins
DSL is more convenient for me but it seems I can't use it because there is no up-to-date plugin at Gradle Plugins Portal...
Oh, sorry, seems I can define other repos for plugins:
Copy code
// settings.gradle.kts
pluginManagement {
    val korgePluginVersion: String by settings

    repositories {
        maven("<https://dl.bintray.com/korlibs/korlibs>")
        maven("<https://plugins.gradle.org/m2/>")
    }

    plugins {
        id("com.soywiz.korge") version korgePluginVersion
    }
}
However, with the latest version uploaded, I could omit these 5 lines added by
repositories
block...
d
I think there were issues with latest versions uploaded to gradle plugin repository. I can try again. Maybe now it works
🙏 1