Question

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"?

Was it helpful?

Solution

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

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top