Reputation: 2591
I need to set Java_opts memory things for only one Java app. My program is a Maven project. Is there any way that I can just set it to my program, not the whole environment?
Upvotes: 1
Views: 1147
Reputation: 22948
If you're executing your program during the maven life build, you can set the MAVEN_OPTS.
Upvotes: 1