https://kotlinlang.org logo
#getting-started
Title
# getting-started
b

Bart

08/28/2021, 7:58 PM
Hello all! Im struggling with setting a ktorm in my project. I try to add dependencies in below way:
Implementation("org.ktorm:ktorm-core:${ktorm.version}")
Unfortunately its ending with error
Unresolved reference: ktorm
Any idea why? Following ktorm documentation it should work in this way :(
t

Tomasz Krakowiak

08/28/2021, 8:54 PM
Seems ktorm object is not defined. Why do you expect it to be defined?
It's probably related to
${ktorm.version}
👍 1
r

Richard Gomez

08/28/2021, 9:04 PM
${ktorm.version}
is likely meant as a placeholder for the latest version, not something you are meant to copy & paste directly. You should replace it with whatever the latest version is.
34 Views