11 lines
187 B
Groovy
11 lines
187 B
Groovy
|
plugins {
|
||
|
id 'java'
|
||
|
}
|
||
|
|
||
|
tasks.named("jar").configure {
|
||
|
archiveFileName = "${project.name}.jar"
|
||
|
manifest {
|
||
|
attributes 'Main-Class': 'org.elasticsearch.gradle.reaper.Reaper'
|
||
|
}
|
||
|
}
|