I get an error message:
[signjar] jarsigner: attempt to rename C: \ workspace \ line_editor \ Lib \ icon.jar to C: \ workspace \ line_editor \ Lib \ icon.jar.orig
when trying to self-sign a set of jars with ant inside Eclipse. The ant construct did a great job with this project and similar code in other projects. I made some small changes to the code and tried to rebuild and keep getting this error.
Here is the related ant target:
<target name="sign" depends="jar" description="Signs Jars"> <genkey keystore="myKeystore1" alias="something" storepass="somethingpass" dname="CN=Classification, OU=NAPA, O=GPC, C=US"/> <signjar keystore="myKeystore1" alias="something" storepass="somethingpass"> <fileset file="${web.dir}/${jar.name}" /> <fileset dir="${lib.dir}"> <include name="*.jar"/> </fileset> </signjar> </target>
I deleted the project and pulled it out of our repository. Thus, it has the same default settings as other projects that this part does not fail. I looked at the .jar in the question and it was not only readable. I changed the name, and the following alphabetical .jar file also failed. There is no program in this folder that accesses .jars.
Any suggestions that cause?
java ant jarsigner
jzd
source share