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

kwin pushed a commit to branch feature/apt-to-md-3.x
in repository https://gitbox.apache.org/repos/asf/maven-deploy-plugin.git

commit 49007aead50593e4e8f217a36010c7aaebde7b6e
Author: Konrad Windszus <[email protected]>
AuthorDate: Wed Sep 17 15:55:32 2025 +0200

    Move to match target converter format MARKDOWN with doxia-converter
---
 .../examples/deploy-ftp.md}                        |  0
 .../examples/deploy-network-issues.md}             |  2 +-
 .../examples/deploy-ssh-external.md}               |  0
 .../examples/deploying-in-legacy-layout.md}        |  0
 .../examples/deploying-sources-javadoc.md}         |  0
 .../examples/deploying-with-classifiers.md}        |  0
 .../examples/deploying-with-customized-pom.md}     |  0
 .../examples/disabling-generic-pom.md}             |  0
 .../file-deployment.md}                            |  0
 src/site/{apt/index.apt.vm => markdown/index.md}   | 26 +++++++++++-----------
 .../project-deployment.md}                         |  0
 src/site/{apt/usage.apt => markdown/usage.md}      |  0
 12 files changed, 14 insertions(+), 14 deletions(-)

diff --git a/src/site/apt/examples/deploy-ftp.apt 
b/src/site/markdown/examples/deploy-ftp.md
similarity index 100%
rename from src/site/apt/examples/deploy-ftp.apt
rename to src/site/markdown/examples/deploy-ftp.md
diff --git a/src/site/apt/examples/deploy-network-issues.apt 
b/src/site/markdown/examples/deploy-network-issues.md
similarity index 99%
rename from src/site/apt/examples/deploy-network-issues.apt
rename to src/site/markdown/examples/deploy-network-issues.md
index 9071891..eed119e 100644
--- a/src/site/apt/examples/deploy-network-issues.apt
+++ b/src/site/markdown/examples/deploy-network-issues.md
@@ -48,7 +48,7 @@ Deploying With Network Issues
         <artifactId>maven-deploy-plugin</artifactId>
         <configuration>
           <retryFailedDeploymentCount>3</retryFailedDeploymentCount>
-        <configuration>
+        </configuration>
       </plugin>
     </plugins>
   </build>
diff --git a/src/site/apt/examples/deploy-ssh-external.apt 
b/src/site/markdown/examples/deploy-ssh-external.md
similarity index 100%
rename from src/site/apt/examples/deploy-ssh-external.apt
rename to src/site/markdown/examples/deploy-ssh-external.md
diff --git a/src/site/apt/examples/deploying-in-legacy-layout.apt.vm 
b/src/site/markdown/examples/deploying-in-legacy-layout.md
similarity index 100%
rename from src/site/apt/examples/deploying-in-legacy-layout.apt.vm
rename to src/site/markdown/examples/deploying-in-legacy-layout.md
diff --git a/src/site/apt/examples/deploying-sources-javadoc.apt.vm 
b/src/site/markdown/examples/deploying-sources-javadoc.md
similarity index 100%
rename from src/site/apt/examples/deploying-sources-javadoc.apt.vm
rename to src/site/markdown/examples/deploying-sources-javadoc.md
diff --git a/src/site/apt/examples/deploying-with-classifiers.apt.vm 
b/src/site/markdown/examples/deploying-with-classifiers.md
similarity index 100%
rename from src/site/apt/examples/deploying-with-classifiers.apt.vm
rename to src/site/markdown/examples/deploying-with-classifiers.md
diff --git a/src/site/apt/examples/deploying-with-customized-pom.apt.vm 
b/src/site/markdown/examples/deploying-with-customized-pom.md
similarity index 100%
rename from src/site/apt/examples/deploying-with-customized-pom.apt.vm
rename to src/site/markdown/examples/deploying-with-customized-pom.md
diff --git a/src/site/apt/examples/disabling-generic-pom.apt.vm 
b/src/site/markdown/examples/disabling-generic-pom.md
similarity index 100%
rename from src/site/apt/examples/disabling-generic-pom.apt.vm
rename to src/site/markdown/examples/disabling-generic-pom.md
diff --git a/src/site/apt/file-deployment.apt 
b/src/site/markdown/file-deployment.md
similarity index 100%
rename from src/site/apt/file-deployment.apt
rename to src/site/markdown/file-deployment.md
diff --git a/src/site/apt/index.apt.vm b/src/site/markdown/index.md
similarity index 79%
rename from src/site/apt/index.apt.vm
rename to src/site/markdown/index.md
index 1ad2e42..a52dca9 100644
--- a/src/site/apt/index.apt.vm
+++ b/src/site/markdown/index.md
@@ -34,10 +34,10 @@ ${project.name}
   also be used to deploy a particular artifact (e.g. a third party jar like
   Sun's non redistributable reference implementations).
 
-  As a repository contains more than the artifacts (POMs, the metadata, MD5 and
-  SHA1 hash files...), deploying means not only copying the artifacts, but
-  making sure all this information is correctly updated. It's the reponsibility
-  of the deploy plugin.
+  As a repository contains more than JAR files (POMs, the metadata, MD5 and
+  SHA1 hash files...), deploying means not only uploading a single file, but
+  making sure all associated artifacts are correctly updated as well.
+  This is the reponsibility of the deploy plugin.
 
   To work, the deployment will require:
 
@@ -64,13 +64,13 @@ ${project.name}
   The deploy plugin has 2 goals:
 
   * {{{./deploy-mojo.html}deploy:deploy}} is used to automatically install the
-    artifact, its pom and the attached artifacts produced by a particular
+    artifact, its pom, and the attached artifacts produced by a particular
     project. Most if not all of the information related to the deployment is 
stored
     in the project's pom.
 
   * {{{./deploy-file-mojo.html}deploy:deploy-file}} is used to install a 
single artifact
-    along with its pom. In that case the artifact information can be taken from
-    an optionally specified pomFile, but can be completed/overriden using the
+    along with its pom. In that case, the artifact information can be taken 
from
+    an optionally specified pomFile, but can be completed/overridden using the
     command line.
 
    []
@@ -80,15 +80,15 @@ ${project.name}
   General instructions on how to use the Deploy Plugin can be found on the 
{{{./usage.html}usage page}}. Some more
   specific use cases are described in the examples given below.
 
-  In case you still have questions regarding the plugin's usage, please have a 
look at the {{{./faq.html}FAQ}} and feel
-  free to contact the {{{./mailing-lists.html}user mailing list}}. The posts 
to the mailing list are archived and could
+  If you have questions about the plugin's usage, please read the 
{{{./faq.html}FAQ}} and feel
+  free to contact the {{{./mailing-lists.html}user mailing list}}. Posts to 
the mailing list are archived and could
   already contain the answer to your question as part of an older thread. 
Hence, it is also worth browsing/searching
   the {{{./mailing-lists.html}mail archive}}.
 
-  If you feel like the plugin is missing a feature or has a defect, you can 
file a feature request or bug report in our
+  If you think the plugin is missing a feature or has a defect, you can file a 
feature request or bug report in our
   {{{./issue-management.html}issue tracker}}. When creating a new issue, 
please provide a comprehensive description of your
-  concern. Especially for fixing bugs it is crucial that the developers can 
reproduce your problem. For this reason,
-  entire debug logs, POMs or most preferably little demo projects attached to 
the issue are very much appreciated.
+  concern. Especially for fixing bugs, it is crucial that the developers can 
reproduce your problem. For this reason,
+  entire debug logs, POMs, or most preferably little demo projects attached to 
the issue are very much appreciated.
   Of course, patches are welcome, too. Contributors can check out the project 
from our
   {{{./scm.html}source repository}} and will find supplementary information in 
the
   {{{https://maven.apache.org/guides/development/guide-helping.html}guide to 
helping with Maven}}.
@@ -96,7 +96,7 @@ ${project.name}
 * Examples
 
   To provide you with better understanding on some usages of the deploy plugin,
-  you can take a look into the following examples:
+  you can see the following examples:
 
   <Project Deployment:>
 
diff --git a/src/site/apt/project-deployment.apt 
b/src/site/markdown/project-deployment.md
similarity index 100%
rename from src/site/apt/project-deployment.apt
rename to src/site/markdown/project-deployment.md
diff --git a/src/site/apt/usage.apt b/src/site/markdown/usage.md
similarity index 100%
rename from src/site/apt/usage.apt
rename to src/site/markdown/usage.md

Reply via email to