Ant を使用してプロジェクトをビルドし、JBoss にデプロイしています。Ant は jboss-home/server/default/lib jar を使用して構築しています。しかし、展開中にエラーが発生します:
java.lang.Error: Unresolved compilation problems:
The import org.apache.commons.lang3 cannot be resolved
StringUtils cannot be resolved
Ant エントリに従って、StringUtils クラスに commons-lang3-3.1.jar を使用しています。
<path id="classpath">
<fileset dir="${lib.dir}" includes="**/*.jar">
<include name="{jboss.home}/server/default/lib/commons-lang3-3.1.jar" />