I moved from a plain Java EE application to quarkus.io. In Java EE I had the a properties file with version=${project.version} and reeading this file in an JAX RS
version=${project.version}
Try
@ConfigProperty(name = "quarkus.application.version") String version;
Also you can read the Implementation-Version from the manifest.