mirror of
https://github.com/honeymoose/OpenSearch.git
synced 2025-02-09 22:45:04 +00:00
This PR refactors the build-tools module as part of the Elasticsearch to OpenSearch renaming effort. Signed-off-by: Rabi Panda <adnapibar@gmail.com>
9 lines
156 B
Groovy
9 lines
156 B
Groovy
apply plugin: 'java'
|
|
|
|
jar {
|
|
archiveFileName = "${project.name}.jar"
|
|
manifest {
|
|
attributes 'Main-Class': 'org.opensearch.gradle.reaper.Reaper'
|
|
}
|
|
}
|