is this no longer the correct way to introduce a d...
# getting-started
k
is this no longer the correct way to introduce a dependency in Gradle 7.6?
Copy code
dependencies {
    implementation("no.tornado:tornadofx:1.7.20")
}
because all I'm getting is Unresolved reference: implementation
e
it should work in any build script where a plugin has registered an
implementation
configuration. is this something that used to work and doesn't anymore, or are you creating a new buildscript?
k
I've managed to get the same lib working with maven in the past but I'd much rather use gradle if possible
e
you need to have
Copy code
plugins {
    kotlin("jvm")
}
or similar, it's just not written there because it's so standard
k
I have, I started out with the default one IDEA gives you
e
can you share your whole buildscript?
(also in the future, #gradle would be more appropriate, or see links there for the Gradle Community Slack)