mirror of
https://github.com/honeymoose/OpenSearch.git
synced 2025-02-05 20:48:22 +00:00
293ede3237
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.
9 lines
126 B
Groovy
9 lines
126 B
Groovy
apply plugin: 'java'
|
|
apply plugin: 'com.bmuschko.nexus'
|
|
|
|
extraArchive {
|
|
sources = false
|
|
javadoc = false
|
|
tests = false
|
|
}
|