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 2020/06/06 08:14:47 UTC

[maven-site] branch master updated: typo fix

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-site.git


The following commit(s) were added to refs/heads/master by this push:
     new 6fbaedb  typo fix
6fbaedb is described below

commit 6fbaedb64f499f5fd2113463b115c4f267efa20b
Author: Hervé Boutemy <hb...@apache.org>
AuthorDate: Sat Jun 6 10:14:38 2020 +0200

    typo fix
---
 content/apt/guides/mini/guide-3rd-party-jars-local.apt | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/content/apt/guides/mini/guide-3rd-party-jars-local.apt b/content/apt/guides/mini/guide-3rd-party-jars-local.apt
index 2c66fb2..d122a2e 100644
--- a/content/apt/guides/mini/guide-3rd-party-jars-local.apt
+++ b/content/apt/guides/mini/guide-3rd-party-jars-local.apt
@@ -34,10 +34,10 @@ Guide to installing 3rd party JARs
  The JARs must be placed in the local repository in the correct place in order for it to be correctly
  picked up by Apache Maven.
 
-To make this easier, and less error prone, we have provided an <<install-file>> goal in the 
+ To make this easier, and less error prone, we have provided an <<install-file>> goal in the 
  {{{/plugins/maven-install-plugin/}maven-install-plugin}} which should make this relatively painless. 
 
-To install a JAR in the local repository use the following command:
+ To install a JAR in the local repository use the following command:
 
 ----
 mvn install:install-file -Dfile=<path-to-file> -DgroupId=<group-id> -DartifactId=<artifact-id> -Dversion=<version> -Dpackaging=<packaging>