diff options
author | James Moger <james.moger@gitblit.com> | 2016-04-05 12:48:23 -0400 |
---|---|---|
committer | James Moger <james.moger@gitblit.com> | 2016-04-05 12:48:23 -0400 |
commit | 41c43bdfd3de2029f61e1f5de6d335d167a967cc (patch) | |
tree | 44d015338d00575c61859c34123d47095c5c97db /pom.xml | |
parent | bb87e621eefd97872aa1a619d38c166b2f07db84 (diff) | |
download | iciql-41c43bdfd3de2029f61e1f5de6d335d167a967cc.tar.gz iciql-41c43bdfd3de2029f61e1f5de6d335d167a967cc.zip |
Restore manifest stamping
Diffstat (limited to 'pom.xml')
-rw-r--r-- | pom.xml | 15 |
1 files changed, 14 insertions, 1 deletions
@@ -197,11 +197,24 @@ </arguments> </configuration> </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-jar-plugin</artifactId> + <version>2.6</version> + <configuration> + <archive> + <manifestEntries> + <implementation-version>${project.version}</implementation-version> + <build-date>${maven.build.timestamp}</build-date> + </manifestEntries> + </archive> + </configuration> + </plugin> <!-- Release plugin --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> - <version>2.5</version> + <version>2.5.3</version> <configuration> <!-- install next final version in local repo, so that tests on archetypes work --> <preparationGoals>clean install</preparationGoals> |