Index: SourcePathImplementation.java =================================================================== RCS file: /cvs/ruby/railsprojects/src/org/netbeans/modules/ruby/railsprojects/classpath/SourcePathImplementation.java,v --- SourcePathImplementation.java 2 Oct 2007 12:44:54 -0000 1.2 +++ SourcePathImplementation.java 3 Dec 2007 17:13:44 -0000 @@ -107,6 +107,12 @@ if (this.resources == null) { List result = new ArrayList(roots.length); for (URL root : roots) { + // Issue #123178 - GoldSpike copies ALL relevant files into a new directory, WEB-INF, + // which we don't want to scan! + String urlString = root.toExternalForm(); + if (urlString.endsWith("/WEB-INF/")) { + continue; + } result.add(ClassPathSupport.createResource(root)); } // adds java artifacts generated by wscompile and wsimport to resources to be available for code completion