You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by sl...@apache.org on 2020/12/21 22:46:20 UTC

[maven-site] branch master updated: Added also sample pluginRepository definition

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

slachiewicz 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 267ee54  Added also sample pluginRepository definition
267ee54 is described below

commit 267ee54ace775b05516a9168c018d959a9af4d8f
Author: Sylwester Lachiewicz <sl...@apache.org>
AuthorDate: Mon Dec 21 23:43:51 2020 +0100

    Added also sample pluginRepository definition
---
 content/markdown/settings.md | 12 +++++++++++-
 1 file changed, 11 insertions(+), 1 deletion(-)

diff --git a/content/markdown/settings.md b/content/markdown/settings.md
index e0b0b3b..3759fc5 100644
--- a/content/markdown/settings.md
+++ b/content/markdown/settings.md
@@ -414,7 +414,17 @@ artifact.
             </repository>
           </repositories>
           <pluginRepositories>
-            ...
+            <pluginRepository>
+              <id>myPluginRepo</id>
+              <name>My Plugins repo</name>
+              <releases>
+                <enabled>true</enabled>
+              </releases>
+              <snapshots>
+                <enabled>false</enabled>
+              </snapshots>
+              <url>https://maven-central-eu....com/maven2/</url>
+            </pluginRepository>
           </pluginRepositories>
           ...
         </profile>