You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by el...@apache.org on 2020/04/13 14:33:18 UTC

[maven-jar-plugin] 01/01: [MNGSITE-393] remove more pre Maven 3 content

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

elharo pushed a commit to branch elharo-patch-1
in repository https://gitbox.apache.org/repos/asf/maven-jar-plugin.git

commit e07675a0678ebe876c453944592b1fb9723f6881
Author: Elliotte Rusty Harold <el...@users.noreply.github.com>
AuthorDate: Mon Apr 13 10:33:07 2020 -0400

    [MNGSITE-393] remove more pre Maven 3 content
    
    @eolivelli
---
 src/site/apt/index.apt.vm | 33 ---------------------------------
 1 file changed, 33 deletions(-)

diff --git a/src/site/apt/index.apt.vm b/src/site/apt/index.apt.vm
index 5f63cb7..be03d36 100644
--- a/src/site/apt/index.apt.vm
+++ b/src/site/apt/index.apt.vm
@@ -38,39 +38,6 @@ ${project.name}
 
   * {{{./test-jar-mojo.html}jar:test-jar}} create a jar file for your project test classes .
 
-  []
-
-* Major Version Upgrade to version 3.0.0
-
-  Please note that the following parameter has been completely removed from the plugin configuration:
-
-  * useDefaultManifestFile
-
-  If you need to define your own <<MANIFEST.MF>> file you can simply achieve that via
-  {{{http://maven.apache.org/shared/maven-archiver/index.html}Maven Archiver}} configuration
-  like in the following example:
-
-+-----------------+
-<project>
-  ...
-  <build>
-    <plugins>
-      <plugin>
-        <groupId>org.apache.maven.plugins</groupId>
-        <artifactId>maven-jar-plugin</artifactId>
-        <version>${project.version}</version>
-        <configuration>
-          <archive>
-            <manifestFile>\${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile>
-          </archive>
-        </configuration>
-        ...
-      </plugin>
-    </plugins>
-  </build>
-  ...
-</project>
-+-----------------+
 
 * Usage