mirror of
https://github.com/honeymoose/OpenSearch.git
synced 2025-02-06 13:08:29 +00:00
28920a45f1
Use gradle task avoidance api wherever it is possible as a drop in replacement in the es build
9 lines
159 B
Groovy
9 lines
159 B
Groovy
apply plugin: 'java'
|
|
|
|
jar {
|
|
archiveFileName = "${project.name}.jar"
|
|
manifest {
|
|
attributes 'Main-Class': 'org.elasticsearch.gradle.reaper.Reaper'
|
|
}
|
|
}
|