You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@sling.apache.org by kw...@apache.org on 2020/02/18 08:24:27 UTC

[sling-maven-plugin] branch SLING-7445 created (now 49a7668)

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

kwin pushed a change to branch SLING-7445
in repository https://gitbox.apache.org/repos/asf/sling-maven-plugin.git.


      at 49a7668  fix javadoc link

This branch includes the following new commits:

     new 49a7668  fix javadoc link

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



[sling-maven-plugin] 01/01: fix javadoc link

Posted by kw...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

kwin pushed a commit to branch SLING-7445
in repository https://gitbox.apache.org/repos/asf/sling-maven-plugin.git

commit 49a76681eb5184655d07c67d3b76acef09474898
Author: Konrad Windszus <kw...@apache.org>
AuthorDate: Tue Feb 18 09:24:18 2020 +0100

    fix javadoc link
---
 .../java/org/apache/sling/maven/bundlesupport/BundleInstallMojo.java    | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/main/java/org/apache/sling/maven/bundlesupport/BundleInstallMojo.java b/src/main/java/org/apache/sling/maven/bundlesupport/BundleInstallMojo.java
index 86616ee..6c5d5db 100644
--- a/src/main/java/org/apache/sling/maven/bundlesupport/BundleInstallMojo.java
+++ b/src/main/java/org/apache/sling/maven/bundlesupport/BundleInstallMojo.java
@@ -45,7 +45,7 @@ import org.apache.maven.plugins.annotations.Parameter;
  * <li>
  *  SlingPostServlet, uses internally <code>ResourceResolverFactory.create(...)</code> without setting any <code>jcr:primaryType</code>.
  *  Therefore the <code>JcrResourceProviderFactory</code> will call <code>Node.addNode(String relPath)</code> which determines a fitting 
- *  node type automatically, depending on the parents node type definition (see <a href="http://www.day.com/specs/jsr170/javadocs/jcr-2.0/javax/jcr/Node.html#addNode%28java.lang.String%29">Javadoc</a>).
+ *  node type automatically, depending on the parents node type definition (see <a href="https://docs.adobe.com/docs/en/spec/jsr170/javadocs/jcr-2.0/javax/jcr/Node.html#addNode(java.lang.String)">Javadoc</a>).
  *  So in most of the cases this should be a <code>sling:Folder</code>, as this is the first allowed child node definition in <code>sling:Folder</code>.
  *  This only may differ, if your existing parent node is not of type <code>sling:Folder</code> itself.
  * </li>