You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by hb...@apache.org on 2019/09/08 14:57:25 UTC

[maven-archiver] branch master updated: MSHARED-834 add an API to defined Created-By manifest entry value

This is an automated email from the ASF dual-hosted git repository.

hboutemy pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/maven-archiver.git


The following commit(s) were added to refs/heads/master by this push:
     new b38ba9a  MSHARED-834 add an API to defined Created-By manifest entry value
b38ba9a is described below

commit b38ba9aca5dfa975a781cdc1022da307ac6df328
Author: Hervé Boutemy <hb...@apache.org>
AuthorDate: Sun Sep 8 16:57:22 2019 +0200

    MSHARED-834 add an API to defined Created-By manifest entry value
---
 .../org/apache/maven/archiver/MavenArchiver.java   | 37 ++++++++++++++++++----
 1 file changed, 31 insertions(+), 6 deletions(-)

diff --git a/src/main/java/org/apache/maven/archiver/MavenArchiver.java b/src/main/java/org/apache/maven/archiver/MavenArchiver.java
index 2922f6e..c2d01be 100644
--- a/src/main/java/org/apache/maven/archiver/MavenArchiver.java
+++ b/src/main/java/org/apache/maven/archiver/MavenArchiver.java
@@ -105,6 +105,8 @@ public class MavenArchiver
 
     private File archiveFile;
 
+    private String createdBy;
+
     /**
      * @param session The Maven Session.
      * @param project The Maven Project.
@@ -672,11 +674,10 @@ public class MavenArchiver
     private void handleDefaultEntries( Manifest m, Map<String, String> entries )
         throws ManifestException
     {
-         String createdBy = CREATED_BY;
-         String archiverVersion = getArchiverVersion();
-         if ( archiverVersion != null )
+         String createdBy = this.createdBy;
+         if ( createdBy == null )
          {
-             createdBy += " " + archiverVersion;
+             createdBy = createdBy( CREATED_BY, "org.apache.maven", "maven-archiver" );
          }
          addManifestAttribute( m, entries, "Created-By", createdBy );
          addManifestAttribute( m, entries, "Build-Jdk-Spec", System.getProperty( "java.specification.version" ) );
@@ -709,12 +710,36 @@ public class MavenArchiver
         return null;
     }
 
-    private static String getArchiverVersion()
+    private static String getCreatedByVersion( String groupId, String artifactId )
     {
         final Properties properties = PropertyUtils.loadOptionalProperties( MavenArchiver.class.getResourceAsStream(
-            "/META-INF/maven/org.apache.maven/maven-archiver/pom.properties" ) );
+            "/META-INF/maven/" + groupId + "/" + artifactId + "/pom.properties" ) );
 
         return properties.getProperty( "version" );
     }
 
+    /**
+     * Define a value for "Created By" entry.
+     * 
+     * @param description description of the plugin, like "Maven Source Plugin"
+     * @param groupId groupId where to get version in pom.properties
+     * @param artifactId artifactId where to get version in pom.properties
+     * @since 3.5.0
+     */
+    public void setCreatedBy( String description, String groupId, String artifactId )
+    {
+        createdBy = createdBy( description, groupId, artifactId );
+    }
+
+    private String createdBy( String description, String groupId, String artifactId )
+    {
+        String createdBy = description;
+        String version = getCreatedByVersion( groupId, artifactId );
+        if ( version != null )
+        {
+            createdBy += " " + version;
+        }
+        return createdBy;
+    }
+
 }