Boa Tarde
Alguem poderia me informar a onde esta o erro pois não sei mais o q tentar neste momento.
Obrigado.
XML
<?xml version="1.0" encoding="UTF-8"?>
<project name="Criando arquivo EAR " basedir="." default="Init">
<!-- definicao das propriedades dos arquivos -->
<property name="src" value="src"/>
<property name="webappdir" value="WebContent"/>
<property name="bin" value="bin"/>
<property name="libs" value="${src}/Libs"/>
<property name="dist" value="dist"/>
<property name="deploy.home" value="/home/.../jboss-4.2.0.GA/server/default/deploy"/>
<!-- definindo as propriedades do modulo web-->
<property name="warfile.name" value="${dist}/exemplo.war" />
<property name="webxml.file" value="${webappdir}/WEB-INF/web.xml" /> <!-- ok-->
<property name="webinf.dir" value="${webappdir}/WEB-INF" />
<!-- definindo as propriedades do ear-->
<property name="metainf.dir" value="META-INF" />
<property name="session.jar.file" value="${dist}/exemplo.jar" />
<property name="application.ear.file" value="${dist}/exemplo.ear" />
<!-- definindo onde estao os JARs dos sistema para a compilacao -->
<path id="classpath.base">
<fileset dir="${libs}"> <!-- ok-->
<include name="*.jar" /> <!-- ok-->
</fileset>
</path>
<target name="Init">
<echo>Iniciando build do Projeto EAR com Ant</echo>
</target>
<target name="Clean" depends="Init">
<delete dir="${bin}"></delete>
</target>
<target name="Prepare" depends="Init">
<mkdir dir="${bin}" />
</target>
<!-- compilando os .java do diretorio src -->
<target name="Compile" depends="Init, Clean, Prepare">
<echo>Compilando as classes do diretorio src</echo>
<javac srcdir="${src}" destdir="${bin}" verbose="false">
<classpath refid="classpath.base" />
</javac>
</target>
<!-- cria o arquivo war do ear -->
<target name="CriaWar" depends="Compile">
<echo>Gerando arquivo WAR</echo>
<war warfile="${warfile.name}" webxml="${webxml.file}">
<fileset dir="${webappdir}" >
<include name="*.html" /> <!-- ok-->
<include name="*.jsp" /> <!-- ok-->
</fileset>
<classes dir="${bin}">
<!-- As classes Java desses diretorios -->
<!-- nao fazem parte do modulo web -->
<exclude name="session/**" />
</classes>
<lib dir="${libs}">
<exclude name="jboss-ejb3x.jar" />
</lib>
<webinf dir="${webinf.dir}">
<include name="${webxml.file}" />
</webinf>
</war>
</target>
<!--cria o JAR com os EJBs -->
<target name="Criar JAR EJB" depends="CriaWar">
<echo>Gerando arquivo JAR com EJB </echo>
<jar jarfile="${session.jar.file}">
<fileset dir="${bin}">
<!-- Os beans do JSF nao estao no modulo EJB-->
<exclude name="managedbean/**" />
</fileset>
</jar>
</target>
<!-- cria o arquivo EAR -->
<target name="Criar arquivo EAR" depends="Criar JAR EJB">
<echo>Gerando arquivo EAR </echo>
<jar jarfile="${application.ear.file}">
<metainf dir="META-INF">
<include name="application.xml" />
</metainf>
<fileset dir="${dist}" includes="*.ejb3, *.jar, *.war, *.par" />
</jar>
<!-- se quiser apagar os arquivos gerados -->
<!--
<delete file="${warfile.name}"/>
<delete file="${session.jar.file}"/>
-->
</target>
<!-- faz o deploy no JBoss -->
<target name="Deploy-ear" depends="Criar arquivo EAR, Undeploy-ear">
<echo>Deploy aplicacao no JBOSS</echo>
<copy file="${application.ear.file}" todir="${deploy.home}" />
</target>
<!-- undeploy da aplicacao -->
<target name="Undeploy-ear">
<echo>UnDeploy aplicacao no JBOSS</echo>
<delete file="${deploy.home}/exemplo.ear"/>
</target>
</project>
ERRO:
Buildfile: D:\Projetos\GerenciaURC\axis_bujava.xml
Init:
[echo] Iniciando build do Projeto EAR com Ant
Clean:
[delete] Deleting directory D:\Projetos\GerenciaURC\bin
Prepare:
[mkdir] Created dir: D:\Projetos\GerenciaURC\bin
Compile:
[echo] Compilando as classes do diretorio src
[javac] Compiling 58 source files to D:\Projetos\GerenciaURC\bin
[javac] D:\Projetos\GerenciaURC\src\br\com\whitemartins\gerenciaurc\controller\GlobalExceptionHandler.java:7: package org.apache.struts.action does not exist
[javac] import org.apache.struts.action.ActionForm;
[javac] ^
[javac] D:\Projetos\GerenciaURC\src\br\com\whitemartins\gerenciaurc\controller\GlobalExceptionHandler.java:8: package org.apache.struts.action does not exist
[javac] import org.apache.struts.action.ActionForward;
[javac] ^
[javac] D:\Projetos\GerenciaURC\src\br\com\whitemartins\gerenciaurc\controller\GlobalExceptionHandler.java:9: package org.apache.struts.action does not exist
[javac] import org.apache.struts.action.ActionMapping;
[javac] ^
[javac] D:\Projetos\GerenciaURC\src\br\com\whitemartins\gerenciaurc\controller\GlobalExceptionHandler.java:10: package org.apache.struts.action does not exist
[javac] import org.apache.struts.action.ExceptionHandler;
[javac] ^
[javac] D:\Projetos\GerenciaURC\src\br\com\whitemartins\gerenciaurc\controller\GlobalExceptionHandler.java:11: package org.apache.struts.config does not exist
[javac] import org.apache.struts.config.ExceptionConfig;
[javac] ^
[javac] D:\Projetos\GerenciaURC\src\br\com\whitemartins\gerenciaurc\controller\GlobalExceptionHandler.java:14: cannot find symbol
[javac] symbol: class ExceptionHandler
[javac] public class GlobalExceptionHandler extends ExceptionHandler
[javac] ^
[javac] D:\Projetos\GerenciaURC\src\br\com\whitemartins\gerenciaurc\controller\GlobalExceptionHandler.java:19: cannot find symbol
[javac] symbol : class ExceptionConfig
[javac] location: class br.com.whitemartins.gerenciaurc.controller.GlobalExceptionHandler
[javac] public ActionForward execute(Exception e, ExceptionConfig excConfig, ActionMapping mapping, ActionForm form, HttpServletRequest request, HttpServletResponse response) throws ServletException
[javac] ^
[javac] D:\Projetos\GerenciaURC\src\br\com\whitemartins\gerenciaurc\controller\GlobalExceptionHandler.java:19: cannot find symbol
[javac] symbol : class ActionMapping
[javac] location: class br.com.whitemartins.gerenciaurc.controller.GlobalExceptionHandler
[javac] public ActionForward execute(Exception e, ExceptionConfig excConfig, ActionMapping mapping, ActionForm form, HttpServletRequest request, HttpServletResponse response) throws ServletException
[javac] ^
[javac] D:\Projetos\GerenciaURC\src\br\com\whitemartins\gerenciaurc\controller\GlobalExceptionHandler.java:19: cannot find symbol
[javac] symbol : class ActionForm
[javac] location: class br.com.whitemartins.gerenciaurc.controller.GlobalExceptionHandler
[javac] public ActionForward execute(Exception e, ExceptionConfig excConfig, ActionMapping mapping, ActionForm form, HttpServletRequest request, HttpServletResponse response) throws ServletException
[javac] ^
[javac] D:\Projetos\GerenciaURC\src\br\com\whitemartins\gerenciaurc\controller\GlobalExceptionHandler.java:19: cannot find symbol
[javac] symbol : class ActionForward
[javac] location: class br.com.whitemartins.gerenciaurc.controller.GlobalExceptionHandler
[javac] public ActionForward execute(Exception e, ExceptionConfig excConfig, ActionMapping mapping, ActionForm form, HttpServletRequest request, HttpServletResponse response) throws ServletException
[javac] ^
[javac] D:\Projetos\GerenciaURC\src\br\com\whitemartins\gerenciaurc\web\struts\form\ContatoForm.java:8: package org.apache.struts.action does not exist
[javac] import org.apache.struts.action.ActionMapping;
[javac] ^
[javac] D:\Projetos\GerenciaURC\src\br\com\whitemartins\gerenciaurc\web\struts\form\BaseForm.java:5: package org.apache.struts.action does not exist
[javac] import org.apache.struts.action.ActionForm;
[javac] ^
[javac] D:\Projetos\GerenciaURC\src\br\com\whitemartins\gerenciaurc\web\struts\form\BaseForm.java:6: package org.apache.struts.action does not exist
[javac] import org.apache.struts.action.ActionMapping;
[javac] ^
[javac] D:\Projetos\GerenciaURC\src\br\com\whitemartins\gerenciaurc\web\struts\form\BaseForm.java:8: cannot find symbol
[javac] symbol: class ActionForm
[javac] public abstract class BaseForm extends ActionForm {
[javac] ^
[javac] D:\Projetos\GerenciaURC\src\br\com\whitemartins\gerenciaurc\web\struts\form\ContatoForm.java:155: cannot find symbol
[javac] symbol : class ActionMapping
[javac] location: class br.com.whitemartins.gerenciaurc.web.struts.form.ContatoForm
[javac] public void limpaForm(ActionMapping mapping, HttpServletRequest request) {
[javac] ^
[javac] D:\Projetos\GerenciaURC\src\br\com\whitemartins\gerenciaurc\web\struts\form\BaseForm.java:44: cannot find symbol
[javac] symbol : class ActionMapping
[javac] location: class br.com.whitemartins.gerenciaurc.web.struts.form.BaseForm
[javac] public abstract void limpaForm(ActionMapping mapping, HttpServletRequest request);
[javac] ^
[javac] D:\Projetos\GerenciaURC\src\br\com\whitemartins\gerenciaurc\web\struts\form\EmpresaForm.java:8: package org.apache.struts.action does not exist
[javac] import org.apache.struts.action.ActionMapping;
[javac] ^
[javac] D:\Projetos\GerenciaURC\src\br\com\whitemartins\gerenciaurc\web\struts\form\EmpresaForm.java:168: cannot find symbol
[javac] symbol : class ActionMapping
[javac] location: class br.com.whitemartins.gerenciaurc.web.struts.form.EmpresaForm
[javac] public void limpaForm(ActionMapping mapping, HttpServletRequest request) {
[javac] ^
[javac] D:\Projetos\GerenciaURC\src\br\com\whitemartins\gerenciaurc\integration\dao\Impl\OracleBaseDAOImpl.java:6: package org.apache.log4j does not exist
[javac] import org.apache.log4j.Logger;
[javac] ^
[javac] D:\Projetos\GerenciaURC\src\br\com\whitemartins\gerenciaurc\integration\dao\Impl\OracleBaseDAOImpl.java:15: cannot find symbol
[javac] symbol : class Logger
[javac] location: class br.com.whitemartins.gerenciaurc.integration.dao.Impl.OracleBaseDAOImpl
[javac] protected Logger logger = Logger.getLogger(this.getClass());
[javac] ^
[javac] D:\Projetos\GerenciaURC\src\br\com\whitemartins\gerenciaurc\web\struts\form\UrcForm.java:8: package org.apache.struts.action does not exist
[javac] import org.apache.struts.action.ActionMapping;
[javac] ^
[javac] D:\Projetos\GerenciaURC\src\br\com\whitemartins\gerenciaurc\web\struts\form\UrcForm.java:102: cannot find symbol
[javac] symbol : class ActionMapping
[javac] location: class br.com.whitemartins.gerenciaurc.web.struts.form.UrcForm
[javac] public void limpaForm(ActionMapping mapping, HttpServletRequest request) {
[javac] ^
[javac] D:\Projetos\GerenciaURC\src\br\com\whitemartins\gerenciaurc\integration\dao\OracleImpl\OracleBaseDAOImpl.java:6: package org.apache.log4j does not exist
[javac] import org.apache.log4j.Logger;
[javac] ^
[javac] D:\Projetos\GerenciaURC\src\br\com\whitemartins\gerenciaurc\integration\dao\OracleImpl\OracleBaseDAOImpl.java:16: cannot find symbol
[javac] symbol : class Logger
[javac] location: class br.com.whitemartins.gerenciaurc.integration.dao.OracleImpl.OracleBaseDAOImpl
[javac] protected Logger logger = Logger.getLogger(this.getClass());
[javac] ^
[javac] D:\Projetos\GerenciaURC\src\br\com\whitemartins\gerenciaurc\service\BaseApplicationService.java:3: package org.apache.log4j does not exist
[javac] import org.apache.log4j.Logger;
[javac] ^
[javac] D:\Projetos\GerenciaURC\src\br\com\whitemartins\gerenciaurc\service\BaseApplicationService.java:7: cannot find symbol
[javac] symbol : class Logger
[javac] location: class br.com.whitemartins.gerenciaurc.service.BaseApplicationService
[javac] protected Logger logger = Logger.getLogger(this.getClass());
[javac] ^
[javac] D:\Projetos\GerenciaURC\src\br\com\whitemartins\gerenciaurc\service\ServiceLocator.java:7: package org.apache.log4j does not exist
[javac] import org.apache.log4j.Logger;
[javac] ^
[javac] D:\Projetos\GerenciaURC\src\br\com\whitemartins\gerenciaurc\service\ServiceLocator.java:13: cannot find symbol
[javac] symbol : class Logger
[javac] location: class br.com.whitemartins.gerenciaurc.service.ServiceLocator
[javac] private static Logger logger = Logger.getLogger(ServiceLocator.class);
[javac] ^
[javac] D:\Projetos\GerenciaURC\src\br\com\whitemartins\gerenciaurc\web\servlet\filter\AuthenticationServletFilter.java:16: package org.apache.log4j does not exist
[javac] import org.apache.log4j.Logger;
[javac] ^
[javac] D:\Projetos\GerenciaURC\src\br\com\whitemartins\gerenciaurc\web\servlet\filter\AuthenticationServletFilter.java:20: cannot find symbol
[javac] symbol : class Logger
[javac] location: class br.com.whitemartins.gerenciaurc.web.servlet.filter.AuthenticationServletFilter
[javac] private Logger logger = Logger.getLogger(this.getClass());
[javac] ^
[javac] D:\Projetos\GerenciaURC\src\br\com\whitemartins\gerenciaurc\web\servlet\listener\GerenciaURCSessionListener.java:6: package org.apache.log4j does not exist
[javac] import org.apache.log4j.Logger;
[javac] ^
[javac] D:\Projetos\GerenciaURC\src\br\com\whitemartins\gerenciaurc\web\servlet\listener\GerenciaURCSessionListener.java:10: cannot find symbol
[javac] symbol : class Logger
[javac] location: class br.com.whitemartins.gerenciaurc.web.servlet.listener.GerenciaURCSessionListener
[javac] private Logger logger = Logger.getLogger(this.getClass());
[javac] ^
[javac] D:\Projetos\GerenciaURC\src\br\com\whitemartins\gerenciaurc\web\struts\CustomRequestProcessor.java:7: package org.apache.struts.action does not exist
[javac] import org.apache.struts.action.*;
[javac] ^
[javac] D:\Projetos\GerenciaURC\src\br\com\whitemartins\gerenciaurc\web\struts\CustomRequestProcessor.java:10: cannot find symbol
[javac] symbol: class RequestProcessor
[javac] public class CustomRequestProcessor extends RequestProcessor {
[javac] ^
[javac] D:\Projetos\GerenciaURC\src\br\com\whitemartins\gerenciaurc\web\struts\action\BaseDispatchAction.java:7: package org.apache.struts.action does not exist
[javac] import org.apache.struts.action.ActionForm;
[javac] ^
[javac] D:\Projetos\GerenciaURC\src\br\com\whitemartins\gerenciaurc\web\struts\action\BaseDispatchAction.java:8: package org.apache.struts.action does not exist
[javac] import org.apache.struts.action.ActionMapping;
[javac] ^
[javac] D:\Projetos\GerenciaURC\src\br\com\whitemartins\gerenciaurc\web\struts\action\BaseDispatchAction.java:9: package org.apache.struts.actions does not exist
[javac] import org.apache.struts.actions.DispatchAction;
[javac] ^
[javac] D:\Projetos\GerenciaURC\src\br\com\whitemartins\gerenciaurc\web\struts\action\BaseDispatchAction.java:16: cannot find symbol
[javac] symbol: class DispatchAction
[javac] public class BaseDispatchAction extends DispatchAction {
[javac] ^
[javac] D:\Projetos\GerenciaURC\src\br\com\whitemartins\gerenciaurc\web\struts\form\SeedForm.java:5: package org.apache.struts.action does not exist
[javac] import org.apache.struts.action.ActionMapping;
[javac] ^
[javac] D:\Projetos\GerenciaURC\src\br\com\whitemartins\gerenciaurc\web\struts\action\BaseDispatchAction.java:28: cannot find symbol
[javac] symbol : class ActionMapping
[javac] location: class br.com.whitemartins.gerenciaurc.web.struts.action.BaseDispatchAction
[javac] public void seeds(SeedForm seedForm, ActionMapping mapping, HttpServletRequest request, ActionForm form){
[javac] ^
[javac] D:\Projetos\GerenciaURC\src\br\com\whitemartins\gerenciaurc\web\struts\action\BaseDispatchAction.java:28: cannot find symbol
[javac] symbol : class ActionForm
[javac] location: class br.com.whitemartins.gerenciaurc.web.struts.action.BaseDispatchAction
[javac] public void seeds(SeedForm seedForm, ActionMapping mapping, HttpServletRequest request, ActionForm form){
[javac] ^
[javac] D:\Projetos\GerenciaURC\src\br\com\whitemartins\gerenciaurc\web\struts\form\SeedForm.java:35: cannot find symbol
[javac] symbol : class ActionMapping
[javac] location: class br.com.whitemartins.gerenciaurc.web.struts.form.SeedForm
[javac] public void limpaForm(ActionMapping mapping, HttpServletRequest request) {
[javac] ^
[javac] D:\Projetos\GerenciaURC\src\br\com\whitemartins\gerenciaurc\web\struts\action\ContatoAction.java:8: package org.apache.struts.action does not exist
[javac] import org.apache.struts.action.ActionForm;
[javac] ^
[javac] D:\Projetos\GerenciaURC\src\br\com\whitemartins\gerenciaurc\web\struts\action\ContatoAction.java:9: package org.apache.struts.action does not exist
[javac] import org.apache.struts.action.ActionForward;
[javac] ^
[javac] D:\Projetos\GerenciaURC\src\br\com\whitemartins\gerenciaurc\web\struts\action\ContatoAction.java:10: package org.apache.struts.action does not exist
[javac] import org.apache.struts.action.ActionMapping;
[javac] ^
[javac] D:\Projetos\GerenciaURC\src\br\com\whitemartins\gerenciaurc\web\struts\action\ContatoAction.java:37: cannot find symbol
[javac] symbol : class ActionMapping
[javac] location: class br.com.whitemartins.gerenciaurc.web.struts.action.ContatoAction
[javac] public ActionForward cadastrarContato(ActionMapping mapping, ActionForm form, HttpServletRequest request,
[javac] ^
[javac] D:\Projetos\GerenciaURC\src\br\com\whitemartins\gerenciaurc\web\struts\action\ContatoAction.java:37: cannot find symbol
[javac] symbol : class ActionForm
[javac] location: class br.com.whitemartins.gerenciaurc.web.struts.action.ContatoAction
[javac] public ActionForward cadastrarContato(ActionMapping mapping, ActionForm form, HttpServletRequest request,
[javac] ^
[javac] D:\Projetos\GerenciaURC\src\br\com\whitemartins\gerenciaurc\web\struts\action\ContatoAction.java:37: cannot find symbol
[javac] symbol : class ActionForward
[javac] location: class br.com.whitemartins.gerenciaurc.web.struts.action.ContatoAction
[javac] public ActionForward cadastrarContato(ActionMapping mapping, ActionForm form, HttpServletRequest request,
[javac] ^
[javac] D:\Projetos\GerenciaURC\src\br\com\whitemartins\gerenciaurc\web\struts\action\ContatoAction.java:62: cannot find symbol
[javac] symbol : class ActionMapping
[javac] location: class br.com.whitemartins.gerenciaurc.web.struts.action.ContatoAction
[javac] public ActionForward incluirContato(ActionMapping mapping, ActionForm form, HttpServletRequest request,
[javac] ^
[javac] D:\Projetos\GerenciaURC\src\br\com\whitemartins\gerenciaurc\web\struts\action\ContatoAction.java:62: cannot find symbol
[javac] symbol : class ActionForm
[javac] location: class br.com.whitemartins.gerenciaurc.web.struts.action.ContatoAction
[javac] public ActionForward incluirContato(ActionMapping mapping, ActionForm form, HttpServletRequest request,
[javac] ^
[javac] D:\Projetos\GerenciaURC\src\br\com\whitemartins\gerenciaurc\web\struts\action\ContatoAction.java:62: cannot find symbol
[javac] symbol : class ActionForward
[javac] location: class br.com.whitemartins.gerenciaurc.web.struts.action.ContatoAction
[javac] public ActionForward incluirContato(ActionMapping mapping, ActionForm form, HttpServletRequest request,
[javac] ^
[javac] D:\Projetos\GerenciaURC\src\br\com\whitemartins\gerenciaurc\web\struts\action\ContatoAction.java:86: cannot find symbol
[javac] symbol : class ActionMapping
[javac] location: class br.com.whitemartins.gerenciaurc.web.struts.action.ContatoAction
[javac] public ActionForward alterarContato(ActionMapping mapping, ActionForm form, HttpServletRequest request,
[javac] ^
[javac] D:\Projetos\GerenciaURC\src\br\com\whitemartins\gerenciaurc\web\struts\action\ContatoAction.java:86: cannot find symbol
[javac] symbol : class ActionForm
[javac] location: class br.com.whitemartins.gerenciaurc.web.struts.action.ContatoAction
[javac] public ActionForward alterarContato(ActionMapping mapping, ActionForm form, HttpServletRequest request,
[javac] ^
[javac] D:\Projetos\GerenciaURC\src\br\com\whitemartins\gerenciaurc\web\struts\action\ContatoAction.java:86: cannot find symbol
[javac] symbol : class ActionForward
[javac] location: class br.com.whitemartins.gerenciaurc.web.struts.action.ContatoAction
[javac] public ActionForward alterarContato(ActionMapping mapping, ActionForm form, HttpServletRequest request,
[javac] ^
[javac] D:\Projetos\GerenciaURC\src\br\com\whitemartins\gerenciaurc\web\struts\action\ContatoAction.java:114: cannot find symbol
[javac] symbol : class ActionMapping
[javac] location: class br.com.whitemartins.gerenciaurc.web.struts.action.ContatoAction
[javac] public ActionForward salvarAlteracaoContato(ActionMapping mapping, ActionForm form, HttpServletRequest request,
[javac] ^
[javac] D:\Projetos\GerenciaURC\src\br\com\whitemartins\gerenciaurc\web\struts\action\ContatoAction.java:114: cannot find symbol
[javac] symbol : class ActionForm
[javac] location: class br.com.whitemartins.gerenciaurc.web.struts.action.ContatoAction
[javac] public ActionForward salvarAlteracaoContato(ActionMapping mapping, ActionForm form, HttpServletRequest request,
[javac] ^
[javac] D:\Projetos\GerenciaURC\src\br\com\whitemartins\gerenciaurc\web\struts\action\ContatoAction.java:114: cannot find symbol
[javac] symbol : class ActionForward
[javac] location: class br.com.whitemartins.gerenciaurc.web.struts.action.ContatoAction
[javac] public ActionForward salvarAlteracaoContato(ActionMapping mapping, ActionForm form, HttpServletRequest request,
[javac] ^
[javac] D:\Projetos\GerenciaURC\src\br\com\whitemartins\gerenciaurc\web\struts\action\ContatoAction.java:138: cannot find symbol
[javac] symbol : class ActionMapping
[javac] location: class br.com.whitemartins.gerenciaurc.web.struts.action.ContatoAction
[javac] public ActionForward voltar(ActionMapping mapping, ActionForm form, HttpServletRequest request,
[javac] ^
[javac] D:\Projetos\GerenciaURC\src\br\com\whitemartins\gerenciaurc\web\struts\action\ContatoAction.java:138: cannot find symbol
[javac] symbol : class ActionForm
[javac] location: class br.com.whitemartins.gerenciaurc.web.struts.action.ContatoAction
[javac] public ActionForward voltar(ActionMapping mapping, ActionForm form, HttpServletRequest request,
[javac] ^
[javac] D:\Projetos\GerenciaURC\src\br\com\whitemartins\gerenciaurc\web\struts\action\ContatoAction.java:138: cannot find symbol
[javac] symbol : class ActionForward
[javac] location: class br.com.whitemartins.gerenciaurc.web.struts.action.ContatoAction
[javac] public ActionForward voltar(ActionMapping mapping, ActionForm form, HttpServletRequest request,
[javac] ^
[javac] D:\Projetos\GerenciaURC\src\br\com\whitemartins\gerenciaurc\web\struts\action\EmpresaAction.java:8: package org.apache.struts.action does not exist
[javac] import org.apache.struts.action.ActionForm;
[javac] ^
[javac] D:\Projetos\GerenciaURC\src\br\com\whitemartins\gerenciaurc\web\struts\action\EmpresaAction.java:9: package org.apache.struts.action does not exist
[javac] import org.apache.struts.action.ActionForward;
[javac] ^
[javac] D:\Projetos\GerenciaURC\src\br\com\whitemartins\gerenciaurc\web\struts\action\EmpresaAction.java:10: package org.apache.struts.action does not exist
[javac] import org.apache.struts.action.ActionMapping;
[javac] ^
[javac] D:\Projetos\GerenciaURC\src\br\com\whitemartins\gerenciaurc\web\struts\action\EmpresaAction.java:36: cannot find symbol
[javac] symbol : class ActionMapping
[javac] location: class br.com.whitemartins.gerenciaurc.web.struts.action.EmpresaAction
[javac] public ActionForward cadastrarEmpresa(ActionMapping mapping, ActionForm form, HttpServletRequest request,
[javac] ^
[javac] D:\Projetos\GerenciaURC\src\br\com\whitemartins\gerenciaurc\web\struts\action\EmpresaAction.java:36: cannot find symbol
[javac] symbol : class ActionForm
[javac] location: class br.com.whitemartins.gerenciaurc.web.struts.action.EmpresaAction
[javac] public ActionForward cadastrarEmpresa(ActionMapping mapping, ActionForm form, HttpServletRequest request,
[javac] ^
[javac] D:\Projetos\GerenciaURC\src\br\com\whitemartins\gerenciaurc\web\struts\action\EmpresaAction.java:36: cannot find symbol
[javac] symbol : class ActionForward
[javac] location: class br.com.whitemartins.gerenciaurc.web.struts.action.EmpresaAction
[javac] public ActionForward cadastrarEmpresa(ActionMapping mapping, ActionForm form, HttpServletRequest request,
[javac] ^
[javac] D:\Projetos\GerenciaURC\src\br\com\whitemartins\gerenciaurc\web\struts\action\EmpresaAction.java:60: cannot find symbol
[javac] symbol : class ActionMapping
[javac] location: class br.com.whitemartins.gerenciaurc.web.struts.action.EmpresaAction
[javac] public ActionForward incluirEmpresa(ActionMapping mapping, ActionForm form, HttpServletRequest request,
[javac] ^
[javac] D:\Projetos\GerenciaURC\src\br\com\whitemartins\gerenciaurc\web\struts\action\EmpresaAction.java:60: cannot find symbol
[javac] symbol : class ActionForm
[javac] location: class br.com.whitemartins.gerenciaurc.web.struts.action.EmpresaAction
[javac] public ActionForward incluirEmpresa(ActionMapping mapping, ActionForm form, HttpServletRequest request,
[javac] ^
[javac] D:\Projetos\GerenciaURC\src\br\com\whitemartins\gerenciaurc\web\struts\action\EmpresaAction.java:60: cannot find symbol
[javac] symbol : class ActionForward
[javac] location: class br.com.whitemartins.gerenciaurc.web.struts.action.EmpresaAction
[javac] public ActionForward incluirEmpresa(ActionMapping mapping, ActionForm form, HttpServletRequest request,
[javac] ^
[javac] D:\Projetos\GerenciaURC\src\br\com\whitemartins\gerenciaurc\web\struts\action\EmpresaAction.java:83: cannot find symbol
[javac] symbol : class ActionMapping
[javac] location: class br.com.whitemartins.gerenciaurc.web.struts.action.EmpresaAction
[javac] public ActionForward alterarEmpresa(ActionMapping mapping, ActionForm form, HttpServletRequest request,
[javac] ^
[javac] D:\Projetos\GerenciaURC\src\br\com\whitemartins\gerenciaurc\web\struts\action\EmpresaAction.java:83: cannot find symbol
[javac] symbol : class ActionForm
[javac] location: class br.com.whitemartins.gerenciaurc.web.struts.action.EmpresaAction
[javac] public ActionForward alterarEmpresa(ActionMapping mapping, ActionForm form, HttpServletRequest request,
[javac] ^
[javac] D:\Projetos\GerenciaURC\src\br\com\whitemartins\gerenciaurc\web\struts\action\EmpresaAction.java:83: cannot find symbol
[javac] symbol : class ActionForward
[javac] location: class br.com.whitemartins.gerenciaurc.web.struts.action.EmpresaAction
[javac] public ActionForward alterarEmpresa(ActionMapping mapping, ActionForm form, HttpServletRequest request,
[javac] ^
[javac] D:\Projetos\GerenciaURC\src\br\com\whitemartins\gerenciaurc\web\struts\action\EmpresaAction.java:110: cannot find symbol
[javac] symbol : class ActionMapping
[javac] location: class br.com.whitemartins.gerenciaurc.web.struts.action.EmpresaAction
[javac] public ActionForward salvarAlteracaoEmpresa(ActionMapping mapping, ActionForm form, HttpServletRequest request,
[javac] ^
[javac] D:\Projetos\GerenciaURC\src\br\com\whitemartins\gerenciaurc\web\struts\action\EmpresaAction.java:110: cannot find symbol
[javac] symbol : class ActionForm
[javac] location: class br.com.whitemartins.gerenciaurc.web.struts.action.EmpresaAction
[javac] public ActionForward salvarAlteracaoEmpresa(ActionMapping mapping, ActionForm form, HttpServletRequest request,
[javac] ^
[javac] D:\Projetos\GerenciaURC\src\br\com\whitemartins\gerenciaurc\web\struts\action\EmpresaAction.java:110: cannot find symbol
[javac] symbol : class ActionForward
[javac] location: class br.com.whitemartins.gerenciaurc.web.struts.action.EmpresaAction
[javac] public ActionForward salvarAlteracaoEmpresa(ActionMapping mapping, ActionForm form, HttpServletRequest request,
[javac] ^
[javac] D:\Projetos\GerenciaURC\src\br\com\whitemartins\gerenciaurc\web\struts\action\EmpresaAction.java:133: cannot find symbol
[javac] symbol : class ActionMapping
[javac] location: class br.com.whitemartins.gerenciaurc.web.struts.action.EmpresaAction
[javac] public ActionForward voltar(ActionMapping mapping, ActionForm form, HttpServletRequest request,
[javac] ^
[javac] D:\Projetos\GerenciaURC\src\br\com\whitemartins\gerenciaurc\web\struts\action\EmpresaAction.java:133: cannot find symbol
[javac] symbol : class ActionForm
[javac] location: class br.com.whitemartins.gerenciaurc.web.struts.action.EmpresaAction
[javac] public ActionForward voltar(ActionMapping mapping, ActionForm form, HttpServletRequest request,
[javac] ^
[javac] D:\Projetos\GerenciaURC\src\br\com\whitemartins\gerenciaurc\web\struts\action\EmpresaAction.java:133: cannot find symbol
[javac] symbol : class ActionForward
[javac] location: class br.com.whitemartins.gerenciaurc.web.struts.action.EmpresaAction
[javac] public ActionForward voltar(ActionMapping mapping, ActionForm form, HttpServletRequest request,
[javac] ^
[javac] D:\Projetos\GerenciaURC\src\br\com\whitemartins\gerenciaurc\web\struts\action\HomeAction.java:8: package org.apache.struts.action does not exist
[javac] import org.apache.struts.action.ActionForm;
[javac] ^
[javac] D:\Projetos\GerenciaURC\src\br\com\whitemartins\gerenciaurc\web\struts\action\HomeAction.java:9: package org.apache.struts.action does not exist
[javac] import org.apache.struts.action.ActionForward;
[javac] ^
[javac] D:\Projetos\GerenciaURC\src\br\com\whitemartins\gerenciaurc\web\struts\action\HomeAction.java:10: package org.apache.struts.action does not exist
[javac] import org.apache.struts.action.ActionMapping;
[javac] ^
[javac] D:\Projetos\GerenciaURC\src\br\com\whitemartins\gerenciaurc\web\struts\action\HomeAction.java:27: cannot find symbol
[javac] symbol : class ActionMapping
[javac] location: class br.com.whitemartins.gerenciaurc.web.struts.action.HomeAction
[javac] public ActionForward listarHome(ActionMapping mapping, ActionForm form, HttpServletRequest request,
[javac] ^
[javac] D:\Projetos\GerenciaURC\src\br\com\whitemartins\gerenciaurc\web\struts\action\HomeAction.java:27: cannot find symbol
[javac] symbol : class ActionForm
[javac] location: class br.com.whitemartins.gerenciaurc.web.struts.action.HomeAction
[javac] public ActionForward listarHome(ActionMapping mapping, ActionForm form, HttpServletRequest request,
[javac] ^
[javac] D:\Projetos\GerenciaURC\src\br\com\whitemartins\gerenciaurc\web\struts\action\HomeAction.java:27: cannot find symbol
[javac] symbol : class ActionForward
[javac] location: class br.com.whitemartins.gerenciaurc.web.struts.action.HomeAction
[javac] public ActionForward listarHome(ActionMapping mapping, ActionForm form, HttpServletRequest request,
[javac] ^
[javac] D:\Projetos\GerenciaURC\src\br\com\whitemartins\gerenciaurc\web\struts\action\HomeAction.java:33: cannot find symbol
[javac] symbol : class ActionMapping
[javac] location: class br.com.whitemartins.gerenciaurc.web.struts.action.HomeAction
[javac] public ActionForward listarURC(ActionMapping mapping, ActionForm form, HttpServletRequest request,
[javac] ^
[javac] D:\Projetos\GerenciaURC\src\br\com\whitemartins\gerenciaurc\web\struts\action\HomeAction.java:33: cannot find symbol
[javac] symbol : class ActionForm
[javac] location: class br.com.whitemartins.gerenciaurc.web.struts.action.HomeAction
[javac] public ActionForward listarURC(ActionMapping mapping, ActionForm form, HttpServletRequest request,
[javac] ^
[javac] D:\Projetos\GerenciaURC\src\br\com\whitemartins\gerenciaurc\web\struts\action\HomeAction.java:33: cannot find symbol
[javac] symbol : class ActionForward
[javac] location: class br.com.whitemartins.gerenciaurc.web.struts.action.HomeAction
[javac] public ActionForward listarURC(ActionMapping mapping, ActionForm form, HttpServletRequest request,
[javac] ^
[javac] D:\Projetos\GerenciaURC\src\br\com\whitemartins\gerenciaurc\web\struts\action\HomeAction.java:49: cannot find symbol
[javac] symbol : class ActionMapping
[javac] location: class br.com.whitemartins.gerenciaurc.web.struts.action.HomeAction
[javac] public ActionForward listarContatos(ActionMapping mapping, ActionForm form, HttpServletRequest request,
[javac] ^
[javac] D:\Projetos\GerenciaURC\src\br\com\whitemartins\gerenciaurc\web\struts\action\HomeAction.java:49: cannot find symbol
[javac] symbol : class ActionForm
[javac] location: class br.com.whitemartins.gerenciaurc.web.struts.action.HomeAction
[javac] public ActionForward listarContatos(ActionMapping mapping, ActionForm form, HttpServletRequest request,
[javac] ^
[javac] D:\Projetos\GerenciaURC\src\br\com\whitemartins\gerenciaurc\web\struts\action\HomeAction.java:49: cannot find symbol
[javac] symbol : class ActionForward
[javac] location: class br.com.whitemartins.gerenciaurc.web.struts.action.HomeAction
[javac] public ActionForward listarContatos(ActionMapping mapping, ActionForm form, HttpServletRequest request,
[javac] ^
[javac] D:\Projetos\GerenciaURC\src\br\com\whitemartins\gerenciaurc\web\struts\action\HomeAction.java:65: cannot find symbol
[javac] symbol : class ActionMapping
[javac] location: class br.com.whitemartins.gerenciaurc.web.struts.action.HomeAction
[javac] public ActionForward listarEmpresas(ActionMapping mapping, ActionForm form, HttpServletRequest request,
[javac] ^
[javac] D:\Projetos\GerenciaURC\src\br\com\whitemartins\gerenciaurc\web\struts\action\HomeAction.java:65: cannot find symbol
[javac] symbol : class ActionForm
[javac] location: class br.com.whitemartins.gerenciaurc.web.struts.action.HomeAction
[javac] public ActionForward listarEmpresas(ActionMapping mapping, ActionForm form, HttpServletRequest request,
[javac] ^
[javac] D:\Projetos\GerenciaURC\src\br\com\whitemartins\gerenciaurc\web\struts\action\HomeAction.java:65: cannot find symbol
[javac] symbol : class ActionForward
[javac] location: class br.com.whitemartins.gerenciaurc.web.struts.action.HomeAction
[javac] public ActionForward listarEmpresas(ActionMapping mapping, ActionForm form, HttpServletRequest request,
[javac] ^
[javac] D:\Projetos\GerenciaURC\src\br\com\whitemartins\gerenciaurc\web\struts\action\HomeAction.java:81: cannot find symbol
[javac] symbol : class ActionMapping
[javac] location: class br.com.whitemartins.gerenciaurc.web.struts.action.HomeAction
[javac] public ActionForward voltar(ActionMapping mapping, ActionForm form, HttpServletRequest request,
[javac] ^
[javac] D:\Projetos\GerenciaURC\src\br\com\whitemartins\gerenciaurc\web\struts\action\HomeAction.java:81: cannot find symbol
[javac] symbol : class ActionForm
[javac] location: class br.com.whitemartins.gerenciaurc.web.struts.action.HomeAction
[javac] public ActionForward voltar(ActionMapping mapping, ActionForm form, HttpServletRequest request,
[javac] ^
[javac] D:\Projetos\GerenciaURC\src\br\com\whitemartins\gerenciaurc\web\struts\action\HomeAction.java:81: cannot find symbol
[javac] symbol : class ActionForward
[javac] location: class br.com.whitemartins.gerenciaurc.web.struts.action.HomeAction
[javac] public ActionForward voltar(ActionMapping mapping, ActionForm form, HttpServletRequest request,
[javac] ^
[javac] D:\Projetos\GerenciaURC\src\br\com\whitemartins\gerenciaurc\web\struts\action\LoginAction.java:11: package org.apache.struts.action does not exist
[javac] import org.apache.struts.action.ActionForm;
[javac] ^
[javac] D:\Projetos\GerenciaURC\src\br\com\whitemartins\gerenciaurc\web\struts\action\LoginAction.java:12: package org.apache.struts.action does not exist
[javac] import org.apache.struts.action.ActionForward;
[javac] ^
[javac] D:\Projetos\GerenciaURC\src\br\com\whitemartins\gerenciaurc\web\struts\action\LoginAction.java:13: package org.apache.struts.action does not exist
[javac] import org.apache.struts.action.ActionMapping;
[javac] ^
[javac] D:\Projetos\GerenciaURC\src\br\com\whitemartins\gerenciaurc\web\struts\action\LoginAction.java:14: package org.apache.struts.action does not exist
[javac] import org.apache.struts.action.ActionMessage;
[javac] ^
[javac] Note: Some input files use unchecked or unsafe operations.
[javac] Note: Recompile with -Xlint:unchecked for details.
[javac] 100 errors
BUILD FAILED
D:\Projetos\GerenciaURC\axis_bujava.xml:45: Compile failed; see the compiler error output for details.
JAVA_HOME: C:\Program Files\Java\jdk1.5.0_11
PATH: C:\Program Files\Java\jdk1.5.0_11\bin
CLASSPATH: .;JAVA_HOME
O que desejo fazer e gerar o EAR. :-o