i'm exporting an eclipse product with the eclipse Product export wizard. when i run this wizard a lot of build scripts are generated and executed - i want to re-use these build scripts for my p2e-build. where does eclipse store these build scripts?
Asked
Active
Viewed 91 times
1 Answers
0
The files for the build are created in the root folder of the project containing the xxx.product file you are using. They only exist while the build is running. The main file is a build.xml
Ant script.

greg-449
- 109,219
- 232
- 102
- 145
-
after the build proces... will eclipse delete these files? – Martin Frank Aug 14 '15 at 08:53
-
I don't know. There are more official ways of doing builds such as using Maven + Tycho. – greg-449 Aug 14 '15 at 08:58
-
ok, still fighting with tycho/maven - thanks anyway... (they ARE deleted after export).... – Martin Frank Aug 14 '15 at 09:01