Setting up proxy for Maven mojo doesn't work

2010-01-05 Thread Zdeněk Zikán
Hello, I want to use proxy in my maven project (to make some builds faster, because when processing Docbook documentation, some DTDs are slow to fetch from some servers). I have tried following ways how to do it: 1) set it up in Java: $JAVA_HOME/bin/ControlPanel - Network Settings 2) in

Re: Setting up proxy for Maven mojo doesn't work

2010-01-05 Thread Zdeněk Zikán
6) Also environment variable http_proxy doesn't work: export http_proxy=http://proxy.myhost.com:3128/; (I'm using Linux, it works for other command line utilities). On Tue, Jan 5, 2010 at 9:47 AM, Zdeněk Zikán zdenek.zi...@gmail.com wrote: Hello, I want to use proxy in my maven project

How does Maven handle multiple use of the same plugin in one POM?

2009-08-20 Thread Zdeněk Zikán
Hello world, I'm trying to understand how does Maven handle multiple usage of one plugin in the same POM file. I created an example POM file with executing maven-antrun-plugin few times: In default build block, there is echoed Hello A, B and C, in the profile1, there is echoed D, E, F. If I run