Update maven-source-plugin to 2.1 and add default entries to manifest
---------------------------------------------------------------------

                 Key: COMMONSSITE-40
                 URL: https://issues.apache.org/jira/browse/COMMONSSITE-40
             Project: Commons All
          Issue Type: Improvement
          Components: Commons Parent Pom
            Reporter: Sebb


The maven-source-plugin now supports default manifest entries, provided one 
uses at least version 2.1

AFAICS, two changes are needed:

Update version to 2.1 in <pluginManagement>

Add plugin configuration section:
{code}
<plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-source-plugin</artifactId>
        <configuration>
          <archive>
            <manifest>
              
<addDefaultImplementationEntries>true</addDefaultImplementationEntries>
              
<addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
            </manifest>
          </archive>
        </configuration>
</plugin>
{code}


-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.

Reply via email to