Hi, I have been trying to use the following code in QaModule to set the application version using the same as the maven version. It doesn't seem to work, the manifest is under /META-INF. I'm using Jetty 6.1.16 both with the WAR and unpacked as a directory, same result, null. String version = QaModule.class.getPackage().getImplementationVersion();
if (version != null) { configuration.add(SymbolConstants.APPLICATION_VERSION, version+ "(QA)"); } I thought I had this working in earlier versions of the code. Anyone else had any success setting app version out of a manifest like above? John