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 2022/08/10 16:39:05 UTC

[sling-maven-plugin] branch feature/update-parent-plugins-deps updated (9b55333 -> 39057aa)

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

kwin pushed a change to branch feature/update-parent-plugins-deps
in repository https://gitbox.apache.org/repos/asf/sling-maven-plugin.git


    from 9b55333  fix preemptive auth
     add 39057aa  fix URLs and parametrisation for WebConsole deployment

No new revisions were added by this update.

Summary of changes:
 sling-maven-plugin/pom.xml                         | 182 +++++++++++++++------
 .../src/it/install-test/invoker.properties         |  23 +++
 sling-maven-plugin/src/it/install-test/pom.xml     |  92 +++++++++++
 .../java/org/apache/sling/dummy/HelloWorld.java    |  23 +++
 .../bundlesupport/AbstractBundleDeployMojo.java    |   2 +-
 .../bundlesupport/AbstractBundleInstallMojo.java   |   6 +-
 ...ostMojo.java => AbstractBundleRequestMojo.java} |  25 ++-
 .../maven/bundlesupport/AbstractFsMountMojo.java   |   2 +-
 .../maven/bundlesupport/BundleUninstallMojo.java   |   6 +-
 .../deploy/method/FelixPostDeployMethod.java       |  38 ++++-
 .../bundlesupport/deploy/method/WebDavMkCol.java   |   2 +
 .../deploy/method/WebDavPutDeployMethod.java       |  45 ++++-
 .../deploy/method/SlingPostDeployMethodTest.java   |  41 +++++
 13 files changed, 410 insertions(+), 77 deletions(-)
 create mode 100644 sling-maven-plugin/src/it/install-test/invoker.properties
 create mode 100644 sling-maven-plugin/src/it/install-test/pom.xml
 create mode 100644 sling-maven-plugin/src/it/install-test/src/main/java/org/apache/sling/dummy/HelloWorld.java
 rename sling-maven-plugin/src/main/java/org/apache/sling/maven/bundlesupport/{AbstractBundlePostMojo.java => AbstractBundleRequestMojo.java} (90%)
 create mode 100644 sling-maven-plugin/src/test/java/org/apache/sling/maven/bundlesupport/deploy/method/SlingPostDeployMethodTest.java