How to get a reference to the jar file produced by Gradle build?

Viewed 23950

I need to sign a jar after the jar task is being done in gradle. I have a need to reference the produced jar file from the build, and I can recreate the jar file, but I really look for a property that does this for me.

Here is how I've done it:

jar.doLast {
  jarfile = project.libsDir.path + File.separator + project.Name + '-' + project.version + '.jar'
  ant.signJar(jar: jarfile, ....
}

Is there a property which can be used instead of the long "path calculation"?

1 Answers
Related