0

Possible Duplicate:
How can I convert my Java program to an .exe file?
Can Maven generate exe files and mac os x apps?

I am building an application in Eclipse. Also I am using Maven to deal with my dependencies. Now I want to deliver my application to users for a testing. They are using Windows machine. I have never done this before and I am not sure how an .exe file can be built together with dependencies which reside on the Maven repository?

Community
  • 1
  • 1
ilija
  • 543
  • 1
  • 11
  • 19

2 Answers2

0

Launch4j does a good job of bundling Java applications into executables for Windows distribution.

http://launch4j.sourceforge.net/

It's what I use.

JohnnyO
  • 3,018
  • 18
  • 30
0

Use the Application Assembler Maven Plugin to build an executable.

Manfred Moser
  • 29,539
  • 13
  • 92
  • 123