Hi In the app engine deployment documentation ther...
# ktor
j
Hi In the app engine deployment documentation there is an error in the configuration of the artifact (point 3) : https://ktor.io/docs/google-app-engine.html#configure-app-engine-settings
Copy code
appengine {
    stage {
        artifact = "build/libs/$project.name-$project.version-all.jar"
    }
So missing some curly braces:
Copy code
appengine {
    stage {
        artifact = "build/libs/${project.name}-${project.version}-all.jar"
    }
d
Hi, thank you for the feedback. Groovy doc says that ‘curly braces may be omitted for unambiguous dotted expressions’. I’ve checked in a console, both variants return the same result
j
Yes but when migrating to kotlin it start complaining so I think better use it
d
thanks, I’ve updated the example for more convenient migration