I have used this how2 to add the Version number to our produkt: http://www.christophkiehl.com/easy-way-to-display-your-apps-version-using-maven-and-manifest

when i now build a jar with mvn assembly:single i see the correct version. But when i just run everything with mvn exec:java i get null...

what do i have to do that App.class.getPackage().getImplementationVersion() does not return null when i just start the programm from the non-jar?

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

The technique that you have used to add version number works only when built as a jar.

A different way to achieve the same would be to have a properties file which gets updated with the project version during build, which in turn is read by your java code.

Say, you have a file version.properties in src/main/resources, which has an entry

product.version=${project.version}

In the place you call App.class.getPackage().getImplementationVersion(), you read this property and display the contents.

This will work in both jar and non-jar case.

Update: You would need to update the pom to enable filtering for resources - essentially add a snippet like the below (refer this for details).

<resources>
  <resource>
    <directory>${basedir}/src/main/resources</directory>
    <filtering>true</filtering>
  </resource>
</resources>
link|improve this answer
do i have to add something to my pom file to extract the version to this properties file or does not work automaticly? – reox Dec 21 '11 at 11:08
@reox. Updated the answer with required pom changes. – Raghuram Dec 21 '11 at 12:31
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.