Details
-
Bug
-
Status: Closed
-
Resolution: Won't Fix
-
1.4b5-dev / CVS
-
None
-
Operating System: Other
Platform: Other
-
21327
Description
The build.xml file is broken in Netbeans due to an improper ENTITY tag.
Switching to one of the suggestions below fixes it.
This from the Netbeans FAQ
Q: My entity includes do not work. I just get a red "X" on the build script.
A: if you are using
<!ENTITY common SYSTEM "file:../../build-common.xml">
just make this into a proper relative URL:
<!ENTITY common SYSTEM "../../build-common.xml">
or if you prefer, absolute URL:
<!ENTITY common SYSTEM "file:///my-project/build/build-common.xml">