Re: warning messages

2018-02-27 Thread Mirko Friedenhagen
Hello Bill, I am running Maven 3.5.2 on macOS high sierra with Oracle JDK 1.8.162 and do not see these messages. I installed Maven using brew. Did you just download and unpack the tar.gz? Do you set MAVEN_OPTS either in your .bashrc or maybe .mavenrc file? Best regards Mirko -- Sent from my

warning messages

2018-02-27 Thread Bill Tantzen
Friends: mac os sierra maven 3.5.2 java 1.8.0_25 SLF4J: Failed to load class "org.slf4j.impl.StaticLoggerBinder". SLF4J: Defaulting to no-operation (NOP) logger implementation SLF4J: See http://www.slf4j.org/codes.html#StaticLoggerBinder for further details. I have added the following to my

Re: Curious DEBUG message from maven-script-ant plugin

2018-02-27 Thread Paul Benedict
I am following up on my question. No answer yet. I don't have an answer myself In addition, I have noticed that none of Maven's properties are available to me inside my Ant script. I have to explicitly create parameters in my Ant-mojo descriptor with default values. Could this be related to

RE: Problems configuring wagon-webdav-jackrabbit

2018-02-27 Thread Svensson, Lars
On Tuesday, February 27, 2018 2:53 PM, anders.g.ham...@gmail.com [mailto:anders.g.ham...@gmail.com] On Behalf wrote: > The problem is that you have specified the configuration for a specific > execution. An execution bound to the deploy phase. > If you want to execute from command line by

Re: Problems configuring wagon-webdav-jackrabbit

2018-02-27 Thread Anders Hammar
The problem is that you have specified the configuration for a specific execution. An execution bound to the deploy phase. If you want to execute from command line by specifying wagon:upload you should remove the executions sectio nand move the configuration out to plugin level. Also, from an

RE: Problems configuring wagon-webdav-jackrabbit

2018-02-27 Thread Svensson, Lars
On Tuesday, February 27, 2018 12:55 PM, Olivier Lamy [mailto:ol...@apache.org] wrote: > try a dav url such > dav:http(s)://my.webdav.server/ It already has that syntax dav:http://my.server/. What vexes me is that the plugin claims it cannot find the configuration. If I run mvn -X wagon:upload

Re: Problems configuring wagon-webdav-jackrabbit

2018-02-27 Thread Olivier Lamy
try a dav url such dav:http(s)://my.webdav.server/ On 27 February 2018 at 21:52, Svensson, Lars wrote: > On Tuesday, February 27, 2018 12:34 PM, Olivier Lamy [mailto: > ol...@apache.org] wrote: > > > On 27 February 2018 at 21:29, Svensson, Lars wrote: > >

RE: Problems configuring wagon-webdav-jackrabbit

2018-02-27 Thread Svensson, Lars
On Tuesday, February 27, 2018 12:34 PM, Olivier Lamy [mailto:ol...@apache.org] wrote: > On 27 February 2018 at 21:29, Svensson, Lars wrote: > > > Hi Olivier and thanks for your quick reply! > > > > On Tuesday, February 27, 2018 11:54 AM, Olivier Lamy [mailto: > >

Re: Problems configuring wagon-webdav-jackrabbit

2018-02-27 Thread Olivier Lamy
On 27 February 2018 at 21:29, Svensson, Lars wrote: > Hi Olivier and thanks for your quick reply! > > On Tuesday, February 27, 2018 11:54 AM, Olivier Lamy [mailto: > ol...@apache.org] wrote: > > > webdav is not a plugin but a protocol supported by wagon > > you're right using

RE: Problems configuring wagon-webdav-jackrabbit

2018-02-27 Thread Svensson, Lars
Hi Olivier and thanks for your quick reply! On Tuesday, February 27, 2018 11:54 AM, Olivier Lamy [mailto:ol...@apache.org] wrote: > webdav is not a plugin but a protocol supported by wagon > you're right using extension tag > If you want to deploy your artifacts just configure

Re: Problems configuring wagon-webdav-jackrabbit

2018-02-27 Thread Olivier Lamy
Hi, webdav is not a plugin but a protocol supported by wagon you're right using extension tag If you want to deploy your artifacts just configure distributionManagement to use dav protocol: dav:https://thewebdavurl/ Otherwise have a look at this plugin:

Problems configuring wagon-webdav-jackrabbit

2018-02-27 Thread Svensson, Lars
Greetings, This is my first post to this list so please bear with me if I'm ignoring something obvious... I'm trying to deploy a set of files to a webdav server using Maven Wagon, but the plugin does not pick up the configuration specified in my POM. If I specify the URL parameter on the