Problema executando o build.xml

Pessoal, estou tentando executar a task war do meu build.xml mas está ocorrendo o seguinte erro:

BUILD FAILED
C:\eclipse\workspace\goodlife\build.xml:97: Compile failed; see the compiler error output for details.

Não faço idéia do porquê estar ocorrendo esse erro.

Segue abaixo o código do arquivo build.xml:

[code]<?xml version="1.0" encoding="iso-8859-1"?>

<project default="build" basedir=".">

<property file="build.properties"/>

&lt;property name=&quot;app.id&quot; value=&quot;goodlife&quot;/&gt;
&lt;property name=&quot;app.name&quot; value=&quot;$&#123;app.id&#125;&quot;/&gt;
&lt;property name=&quot;app.version&quot; value=&quot;1.0&quot;/&gt;
&lt;property name=&quot;dist.base&quot; value=&quot;dist&quot;/&gt;
&lt;property name=&quot;dist.home&quot; value=&quot;$&#123;dist.base&#125;&quot;/&gt;
&lt;property name=&quot;build.base&quot; value=&quot;build&quot;/&gt;
&lt;property name=&quot;build.home&quot; value=&quot;$&#123;build.base&#125;/$&#123;app.id&#125;&quot;/&gt;
&lt;property name=&quot;build.webinf&quot; value=&quot;$&#123;build.home&#125;/WEB-INF&quot;/&gt;
&lt;property name=&quot;build.lib&quot; value=&quot;$&#123;build.webinf&#125;/lib&quot;/&gt;
&lt;property name=&quot;build.classes&quot; value=&quot;$&#123;build.webinf&#125;/classes&quot;/&gt;
&lt;property name=&quot;home.conf&quot; value=&quot;conf&quot;/&gt;
&lt;property name=&quot;home.web&quot; value=&quot;web&quot;/&gt;
&lt;property name=&quot;home.lib&quot; value=&quot;lib&quot;/&gt;
&lt;property name=&quot;home.src&quot; value=&quot;src&quot; /&gt;
&lt;property name=&quot;home.docs&quot; value=&quot;docs&quot;/&gt;
&lt;property name=&quot;home.images&quot; value=&quot;images&quot;/&gt;

&lt;!--  controle de compilacao  --&gt;

&lt;property name=&quot;compile.debug&quot; value=&quot;true&quot;/&gt;
&lt;property name=&quot;compile.deprecation&quot; value=&quot;true&quot;/&gt;
&lt;property name=&quot;compile.optimize&quot; value=&quot;true&quot;/&gt;
&lt;property name=&quot;packagenames&quot; value=&quot;src.*&quot;/&gt;
&lt;property name=&quot;warfile&quot; value=&quot;$&#123;app.id&#125;.war&quot;/&gt;

&lt;!-- Classpath --&gt;
&lt;path id=&quot;compile.classpath&quot;&gt;
	&lt;fileset dir=&quot;$&#123;home.lib&#125;&quot;&gt;
		&lt;include name=&quot;*.jar&quot;/&gt;
	&lt;/fileset&gt;
	&lt;pathelement location=&quot;$&#123;build.classes&#125;&quot;/&gt;
&lt;/path&gt;

&lt;!-- CREATE PROJECT --&gt;

&lt;target name=&quot;start&quot; depends=&quot;prepare&quot;/&gt;
&lt;!-- PREPARE  --&gt;
&lt;target name=&quot;prepare&quot;&gt;
	&lt;mkdir dir=&quot;$&#123;build.home&#125;&quot;/&gt;
	&lt;mkdir dir=&quot;$&#123;build.lib&#125;&quot;/&gt;
	&lt;mkdir dir=&quot;$&#123;build.classes&#125;&quot;/&gt;
	
	&lt;mkdir dir=&quot;$&#123;home.conf&#125;&quot;/&gt;
	&lt;mkdir dir=&quot;$&#123;home.web&#125;&quot;/&gt;
	&lt;mkdir dir=&quot;$&#123;home.lib&#125;&quot;/&gt;
	&lt;mkdir dir=&quot;$&#123;home.src&#125;&quot;/&gt;
	&lt;mkdir dir=&quot;$&#123;home.docs&#125;&quot;/&gt;

	&lt;copy todir=&quot;$&#123;build.lib&#125;&quot;&gt;
		&lt;fileset dir=&quot;$&#123;home.lib&#125;&quot;&gt;
			&lt;include name=&quot;*.jar&quot;/&gt;
			&lt;exclude name=&quot;junit.jar&quot;/&gt;
			&lt;exclude name=&quot;servlet.jar&quot;/&gt;
			&lt;exclude name=&quot;j2ee.jar&quot;/&gt;				
		&lt;/fileset&gt;
	&lt;/copy&gt;
	&lt;copy todir=&quot;$&#123;build.webinf&#125;&quot;&gt;
		&lt;fileset dir=&quot;$&#123;home.conf&#125;&quot;&gt;
			&lt;include name=&quot;*.tld&quot;/&gt;
			&lt;include name=&quot;*.properties&quot;/&gt;
			&lt;include name=&quot;*.conf&quot;/&gt;
			&lt;include name=&quot;*.xml&quot;/&gt;
			&lt;include name=&quot;*.script&quot;/&gt;
		&lt;/fileset&gt;
	&lt;/copy&gt;
&lt;/target&gt;

&lt;!-- COPYWEB --&gt;
&lt;target name=&quot;copyWeb&quot; depends=&quot;prepare&quot;&gt;
	&lt;copy todir=&quot;$&#123;build.home&#125;&quot;&gt;
		&lt;fileset dir=&quot;$&#123;home.web&#125;&quot;&gt;
			&lt;exclude name=&quot;WEB-INF&quot;/&gt;
		&lt;/fileset&gt;
		&lt;fileset dir=&quot;$&#123;home.images&#125;&quot;&gt;
		&lt;/fileset&gt;
	&lt;/copy&gt;
&lt;/target&gt;

&lt;!-- CLEAN --&gt;
&lt;target name=&quot;clean&quot; description=&quot;Delete old build and dist 

directories">
<delete dir="${build.home}"/>
<delete dir="${dist.home}"/>
</target>

&lt;!-- COMPILE --&gt;
&lt;target name=&quot;build&quot; depends=&quot;copyWeb&quot; description=&quot;Compile Java 

sources">
<!-- Compile Java classes as necessary -->
<javac srcdir="${home.src}" destdir="${build.classes}"
debug="${compile.debug}" deprecation="${compile.deprecation}"
optimize="${compile.optimize}">
<classpath refid="compile.classpath"/>
</javac>
</target>

&lt;!-- JAVADOC --&gt;
&lt;target name=&quot;javadoc&quot; description=&quot;Gerando JavaDoc&quot;&gt;
    &lt;javadoc destdir=&quot;$&#123;home.docs&#125;&quot; author=&quot;true&quot; version=&quot;true&quot; use=&quot;true&quot; windowtitle=&quot;Sisac API&quot;&gt;
		&lt;fileset dir=&quot;$&#123;home.src&#125;&quot; defaultexcludes=&quot;yes&quot;&gt;
        	&lt;include name=&quot;**/*.java&quot; /&gt;
	        &lt;exclude name=&quot;**/*Test*.java&quot;/&gt;
	    &lt;/fileset&gt;
    &lt;/javadoc&gt;
&lt;/target&gt;
	
&lt;!-- DISTRIBUTION --&gt;
&lt;target name=&quot;war&quot; depends=&quot;copyWeb,build&quot; description=&quot;Create binary 

distribution">
<mkdir dir="${dist.home}"/>
<jar jarfile="${dist.home}/${warfile}" basedir="${build.home}"/>
</target>

&lt;!-- makedb --&gt;
&lt;target name=&quot;makedb&quot; depends=&quot;prepare, build&quot; description=&quot;Cria as tabelas no BD&quot; &gt;
	&lt;java classpathref=&quot;compile.classpath&quot; classname=&quot;br.com.goodlifeassociados.model.database.IniciaBD&quot;/&gt;
&lt;/target&gt;

</project>[/code]

Agradeço se alguém puder ajudar! :wink: