Skip to content

Instantly share code, notes, and snippets.

@luismoramedina
Last active November 26, 2015 12:42
Show Gist options
  • Save luismoramedina/400e6c187a95ec02cd06 to your computer and use it in GitHub Desktop.
Save luismoramedina/400e6c187a95ec02cd06 to your computer and use it in GitHub Desktop.
tomcat mvn plugin https
<configuration>
<port>8687</port>
<httpsPort>8443</httpsPort>
<keystoreFile>${project.basedir}/src/test/resources/keystore.jks</keystoreFile>
<keystorePass>password</keystorePass>
<systemProperties>
<javax.net.ssl.trustStore>${project.basedir}/src/test/resources/keystore-aia-new.jks</javax.net.ssl.trustStore>
<javax.net.ssl.keyStore>${project.basedir}/src/main/resources/webservices-client.jks</javax.net.ssl.keyStore>
<javax.net.ssl.keyStorePassword>123123123</javax.net.ssl.keyStorePassword>
<javax.net.debug>all</javax.net.debug>
<com.sun.net.ssl.checkRevocation>true</com.sun.net.ssl.checkRevocation>
<com.sun.security.enableCRLDP>true</com.sun.security.enableCRLDP>
<http.proxyHost>...</http.proxyHost>
<http.proxyPort>8080</http.proxyPort>
<http.proxyUser>...</http.proxyUser>
<http.proxyPassword>...</http.proxyPassword>
</systemProperties>
</configuration>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment