NetBeans won't import my packages
Hi,
I'm trying to use NetBeans to develop my app, however, it won't find packages that I import in source code. My packages aren't jar-ed; instead the package names are merely declared in source code. For example...
Packaged class looks like this:
package com.myco.myapp;
Calling class looks like this:
import com.myco.myapp.MyClass;
Also, the directory structure reflects the package name structure, although I don't think that matters. Also, the calling and packaged classes are in different directories. The problem, as described above, is that NetBeans won't let the calling class find the packaged class. Is there a special setting for this?
By the way, the project compiles fine when I use Ant directly.In fact, I've developed my entire enterprise app exclusively using Ant, a build file and command prompt.I'm happy doing it that way, but my new colleague wants an IDE.Considering EJB development and descriptor generation (for EJBs, Hibernate, Web, JBoss, etc) is it really worth the trouble to learn it?Would you recommend for me to switch?
Until now, I only see it as an impediment, but I'd appreciate any contrary opinions. Thanks in advance!
Itchy

