summaryrefslogtreecommitdiff
path: root/client/test/build.gradle
AgeCommit message (Collapse)Author
2016-09-19Build: Remove old maven deploy support (#20403)Ryan Ernst
* Build: Remove old maven deploy support This change removes the old maven deploy that we have in parallel to maven-publish, and makes maven-publish fully work with publishing to maven local. Using `gradle publishToMavenLocal` should be used to publish to .m2. Note that there is an unfortunate hack that means for zip artifacts we must first create/publish a dummy pom file, and then follow that with the real pom file. It would be nice to have the pom file contains packaging=zip, but maven central then requires sources and javadocs. But our zips are really just attached artifacts, so we already set the packaging type to pom for our zip files. This change just works around a limitation of the underlying maven publishing library which silently skips attached artifacts when the packaging type is set to pom. relates #20164 closes #20375 * Remove unnecessary extra spacing
2016-08-30Allow RestClient to send array-based headersChris Earle
This enables the RestClient to send array-based (multi-valued) header values, rather than only sending whatever happened to be the _last_ value of the header.
2016-07-01Build: set group for client and sniffer, disable publishing for client-testjavanna
Closes #19205
2016-06-22Group client projects under :clientNik Everett
:client ---------> :client:rest :client-sniffer -> :client:sniffer :client-test ----> :client:test This lines the client up with how we do things like modules and plugins.