This is an automated email from the ASF dual-hosted git repository.
rombert pushed a commit to branch master
in repository
https://gitbox.apache.org/repos/asf/sling-jcrinstall-bundle-archetype.git
The following commit(s) were added to refs/heads/master by this push:
new e7c7237 SLING-7917 - jcrinstall-bundle-archetype shoud use the
specific Simple WebDAV servlet entry point for deployment
e7c7237 is described below
commit e7c72370de2957b72767f222f3409b589040bceb
Author: Robert Munteanu <[email protected]>
AuthorDate: Wed Sep 12 16:47:40 2018 +0200
SLING-7917 - jcrinstall-bundle-archetype shoud use the specific Simple
WebDAV servlet entry point for deployment
---
src/main/resources/archetype-resources/pom.xml | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/src/main/resources/archetype-resources/pom.xml
b/src/main/resources/archetype-resources/pom.xml
index 0fedb10..4a9d43f 100644
--- a/src/main/resources/archetype-resources/pom.xml
+++ b/src/main/resources/archetype-resources/pom.xml
@@ -63,13 +63,13 @@
<artifactId>maven-sling-plugin</artifactId>
<version>${slingplugin.version}</version>
<configuration>
-
<slingUrl>http://localhost:8080/libs/sling/install</slingUrl>
+
<slingUrl>http://localhost:8080/dav/default/libs/sling/install</slingUrl>
<!--
Alternatively:
<slingUrl>http://localhost:8080</slingUrl>
- <slingUrlSuffix>/libs/sling/install</slingUrlSuffix>
+
<slingUrlSuffix>/dav/default/libs/sling/install</slingUrlSuffix>
-->
- <usePut>true</usePut>
+ <deploymentMethod>WebDAV</deploymentMethod>
<user>admin</user>
<password>admin</password>
</configuration>