When compiling my project in Netbeans
, the files are generated in this way:
./dist
./dist/meuProjeto.jar
./dist/readme.txt
./dist/lib
./dist/lib/dependencia1.jar
./dist/lib/dependencia2.jar
And I want it to be generated without the lib
folder, like this:
./dist
./dist/meuProjeto.jar
./dist/readme.txt
./dist/dependencia1.jar
./dist/dependencia2.jar
I know you have to change the build.xml
, but I did not find anything that talked about how to change the target of .jar
dependent.