Reputation: 59
I have a large Java Project (almost 2 GB). This project runs perfect with Netbeans 3.6 as it compile files as user wants (Press F9), but when I import that project to New Netbeans 7, it goes to auto build and then Heap size Error and Netbens stop working. How can I import old Netbenas 3.6 Project in New IDE. I am ok with any New Modern IDE not only Netbeans 7.
Upvotes: 1
Views: 195
Reputation: 923
On a separate note
(from Kowser's) you could try manually setting heap sizes in your Netbeans netbeans.conf
http://performance.netbeans.org/howto/jvmswitches/
Perhaps your old config already had such settings and your new install didn't preserve them?
Further, Netbeans discontinued suport for Swing Application Framework perhaps your code had such dependencies.
Upvotes: 1
Reputation: 8261
I do not know how it can be solved. But the most important thing is.
It is an anti-pattern if any project build
depend on IDE support.
Consider using popular build tools like maven
or ant
.
So, make required modification to use maven/ant
. And get the any kind of IDE's build support without any hassle!
Upvotes: 1