ant 找不到符号

今天项目打包的时候。报出了很多XXX类找不到。检查了好久才发现。原来
<?xml version="1.0" encoding="UTF-8"?>
<project name="${product.name}" default="build-all" basedir="./">
<property name="workspace" location="../" />
<record name="build-all.log" />
<target name="build-all">

<!--  PATIENT  -->
<ant inheritall="false" dir="${workspace}/fc-common" />
<ant inheritall="false" dir="${workspace}/fc-framework-login" />
<ant inheritall="false" dir="${workspace}/fc-domain-patient" />
<ant inheritall="false" dir="${workspace}/fc-service-depend-patient" />
<ant inheritall="false" dir="${workspace}/fc-service-patient" />
<ant inheritall="false" dir="${workspace}/fc-controller-patient" />
<ant inheritall="false" dir="${workspace}/fc-service-common" />
<ant inheritall="false" dir="${workspace}/fc-web-common" />
<ant inheritall="false" dir="${workspace}/fc-web-patient" />

<!--  MESSAGE  -->
<ant inheritall="false" dir="${workspace}/fc-message-bussiness-parser" />
<ant inheritall="false" dir="${workspace}/fc-controller-message" />
<ant inheritall="false" dir="${workspace}/fc-web-message" />

<!--  CPOE  -->
<!-- <ant inheritall="false" dir="${workspace}/fc-domain-clinical" />-->
<!-- <ant inheritall="false" dir="${workspace}/fc-domain-cpoe-report" />-->
<!-- <ant inheritall="false" dir="${workspace}/fc-domain-cpoe-order" />-->
<!-- <ant inheritall="false" dir="${workspace}/fc-service-depend-cpoe" />-->
<!-- <ant inheritall="false" dir="${workspace}/fc-service-clinical" />-->
<!-- <ant inheritall="false" dir="${workspace}/fc-service-cpoe-order" />-->
<!-- <ant inheritall="false" dir="${workspace}/fc-service-cpoe-report" />-->

<!--  EIF  -->
<ant inheritall="false" dir="${workspace}/fc-domain-eif" />
<ant inheritall="false" dir="${workspace}/fc-service-eif" />
<ant inheritall="false" dir="${workspace}/fc-controller-eif" />
<ant inheritall="false" dir="${workspace}/fc-web-eif" />


<!--  SDE-SERVICE  -->
<ant inheritall="false" dir="${workspace}/fc-domain-sde-common" />
<ant inheritall="false" dir="${workspace}/fc-domain-sde-pic" />
<ant inheritall="false" dir="${workspace}/fc-domain-sde-template" />
<ant inheritall="false" dir="${workspace}/fc-domain-sde-editor" />
<ant inheritall="false" dir="${workspace}/fc-domain-sde-quality" />
<ant inheritall="false" dir="${workspace}/fc-service-sde-message" />
<ant inheritall="false" dir="${workspace}/fc-service-sde-depend" />
<ant inheritall="false" dir="${workspace}/fc-service-sde-common" />
<ant inheritall="false" dir="${workspace}/fc-service-sde-pic" />
<ant inheritall="false" dir="${workspace}/fc-service-sde-template" />
<ant inheritall="false" dir="${workspace}/fc-service-sde-editor" />
<ant inheritall="false" dir="${workspace}/fc-service-sde-quality" />


<!--  MRMS-SERVICE  -->
<ant inheritall="false" dir="${workspace}/fc-domain-mrms-common" />
<ant inheritall="false" dir="${workspace}/fc-domain-mrms-hp" />
<ant inheritall="false" dir="${workspace}/fc-service-mrms-depend" />
<ant inheritall="false" dir="${workspace}/fc-service-mrms-common" />
<ant inheritall="false" dir="${workspace}/fc-service-mrms-hp" />

<!--  PLUGIN  -->
<ant inheritall="false" dir="${workspace}/fc-service-sde-plugin-for-eif" />
<ant inheritall="false" dir="${workspace}/fc-service-sde-plugin-for-mrms" />
<ant inheritall="false" dir="${workspace}/fc-service-mrms-plugin-for-eif" />



<!--  COMPONENT  -->
<ant inheritall="false" dir="${workspace}/fc-component-clinicalchart" />
<ant inheritall="false" dir="${workspace}/fc-component-svgeditor" />
<ant inheritall="false" dir="${workspace}/fc-component-editor" />
<ant inheritall="false" dir="${workspace}/fc-component-clinicalrule" />
<ant inheritall="false" dir="${workspace}/fc-component-ruleeditor" />







<!--  SDE-WEB  -->
<ant inheritall="false" dir="${workspace}/fc-controller-sde-common" />
<ant inheritall="false" dir="${workspace}/fc-controller-sde-pic" />
<ant inheritall="false" dir="${workspace}/fc-controller-sde-template" />
<ant inheritall="false" dir="${workspace}/fc-controller-sde-editor" />
<ant inheritall="false" dir="${workspace}/fc-controller-sde-quality" />
<ant inheritall="false" dir="${workspace}/fc-web-sde-common" />
<ant inheritall="false" dir="${workspace}/fc-web-sde-message" />
<ant inheritall="false" dir="${workspace}/fc-web-sde-report" />
<ant inheritall="false" dir="${workspace}/fc-web-sde-pic" />
<ant inheritall="false" dir="${workspace}/fc-web-sde-template" />
<ant inheritall="false" dir="${workspace}/fc-web-sde-editor" />
<ant inheritall="false" dir="${workspace}/fc-web-sde-quality" />

<!--  MRMS-WEB  -->
<ant inheritall="false" dir="${workspace}/fc-controller-mrms-common" />
<ant inheritall="false" dir="${workspace}/fc-controller-mrms-hp" />
<ant inheritall="false" dir="${workspace}/fc-web-mrms-common" />
<ant inheritall="false" dir="${workspace}/fc-web-mrms-hp" />
<!--  INDEX  -->
<ant inheritall="false" dir="${workspace}/fc-web-site-doctor" />

</target>
</project>
配置顺序颠倒了 MRMS要用到SDE里面的jar包 却把SDE放到了它后面去编译了

猜你喜欢

转载自1358685234.iteye.com/blog/2087429
ANT
今日推荐