maven signing tidbit
Ever get this?
1 2 |
[INFO] [keytool:genkey] [WARNING] Enter keystore password: Keystore password is too short - must be at least 6 characters |
You probably have something like this:
1 2 3 4 5 6 7 8 9 10 11 12 13 |
<plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>keytool-maven-plugin</artifactId> <configuration> <keystore>${basedir}/target/keystore</keystore> <dname>cn=Gene De Lisa, ou=Devel, L=Philadelphia, ST=PA, o=Rockhopper, c=US</dname> <alias>mykey</alias> <keypass>validpassword</keypass> <storepass>validpassword</storepass> <storetype>pkcs12</storetype> <verbose>true</verbose> </configuration> </plugin> |
See that dname element on line 6? If you reformatted your code in Eclipse perhaps it was split over two lines. It has to be on a single line. So, you problem has nothing to do with the password!