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.
This commit is contained in:
jaymode 2016-04-13 11:26:47 -04:00
parent 64f5a4f848
commit 293ede3237
1 changed files with 7 additions and 0 deletions

View File

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