This is an automated email from the ASF dual-hosted git repository.
kwin pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/sling-maven-plugin.git
The following commit(s) were added to refs/heads/master by this push:
new 45c6e51 SLING-9654 add GitHub ribbon to site
45c6e51 is described below
commit 45c6e5199f5f4a0b1ba508ff49261b1f385c2aa8
Author: Konrad Windszus <[email protected]>
AuthorDate: Fri Dec 25 13:53:00 2020 +0100
SLING-9654 add GitHub ribbon to site
Update to m-s-p 3.9.1, fluido skin 1.9 and m-p-i-r-p 3.1.1
---
sling-maven-plugin/pom.xml | 14 +++++++++++++-
.../maven/bundlesupport/AbstractBundleInstallMojo.java | 2 +-
.../sling/maven/bundlesupport/AbstractBundlePostMojo.java | 2 +-
sling-maven-plugin/src/site/site.xml | 10 +++++++++-
4 files changed, 24 insertions(+), 4 deletions(-)
diff --git a/sling-maven-plugin/pom.xml b/sling-maven-plugin/pom.xml
index 45fecd7..fe8e523 100644
--- a/sling-maven-plugin/pom.xml
+++ b/sling-maven-plugin/pom.xml
@@ -46,6 +46,18 @@
</properties>
<build>
+ <pluginManagement>
+ <plugins>
+ <plugin>
+ <artifactId>maven-site-plugin</artifactId>
+ <version>3.9.1</version>
+ </plugin>
+ <plugin>
+ <artifactId>maven-project-info-reports-plugin</artifactId>
+ <version>3.1.1</version>
+ </plugin>
+ </plugins>
+ </pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
@@ -155,7 +167,7 @@
<dependency>
<groupId>org.apache.jackrabbit.vault</groupId>
<artifactId>org.apache.jackrabbit.vault</artifactId>
- <version>3.1.18</version>
+ <version>3.4.6</version>
<scope>compile</scope>
</dependency>
<dependency>
diff --git
a/sling-maven-plugin/src/main/java/org/apache/sling/maven/bundlesupport/AbstractBundleInstallMojo.java
b/sling-maven-plugin/src/main/java/org/apache/sling/maven/bundlesupport/AbstractBundleInstallMojo.java
index af84748..dc20552 100644
---
a/sling-maven-plugin/src/main/java/org/apache/sling/maven/bundlesupport/AbstractBundleInstallMojo.java
+++
b/sling-maven-plugin/src/main/java/org/apache/sling/maven/bundlesupport/AbstractBundleInstallMojo.java
@@ -47,7 +47,7 @@ abstract class AbstractBundleInstallMojo extends
AbstractBundlePostMojo {
* Make sure that {@link #slingUrl} points to the Felix Web Console in
that case.</li>
* <li><strong>WebDAV</strong>, uses <a
href="https://sling.apache.org/documentation/development/repository-based-development.html">
* WebDAV</a> for deployment (HTTP PUT). Make sure that {@link #slingUrl}
points to the entry path of
- * the Sling WebDAV bundle (defaults to <tt>/dav/default</tt> in the
Sling starter). Issues a HTTP Delete for the uninstall goal.</li>
+ * the Sling WebDAV bundle (defaults to {@code /dav/default} in the Sling
starter). Issues a HTTP Delete for the uninstall goal.</li>
* <li><strong>SlingPostServlet</strong>, uses the
* <a
href="https://sling.apache.org/documentation/bundles/manipulating-content-the-slingpostservlet-servlets-post.html">Sling
Post Servlet</a> for deployment (HTTP POST).
* Make sure that {@link #slingUrl} points a path which is handled by the
Sling POST Servlet (usually below regular Sling root URL).</li>
diff --git
a/sling-maven-plugin/src/main/java/org/apache/sling/maven/bundlesupport/AbstractBundlePostMojo.java
b/sling-maven-plugin/src/main/java/org/apache/sling/maven/bundlesupport/AbstractBundlePostMojo.java
index 8abfa94..eb05238 100644
---
a/sling-maven-plugin/src/main/java/org/apache/sling/maven/bundlesupport/AbstractBundlePostMojo.java
+++
b/sling-maven-plugin/src/main/java/org/apache/sling/maven/bundlesupport/AbstractBundlePostMojo.java
@@ -38,7 +38,7 @@ abstract class AbstractBundlePostMojo extends AbstractMojo {
*
* <p>The default is only useful for <strong>WebConsole</strong>
deployment.</p>
*
- * <p>For <strong>WebDAV</strong> deployment it is recommended to include
the Sling Simple WebDAV servlet root, for instance <a
href="http://localhost:8080/dav/default/libs/sling/install">http://localhost:8080/dav/default/libs/sling/install</a>.
Omitting the <tt>dav/default</tt> segment can lead to conflicts with other
servlets.</p>
+ * <p>For <strong>WebDAV</strong> deployment it is recommended to include
the Sling Simple WebDAV servlet root, for instance <a
href="http://localhost:8080/dav/default/libs/sling/install">http://localhost:8080/dav/default/libs/sling/install</a>.
Omitting the {@code dav/default} segment can lead to conflicts with other
servlets.</p>
*/
@Parameter(property="sling.url",
defaultValue="http://localhost:8080/system/console", required = true)
protected String slingUrl;
diff --git a/sling-maven-plugin/src/site/site.xml
b/sling-maven-plugin/src/site/site.xml
index 9abab11..cdfb1e8 100644
--- a/sling-maven-plugin/src/site/site.xml
+++ b/sling-maven-plugin/src/site/site.xml
@@ -23,7 +23,7 @@ under the License.
<skin>
<groupId>org.apache.maven.skins</groupId>
<artifactId>maven-fluido-skin</artifactId>
- <version>1.6</version>
+ <version>1.9</version>
</skin>
<body>
<menu name="Overview">
@@ -32,4 +32,12 @@ under the License.
</menu>
<menu ref="reports"/>
</body>
+ <custom>
+ <fluidoSkin>
+ <gitHub>
+ <projectId>apache/sling-maven-plugin</projectId>
+ <ribbonOrientation>right</ribbonOrientation>
+ </gitHub>
+ </fluidoSkin>
+ </custom>
</project>