Skip to content

Commit a6449c7

Browse files
committed
Remove Created-By entry as it prevents reproducible builds and it is not useful
1 parent b4674dc commit a6449c7

File tree

3 files changed

+4
-51
lines changed

3 files changed

+4
-51
lines changed

src/main/java/org/codehaus/plexus/archiver/jar/JarArchiver.java

+1-15
Original file line numberDiff line numberDiff line change
@@ -144,11 +144,6 @@ public class JarArchiver
144144
*/
145145
private ArrayList<String> indexJars;
146146

147-
/**
148-
* Creates a minimal default manifest with {@code Manifest-Version: 1.0} only.
149-
*/
150-
private boolean minimalDefaultManifest = false;
151-
152147
/**
153148
* constructor
154149
*/
@@ -171,15 +166,6 @@ public void setIndex( boolean flag )
171166
index = flag;
172167
}
173168

174-
/**
175-
* Set whether the default manifest is minimal, thus having only {@code Manifest-Version: 1.0} in it.
176-
*
177-
* @param minimalDefaultManifest true to create minimal default manifest
178-
*/
179-
public void setMinimalDefaultManifest( boolean minimalDefaultManifest ) {
180-
this.minimalDefaultManifest = minimalDefaultManifest;
181-
}
182-
183169
@SuppressWarnings(
184170
{
185171
"JavaDoc", "UnusedDeclaration"
@@ -345,7 +331,7 @@ protected boolean hasVirtualFiles()
345331
protected Manifest createManifest()
346332
throws ArchiverException
347333
{
348-
Manifest finalManifest = Manifest.getDefaultManifest( minimalDefaultManifest );
334+
Manifest finalManifest = Manifest.getDefaultManifest();
349335

350336
if ( ( manifest == null ) && ( manifestFile != null ) )
351337
{

src/main/java/org/codehaus/plexus/archiver/jar/Manifest.java

+3-30
Original file line numberDiff line numberDiff line change
@@ -755,47 +755,20 @@ public Iterator<String> iterator()
755755
/**
756756
* Construct a manifest from Ant's default manifest file.
757757
*
758-
* @param minimalDefaultManifest
759-
* indicates whether a minimal manifest will be created, thus having only
760-
* {@code Manifest-Version: 1.0} in it.
761-
*
762758
* @return the default manifest.
763759
*
764-
* @throws ArchiverException
765-
* if there is a problem loading the default manifest
760+
* @throws ArchiverException if there is a problem loading the
761+
* default manifest
766762
*/
767-
public static Manifest getDefaultManifest( boolean minimalDefaultManifest )
763+
public static Manifest getDefaultManifest()
768764
throws ArchiverException
769765
{
770766
final Manifest defaultManifest = new Manifest();
771767
defaultManifest.getMainAttributes().putValue( "Manifest-Version", "1.0" );
772768

773-
if ( !minimalDefaultManifest )
774-
{
775-
String createdBy = "Plexus Archiver";
776-
777-
final String plexusArchiverVersion = JdkManifestFactory.getArchiverVersion();
778-
779-
if ( plexusArchiverVersion != null )
780-
{
781-
createdBy += " " + plexusArchiverVersion;
782-
}
783-
784-
defaultManifest.getMainAttributes().putValue( "Created-By", createdBy );
785-
}
786-
787769
return defaultManifest;
788770
}
789771

790-
/**
791-
* @see #getDefaultManifest(boolean)
792-
*/
793-
public static Manifest getDefaultManifest()
794-
throws ArchiverException
795-
{
796-
return getDefaultManifest( false );
797-
}
798-
799772
/**
800773
* Construct an empty manifest
801774
*/

src/test/java/org/codehaus/plexus/archiver/jar/ManifestTest.java

-6
Original file line numberDiff line numberDiff line change
@@ -217,12 +217,6 @@ public void testGetDefaultManifest()
217217
{
218218
java.util.jar.Manifest mf = Manifest.getDefaultManifest();
219219
java.util.jar.Attributes mainAttributes = mf.getMainAttributes();
220-
assertEquals( 2, mainAttributes.size() );
221-
assertTrue( mainAttributes.containsKey( new java.util.jar.Attributes.Name( "Manifest-Version" ) ) );
222-
assertTrue( mainAttributes.containsKey( new java.util.jar.Attributes.Name( "Created-By" ) ) );
223-
224-
mf = Manifest.getDefaultManifest( true );
225-
mainAttributes = mf.getMainAttributes();
226220
assertEquals( 1, mainAttributes.size() );
227221
assertTrue( mainAttributes.containsKey( new java.util.jar.Attributes.Name( "Manifest-Version" ) ) );
228222
}

0 commit comments

Comments
 (0)