Skip to content

Commit

Permalink
Remove OpenIDE-Module-Build-Version attribute in manifest (fixes #23)
Browse files Browse the repository at this point in the history
  • Loading branch information
Zlika committed May 29, 2018
1 parent d1099ae commit 543f3be
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
7 changes: 7 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
Next Release
===========
Features
--------
* [#17](https://github.com/Zlika/reproducible-build-maven-plugin/issues/17): Add user-configurable list of additional manifest attributes to remove.
* [#23](https://github.com/Zlika/reproducible-build-maven-plugin/issues/23): Remove OpenIDE-Module-Build-Version attribute in manifest.

Release 0.6 (2018/04/30)
===========
Features
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,8 @@
public final class ManifestStripper implements Stripper
{
private static final String[] DEFAULT_ATTRIBUTES =
{ "Built-By", "Created-By", "Build-Jdk", "Build-Date", "Build-Time", "Bnd-LastModified" };
{ "Built-By", "Created-By", "Build-Jdk", "Build-Date", "Build-Time",
"Bnd-LastModified", "OpenIDE-Module-Build-Version" };
private final List<String> manifestAttributes;

/**
Expand Down

0 comments on commit 543f3be

Please sign in to comment.