From 293ede32372bea4cb879a5b7c1a4bc0912783659 Mon Sep 17 00:00:00 2001 From: jaymode Date: Wed, 13 Apr 2016 11:26:47 -0400 Subject: [PATCH] Enable installing the rest-api-spec artifact Running `gradle install` on the rest-api-spec fails because there is no available install task. This change applies the nexus plugin so that we can install and should also enable publishing as part of the uploadArchives task. --- rest-api-spec/build.gradle | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/rest-api-spec/build.gradle b/rest-api-spec/build.gradle index bbfeb03c223..2a7de2c726d 100644 --- a/rest-api-spec/build.gradle +++ b/rest-api-spec/build.gradle @@ -1 +1,8 @@ apply plugin: 'java' +apply plugin: 'com.bmuschko.nexus' + +extraArchive { + sources = false + javadoc = false + tests = false +}