build-error
BookStore\nbproject\build-impl.xml:1009: Problem: failed to create task or type copyfiles
Cause: The name is undefined.
Action: Check the spelling.
Action: Check that any custom tasks/types have been declared.
ビルド時に上記のようなエラーが出た場合は、build-impl.xmlに何かの拍子で不要なCopy Taskが追加されている。そのCopy Taskを削除すると正常にビルドが実行されるようになる。
修正前のbuild-impl.xmlの該当部分
<target depends="init" name="library-inclusion-in-archive" unless="dist.ear.dir">
<copyfiles files="${libs.primefaces.classpath}" todir="${build.web.dir}//"/>
<copyfiles files="${libs.javaee-api-7.0.classpath}" todir="${build.web.dir}//"/>
</target>
修正後のbuild-impl.xmlの該当部分
<target depends="init" name="library-inclusion-in-archive" unless="dist.ear.dir">
</target>
##追記
そもそもの原因はCopy Taskが追加されることではなく、libs.primefaces.classpath で指定された primefaces.jar が指定のディレクトリに無いことが原因らしい。その primefaces.jar はNetBeansによって追加されるのでこういう現象は起こらないはず。何かのバグだろうか?