mirror of
https://github.com/honeymoose/OpenSearch.git
synced 2025-02-08 22:14:59 +00:00
9 lines
165 B
Groovy
9 lines
165 B
Groovy
apply plugin: 'java'
|
|
|
|
jar {
|
|
archiveName = "${project.name}.jar"
|
|
manifest {
|
|
attributes 'Main-Class': 'org.elasticsearch.gradle.reaper.Reaper'
|
|
}
|
|
}
|