Edge Rewrite
// request.cf · coarse context

A page that knows where it met you.

Only coarse request metadata is shown. This demo does not display or persist visitor IP addresses.

Country
US
Cloudflare location
CMH
Connection
HTTP/2
Language
Not provided

Ray ID: a29d1eab68f389da

Jump to content

Wikipedia:Reference desk/Archives/Computing/2018 July 22

From Wikipedia, the free encyclopedia
Computing desk
< July 21 << Jun | July | Aug >> July 23 >
Welcome to the Wikipedia Computing Reference Desk Archives
The page you are currently viewing is an archive page. While you can leave answers for any questions shown below, please ask new questions on one of the current reference desk pages.


July 22

[edit]

Tools for debugging a Maven pom.xml?

[edit]

What tools are available to help me debug a Maven pom.xml that isn't working properly? In particular, I'm having trouble getting Maven to run Proguard in the pre-integration-test phase and then run the unit tests against the Proguarded jar in the integration-test phase (to ensure that my Proguard configuration hasn't broken anything); my naive attempt runs Proguard but then undoes it by recompiling before the test. NeonMerlin 00:03, 22 July 2018 (UTC)reply

  • I doubt that anyone will listen, but this is why I much prefer Ant to Maven. It's harder to build simple things, but once you need to break Maven's assumptions about dependencies and start taking explicit control of them, then Ant wins. Andy Dingley (talk) 11:20, 22 July 2018 (UTC)reply