What i need to do is retrieve project version from pom.xml from java code.
I'm currently use the snippet as the official documentation suggests:
@ConfigProperty(name = "version")
public String version;
application.properties :
version=${quarkus.platform.version}
Therefore seems like pom.xml properties is not available through application.properties without any boilerplate. Any ideas?