Skip to content

Instantly share code, notes, and snippets.

@bdkosher
Created May 20, 2013 19:27
Show Gist options
  • Save bdkosher/5614784 to your computer and use it in GitHub Desktop.
Save bdkosher/5614784 to your computer and use it in GitHub Desktop.
Groovy way of accessing System properties.
System.properties['javax.net.ssl.trustStore'] = '/some/trust.store'
System.properties['javax.net.ssl.trustStorePassword'] = 'pass'
System.properties.each { k, v ->
println "$k = $v"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment