GWTP ant build.xml-没有处理器声明任何这些注释

GWTP ant build.xml-没有处理器声明任何这些注释,gwt,ant,javac,gwt-platform,gwtp,Gwt,Ant,Javac,Gwt Platform,Gwtp,我正在尝试为移动、桌面和平板电脑的GWTP+MGWT项目编写build.xml <property name="in.src.folder" location="src" /> <property name="apt_generated" location=".apt_generated" /> <property name="out.classes.folder" location="war/WEB-INF/classes" /> <property

我正在尝试为移动、桌面和平板电脑的GWTP+MGWT项目编写build.xml

<property name="in.src.folder" location="src" />
<property name="apt_generated" location=".apt_generated" />
<property name="out.classes.folder" location="war/WEB-INF/classes" />
<property name="warlib.folder" location="war/WEB-INF/lib" />

<target name="javac" depends="cleanwar,libs" description="Compile java source to bytecode">
        <mkdir dir="war/WEB-INF/classes" />

        <javac srcdir="${apt_generated}" destdir="${out.classes.folder}" includeantruntime="true" source="1.6" target="1.6" nowarn="false" debug="true" debuglevel="lines,vars,source" >
            <classpath refid="project.class.path" />
             <compilerarg value="-Xlint"/>
        </javac>
        <javac srcdir="${in.src.folder}" includes="**" encoding="utf-8" destdir="${out.classes.folder}" source="1.6" target="1.6" nowarn="false" debug="true" debuglevel="lines,vars,source" includeantruntime="true">
            <classpath refid="project.class.path" />
             <compilerarg value="-Xlint"/>
        </javac>    
        <copy todir="${out.classes.folder}">
            <fileset dir="${in.src.folder}" includes="**/*.class" />
        </copy>
        <delete dir="${in.src.folder}" includes="**/*.class" failonerror="false" />
</target>

该应用程序在开发模式下运行良好,到目前为止,我可以将其构建到javac目标,但我看到了这些警告-

没有处理者声明任何这些批注:

com.gwtplatform.mvp.client.annotations.RequestTabs、com.gwtplatform.mvp.client.annotations.NameToken、com.gwtplatform.mvp.client.annotations.ChangeTab、com.google.gwt.safehtml.client.SafeHtmlTemplates.Template、com.google.inject.inject、com.gwtplatflatform.mvp.client.annotations.TabInfo、com.gwtplatfplatform.client.annotations.ProxyCodeSplit、,com.gwtplatform.mvp.client.annotations.ContentSlot、com.google.inject.BindingAnnotation、com.google.gwt.uibinder.client.UiHandler、com.google.gwt.user.client.rpc.RemoteServiceRelativePath、com.google.gwt.inject.client.GinModules、com.gwtplatform.mvp.annotations.proxyent、com.gwtplatflatform.mvp.mvp.client.UseGatekeeper、,com.synopsys.iims.fe.client.place.DefaultPlace、com.google.gwt.uibinder.client.UiField、com.gwtplatform.mvp.client.annotations.proxysstandard


如何解决这些问题?我相信这些可能会导致gwtc目标出现问题。

这些注释没有处理器(它们由GWT生成器处理),因此您可以安全地忽略警告