Remove debugging println from API JAR task
This commit removes a leftover println that was added while debugging the execution of the API JAR task. Original commit: elastic/x-pack-elasticsearch@37c2e8fe5b
This commit is contained in:
parent
04b48324aa
commit
4d4f979d61
|
@ -107,7 +107,6 @@ project.afterEvaluate {
|
|||
doFirst {
|
||||
Path jarFile = project.jar.outputs.files.singleFile.toPath()
|
||||
String apiFileName = jarFile.fileName.toString().replace("core-${project.version}", "api-${project.version}")
|
||||
println apiFileName
|
||||
Files.copy(jarFile, jarFile.resolveSibling(apiFileName), StandardCopyOption.REPLACE_EXISTING)
|
||||
|
||||
String pomFileName = jarFile.fileName.toString().replace('.jar', '.pom')
|
||||
|
|
Loading…
Reference in New Issue