Browse Source

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.
jaymode 9 years ago
parent
commit
293ede3237
1 changed files with 7 additions and 0 deletions
  1. 7 0
      rest-api-spec/build.gradle

+ 7 - 0
rest-api-spec/build.gradle

@@ -1 +1,8 @@
 apply plugin: 'java'
+apply plugin: 'com.bmuschko.nexus'
+
+extraArchive {
+  sources = false
+  javadoc = false
+  tests = false
+}