bundling jvm with the application - Stack Overflow most recent 30 from stackoverflow.com2009-11-27T10:11:09Zhttp://stackoverflow.com/feeds/question/937416http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/937416/bundling-jvm-with-the-application1bundling jvm with the applicationHamza Yerlikaya2009-06-02T00:23:58Z2009-06-02T05:52:33Z
<p>How can i bundle a stripped down JVM to run just my application?</p>
<p>i would like to strip down the JVM so that i can include it in my application. I know that exe wrappers can do this but what i would like to know is how? so that i can script it and create bundles for multiple OS's not just Windows.</p>
http://stackoverflow.com/questions/937416/bundling-jvm-with-the-application/937903#9379030Answer by dimo414 for bundling jvm with the applicationdimo4142009-06-02T04:35:05Z2009-06-02T04:35:05Z<p>This may not be quite the answer you're looking for, but you can create platform independent executable JAR files quite easily in Eclipse, or almost as easily manually. These are quite slick to work with and function just fine on any computer with Java2 (that is 1.2, or in other words, everyone) installed. Just double click and it runs, just like an exe.</p>
http://stackoverflow.com/questions/937416/bundling-jvm-with-the-application/938057#9380572Answer by Andreas_D for bundling jvm with the applicationAndreas_D2009-06-02T05:52:33Z2009-06-02T05:52:33Z<p>Even though it might be possible to strip down the JRE distribution from a technical perspective, please have a close look at the license agreement. For Java 6 it states:</p>
<p><em>[...] Sun grants you a
non-exclusive, non-transferable, limited license without
fees to reproduce and distribute the Software, provided
that (i) you distribute the Software complete and
unmodified and only bundled as part of, and for the sole
purpose of running, your Programs [...]</em> {Supplemental License Terms, (B)}</p>
<p>I'd read it like that: you're only allowed to distribute a <strong>complete</strong> (Sun) JRE 6 (or JDK 6).</p>