Comment 3 for bug 1702130

Revision history for this message
Evan (ev) wrote : Re: Build proxy doesn't play nicely with java ant

Ah interesting. I'm using the ant plugin directly (cassandra, not snapcraft):
https://github.com/snapcrafters/cassandra/blob/master/snapcraft.yaml

ant and maven are slightly out of sync, with ant missing authenticated proxy support:

+ if parsed.username is not None:
+ yield '-D{}.proxyUser={}'.format(scheme, parsed.username)
+ if parsed.password is not None:
+ yield '-D{}.proxyPassword={}'.format(scheme, parsed.password)

But that shouldn't break the unauthenticated builds on Launchpad.