Branislav Lazic
Branislav Lazic

Reputation: 14806

Exporting Java application

I have a very simple question. How can I export Java program like this Minecraft game is being exported:

enter image description here

And my bin folder will contain this:

enter image description here

Is there an any program to do this or any Eclipse plugin? Thanks in advance!

Upvotes: 2

Views: 129

Answers (1)

Stijn Geukens
Stijn Geukens

Reputation: 15628

Apache comes to mind:

  1. Apache Ant (for any project): http://ant.apache.org/manual/index.html Apache Maven - assembly (for Maven projects):
  2. http://maven.apache.org/plugins/maven-assembly-plugin/

Upvotes: 2

Related Questions