17 lines
365 B
Groovy
17 lines
365 B
Groovy
apply plugin: 'elasticsearch.build'
|
|
apply plugin: 'nebula.maven-base-publish'
|
|
apply plugin: 'nebula.maven-scm'
|
|
|
|
test.enabled = false
|
|
jarHell.enabled = false
|
|
|
|
configurations {
|
|
restSpecs
|
|
restTests
|
|
}
|
|
|
|
artifacts {
|
|
restSpecs(new File(projectDir, "src/main/resources/rest-api-spec/api"))
|
|
restTests(new File(projectDir, "src/main/resources/rest-api-spec/test"))
|
|
}
|