In quarkus Java you can set a configuration property by defining it in application.properties. This can be used in some class like this:
@ApplicationScoped
public class SomeClass {
@ConfigProperty(name = "some.config")
String someConfig;
}
How do you achieve the same in Kotlin?