tags:

views:

170

answers:

1

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 create 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  A: 

jar.archivePath returns a File object pointing to the generated jar file.

tronda