How can I get the version of the application (defined by tag version im pom) in quarkus specially?
问题 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 endpoint. This worked very well. @GET public Response getVersion() throws IOException { InputStream in = getClass().getClassLoader().getResourceAsStream("buildInfo.properties"); if (in == null) { return Response.noContent().build(); } Properties props = new Properties(); props.load(in); JsonObjectBuilder propertiesBuilder = Json