You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@maven.apache.org by Leonardo Vidal <le...@gmail.com> on 2010/07/20 18:46:17 UTC

Password protection on maven-jarsigner-plugin

Hi all,

I have a project which needs to sign a applet. I used the following plugin
configuration in my pom with the expected results. What bothers me is
leaving my passwords in plain text. Is there a way to obfuscate it?

            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-jarsigner-plugin</artifactId>
                <version>1.2</version>
                <executions>
                    <execution>
                        <id>sign</id>
                        <goals>
                            <goal>sign</goal>
                        </goals>
                    </execution>
                </executions>
                <configuration>
                    <alias>leonardo</alias>
                    <storepass>leonardo</storepass>
                    <keypass>leonardo</keypass>
                </configuration>
            </plugin>

Thanks,
Leonardo