I just wanted to update my project from ktor 2.3.3...
# ktor
s
I just wanted to update my project from ktor 2.3.3 to 2.3.4, but I get
e: file:///<my path>/backendjvm/build.gradle.kts:17:42: Unresolved reference: JreVersion.
Any idea why that is? The code in gradle is in the ktor docker configuration:
Copy code
ktor {
	docker {
		jreVersion.set(io.ktor.plugin.features.JreVersion.JRE_17)
		localImageName.set("my-app")
		portMappings.set(
			listOf(
				DockerPortMapping(
					5009,
					8080,
					DockerPortMappingProtocol.TCP
				)
			)
		)
	}
}
d
Jep i have the Same problem 😞
a
This is a known issue