Wednesday, March 13, 2013

Specify Maven environment on windows powershell

Here is just a smart snippet to specify the maven environment like PermGen or Memory space on windows powershell:
$env:MAVEN_OPTS="-Xms512m -Xmx1024m -XX:PermSize=256m -XX:MaxPermSize=512m"
Simple but useful ;-)

No comments:

Post a Comment