In the Maven2 build of Shale, I'm having a problem generating the site when
running behind a firewall. A bit of research indicates that the problem
relates to the following configuration setting for the Checkstyle plugin.
<plugin>
<artifactId>maven-checkstyle-plugin</artifactId>
<configuration>
<configLocation>
http://svn.apache.org/repos/asf/shale/maven/trunk/build/shale_checks.xml
</configLocation>
</configuration>
</plugin>
This setting works fine when not behind a firewall ... but when I am, it
fails (even though I have the correct proxy set up in by settings.xml file,
and I can download from repositories normally). Is there any way to
convince the Checkstyle plugin to use the http proxy for looking up this
configuration resource?
Craig