When publishing to a Maven repository, Gradle outputs:
Uploading: com/example/my-web/1.0.0-SNAPSHOT/my-web-1.0.0-20141013.094357-861.war to repository remote at http://mavenproxy.example.com/stuff-internal-snapshot/
Is it possible to get it to output a full URL instead? That is, something like:
Uploading: http://mavenproxy.example.com/stuff-internal-snapshot/com/example/my-web/1.0.0-SNAPSHOT/my-web-1.0.0-20141013.094357-861.war to
remote repository
Our build system parses the output for URLs, and pass them on to our pipeline. This works out of the box for Maven, but it seems more work is needed for Gradle.