Reputation: 615
I want to create a standalone Windows console program with Eclipse without the need of installing a Java-virtual machine on the client. I think the Eclipse RCP Product architecture is the way to go. Can anybody confirm this and point to a good example ?
thanks, Stephan
Upvotes: 0
Views: 50
Reputation: 3304
Well, in order to run Java application you will have to require JRE installed on the client's machine. However, you can include it with your application, to be sure it is always present. Please see this article for more details.
Upvotes: 1