`
caizi12
  • 浏览: 178706 次
  • 性别: Icon_minigender_1
  • 来自: 北京
社区版块
存档分类
最新评论

ant 编译 build.xml

    博客分类:
  • XML
阅读更多
引用
<?xml version="1.0" encoding="UTF-8"?>
<project name="crm_ANT" default="Main Build" basedir=".">
<property name="project.src" location="." />

<!-- 定义所有构建模块路径-->
<property name="crm.bloc" location="com.cdb.crm.bloc" />
<property name="crm.bpm" location="com.cdb.crm.bpm" />
<property name="crm.branchbiz" location="com.cdb.crm.branchbiz" />
<property name="crm.crmcommon" location="com.cdb.crm.crmcommon" />
<property name="crm.cust" location="com.cdb.crm.cust" />

<property name="crm.custmng" location="com.cdb.crm.custmng" />
<property name="crm.custrelation" location="com.cdb.crm.custrelation" />
<property name="crm.custservice" location="com.cdb.crm.custservice" />
<property name="crm.custvalue" location="com.cdb.crm.custvalue" />
<property name="crm.event" location="com.cdb.crm.event" />

<property name="crm.perform" location="com.cdb.crm.perform" />
<property name="crm.portal" location="com.cdb.crm.portal" />
<property name="crm.product" location="com.cdb.crm.product" />
<property name="crm.sale" location="com.cdb.crm.sale" />
<property name="crm.statis" location="com.cdb.crm.statis" />

<property name="crm.support" location="com.cdb.crm.support" />
<property name="crm.tempfolder" location="com.cdb.crm.tempfolder" />
<property name="crm.workmng" location="com.cdb.crm.workmng" />
<property name="uaap.auth" location="com.cdb.use.uaap.auth" />
<property name="uaap.integration" location="com.cdb.use.uaap.integration" />

<property name="uaap.org" location="com.cdb.use.uaap.org" />
<property name="uaap.rights" location="com.cdb.use.uaap.rights" />
<property name="uaap.tools" location="com.cdb.use.uaap.tools" />
<property name="use.util" location="com.cdb.use.util" />

<!-- Classpath -->
<property name="webcontent.dir" value="eos-web" />
<property name="webcontentlib.dir" value="${webcontent.dir}/WEB-INF/lib" />
<path id="master-classpath">
<fileset dir="${webcontentlib.dir}">
<include name="**/*.jar" />
</fileset>
<pathelement path="." />
</path>

<!--编译入口-->
<target name="Main Build" depends="compiler">
<echo message="编译完成!" />
</target>

<target name="compiler">
<ant antfile="build.xml" target="del_src_class" />
<ant antfile="build.xml" target="compile_java" />

<ant antfile="build.xml" target="copy_crm_bloc" />
<ant antfile="build.xml" target="copy_crm_bpm" />
<ant antfile="build.xml" target="copy_crm_branchbiz" />
<ant antfile="build.xml" target="copy_crm_crmcommon" />
<ant antfile="build.xml" target="copy_crm_cust" />

<ant antfile="build.xml" target="copy_crm_custmng" />
<ant antfile="build.xml" target="copy_crm_custrelation" />
<ant antfile="build.xml" target="copy_crm_custservice" />
<ant antfile="build.xml" target="copy_crm_custvalue" />
<ant antfile="build.xml" target="copy_crm_event" />

<ant antfile="build.xml" target="copy_crm_perform" />
<ant antfile="build.xml" target="copy_crm_portal" />
<ant antfile="build.xml" target="copy_crm_product" />
<ant antfile="build.xml" target="copy_crm_sale" />
<ant antfile="build.xml" target="copy_crm_statis" />

<ant antfile="build.xml" target="copy_crm_support" />
<ant antfile="build.xml" target="copy_crm_tempfolder" />
<ant antfile="build.xml" target="copy_crm_workmng" />
<ant antfile="build.xml" target="copy_uaap_auth" />
<ant antfile="build.xml" target="copy_uaap_integration" />

<ant antfile="build.xml" target="copy_uaap_org" />
<ant antfile="build.xml" target="copy_uaap_rights" />
<ant antfile="build.xml" target="copy_uaap_tools" />
<ant antfile="build.xml" target="copy_use_util" />

</target>

<target name="del_src_class">
<echo message="删除所有模块下src目录中的class文件......" />
<delete includeEmptyDirs="true" failonerror="false" verbose="true">
<fileset dir="." includes="com.cdb*/src/**/*.class" />
</delete>
</target>

<target name="compile_java">
<echo message="开始编译所有模块下的java文件......" />
<javac debug="on" srcdir="${project.src}" encoding="gbk">
<include name="com.cdb**/**/**.java" />
<classpath refid="master-classpath" />
</javac>
<echo message="编译java文件结束......" />
</target>

<target name="del_module_bin">
<echo message="删除${module.name}目录下的bin目录..." />
<delete includeEmptyDirs="true" dir="${module.bin}" failonerror="false" verbose="true">
</delete>
</target>

<target name="copy_module_file">
<echo message="正在拷贝文件到${module.bin}中..." />
<copy toDir="${module.bin}" overwrite="true">
<fileset dir="${module.src}">
<include name="**/*" />
<exclude name="**/*.java" />
<exclude name="**/CVS/**" />
<exclude name="**/*.flowx" />
<exclude name="**/*.bizx" />
</fileset>
</copy>
</target>

<target name="copy_bizx">
<echo message="正在拷贝bizx文件到${module.bin}中..." />
<copy toDir="${module.bin}" overwrite="true">
<fileset dir="${module.src}">
</fileset>
<mapper type="glob" from="*.bizx" to="*.biz" />
</copy>
</target>

<target name="copy_flowx">
<echo message="正在拷贝flowx文件到${module.bin}中..." />
<copy toDir="${module.bin}" overwrite="true">
<fileset dir="${module.src}">
</fileset>
<mapper type="glob" from="*.flowx" to="*.flow" />
</copy>
</target>


<target name="print_copy_message">
<echo message="准备执行拷贝文件到${module.name}/bin中..." />
</target>

<target name="copy_all_action">
<property name="module.src" value="${module.name}/src" />
<property name="module.bin" value="${module.name}/bin" />

<antcall target="print_copy_message" />
<antcall target="del_module_bin" />
<antcall target="copy_module_file" />
<antcall target="copy_bizx" />
<antcall target="copy_flowx" />
</target>

<target name="copy_crm_bloc">
<property name="module.name" value="${crm.bloc}" />
<antcall target="copy_all_action" />
</target>

<target name="copy_crm_bpm">
<property name="module.name" value="${crm.bpm}" />
<antcall target="copy_all_action" />
</target>

<target name="copy_crm_branchbiz">
<property name="module.name" value="${crm.branchbiz}" />
<antcall target="copy_all_action" />
</target>

<target name="copy_crm_crmcommon">
<property name="module.name" value="${crm.crmcommon}" />
<antcall target="copy_all_action" />
</target>

<target name="copy_crm_cust">
<property name="module.name" value="${crm.cust}" />
<antcall target="copy_all_action" />
</target>

<target name="copy_crm_custmng">
<property name="module.name" value="${crm.custmng}" />
<antcall target="copy_all_action" />
</target>

<target name="copy_crm_custrelation">
<property name="module.name" value="${crm.custrelation}" />
<antcall target="copy_all_action" />
</target>

<target name="copy_crm_custservice">
<property name="module.name" value="${crm.custservice}" />
<antcall target="copy_all_action" />
</target>

<target name="copy_crm_custvalue">
<property name="module.name" value="${crm.custvalue}" />
<antcall target="copy_all_action" />
</target>

<target name="copy_crm_event">
<property name="module.name" value="${crm.event}" />
<antcall target="copy_all_action" />
</target>

<target name="copy_crm_perform">
<property name="module.name" value="${crm.perform}" />
<antcall target="copy_all_action" />
</target>

<target name="copy_crm_portal">
<property name="module.name" value="${crm.portal}" />
<antcall target="copy_all_action" />
</target>

<target name="copy_crm_product">
<property name="module.name" value="${crm.product}" />
<antcall target="copy_all_action" />
</target>

<target name="copy_crm_sale">
<property name="module.name" value="${crm.sale}" />
<antcall target="copy_all_action" />
</target>

<target name="copy_crm_statis">
<property name="module.name" value="${crm.statis}" />
<antcall target="copy_all_action" />
</target>

<target name="copy_crm_support">
<property name="module.name" value="${crm.support}" />
<antcall target="copy_all_action" />
</target>

<target name="copy_crm_tempfolder">
<property name="module.name" value="${crm.tempfolder}" />
<antcall target="copy_all_action" />
</target>

<target name="copy_crm_workmng">
<property name="module.name" value="${crm.workmng}" />
<antcall target="copy_all_action" />
</target>

<target name="copy_uaap_auth">
<property name="module.name" value="${uaap.auth}" />
<antcall target="copy_all_action" />
</target>

<target name="copy_uaap_integration">
<property name="module.name" value="${uaap.integration}" />
<antcall target="copy_all_action" />
</target>

<target name="copy_uaap_org">
<property name="module.name" value="${uaap.org}" />
<antcall target="copy_all_action" />
</target>

<target name="copy_uaap_rights">
<property name="module.name" value="${uaap.rights}" />
<antcall target="copy_all_action" />
</target>

<target name="copy_uaap_tools">
<property name="module.name" value="${uaap.tools}" />
<antcall target="copy_all_action" />
</target>

<target name="copy_use_util">
<property name="module.name" value="${use.util}" />
<antcall target="copy_all_action" />
</target>


<target name="copyAction">
<delete includeEmptyDirs="true" failonerror="false" verbose="true">
<fileset dir="." includes="com.cdb*/bin/**" />
</delete>
</target>
<target name="del_bin">
<delete includeEmptyDirs="true" failonerror="false" verbose="true">
<fileset dir="." includes="com.cdb*/bin/**" />
</delete>
</target>



</project>




分享到:
评论

相关推荐

    《基于YOLOv8的八段锦练习指导系统》(包含源码、完整数据集、可视化界面、部署教程)简单部署即可运行。功能完善、操作简单,适合毕设或课程设计.zip

    资源内项目源码是来自个人的毕业设计,代码都测试ok,包含源码、数据集、可视化页面和部署说明,可产生核心指标曲线图、混淆矩阵、F1分数曲线、精确率-召回率曲线、验证集预测结果、标签分布图。都是运行成功后才上传资源,毕设答辩评审绝对信服的保底85分以上,放心下载使用,拿来就能用。包含源码、数据集、可视化页面和部署说明一站式服务,拿来就能用的绝对好资源!!! 项目备注 1、该资源内项目代码都经过测试运行成功,功能ok的情况下才上传的,请放心下载使用! 2、本项目适合计算机相关专业(如计科、人工智能、通信工程、自动化、电子信息等)的在校学生、老师或者企业员工下载学习,也适合小白学习进阶,当然也可作为毕设项目、课程设计、大作业、项目初期立项演示等。 3、如果基础还行,也可在此代码基础上进行修改,以实现其他功能,也可用于毕设、课设、作业等。 下载后请首先打开README.txt文件,仅供学习参考, 切勿用于商业用途。

    大语言模型教育应用中的知识冲突挑战与应对策略

    内容概要:本文详细探讨了大语言模型(LLMs)在教育应用中遇到的知识冲突问题,包括概念定义、事实陈述和逻辑推理层面的认知不一致性。文章分析了知识冲突的技术成因,如训练数据噪声、参数化知识表示的局限、推理机制的缺陷、模型架构的不足及外部知识的偏差,并探讨了这些因素对教育应用的深远影响。文中提出了多维度的解决路径,如通过数据增强优化知识表示、利用提示强化上下文连贯、开发量规完善模型评估等。此外,文章从社会文化的宏观视角剖析了知识冲突的外部驱动因素,探讨如何在多元异质、动态演进的社会建构语境中构建开放进取、兼容融通的智能教育应用体系。 适合人群:从事教育技术研究的学者、教育工作者、人工智能研究人员和技术开发者。 使用场景及目标:①帮助教育工作者理解大语言模型在教育应用中的局限性;②为技术人员提供优化大语言模型教育应用的具体策略;③促进教育人工智能技术的可靠性、适应性和普及性提升。 其他说明:文章强调了知识冲突的有效化解不仅能够提升大语言模型在教育场景中的应用价值,还将为人工智能在更广泛领域的可持续发展奠定坚实基础。

    《基于YOLOv8的家具鉴定系统》(包含源码、完整数据集、可视化界面、部署教程)简单部署即可运行。功能完善、操作简单,适合毕设或课程设计.zip

    资源内项目源码是来自个人的毕业设计,代码都测试ok,包含源码、数据集、可视化页面和部署说明,可产生核心指标曲线图、混淆矩阵、F1分数曲线、精确率-召回率曲线、验证集预测结果、标签分布图。都是运行成功后才上传资源,毕设答辩评审绝对信服的保底85分以上,放心下载使用,拿来就能用。包含源码、数据集、可视化页面和部署说明一站式服务,拿来就能用的绝对好资源!!! 项目备注 1、该资源内项目代码都经过测试运行成功,功能ok的情况下才上传的,请放心下载使用! 2、本项目适合计算机相关专业(如计科、人工智能、通信工程、自动化、电子信息等)的在校学生、老师或者企业员工下载学习,也适合小白学习进阶,当然也可作为毕设项目、课程设计、大作业、项目初期立项演示等。 3、如果基础还行,也可在此代码基础上进行修改,以实现其他功能,也可用于毕设、课设、作业等。 下载后请首先打开README.txt文件,仅供学习参考, 切勿用于商业用途。

    数据结构day1-思维导图顺序表

    数据结构day1-思维导图顺序表

    STM32超声波红外避障小车

    STM32超声波红外避障小车项目通过STM32微控制器实现自动避障功能。硬件部分主要包括STM32开发板、超声波传感器、红外传感器、直流电机、电池模块和电机驱动模块。超声波传感器用于测量前方障碍物的距离,红外传感器帮助小车检测地面线路或障碍物。电机驱动模块通过STM32控制直流电机的转动,从而实现小车的前进、后退和转向。 在软件方面,STM32通过编写简单的避障算法,实时读取传感器数据,并根据环境信息控制小车的运动。当超声波传感器检测到障碍物时,系统会触发后退或转向操作,避免碰撞。

    哈尔滨工业大学DeepSeek公开课-从图灵测试到DeepSeek.pdf

    哈尔滨工业大学DeepSeek公开课-从图灵测试到DeepSeek.pdf

    《基于YOLOv8的冰上运动监测系统》(包含源码、完整数据集、可视化界面、部署教程)简单部署即可运行。功能完善、操作简单,适合毕设或课程设计.zip

    资源内项目源码是来自个人的毕业设计,代码都测试ok,包含源码、数据集、可视化页面和部署说明,可产生核心指标曲线图、混淆矩阵、F1分数曲线、精确率-召回率曲线、验证集预测结果、标签分布图。都是运行成功后才上传资源,毕设答辩评审绝对信服的保底85分以上,放心下载使用,拿来就能用。包含源码、数据集、可视化页面和部署说明一站式服务,拿来就能用的绝对好资源!!! 项目备注 1、该资源内项目代码都经过测试运行成功,功能ok的情况下才上传的,请放心下载使用! 2、本项目适合计算机相关专业(如计科、人工智能、通信工程、自动化、电子信息等)的在校学生、老师或者企业员工下载学习,也适合小白学习进阶,当然也可作为毕设项目、课程设计、大作业、项目初期立项演示等。 3、如果基础还行,也可在此代码基础上进行修改,以实现其他功能,也可用于毕设、课设、作业等。 下载后请首先打开README.txt文件,仅供学习参考, 切勿用于商业用途。

    《基于YOLOv8的体育产业监测系统》(包含源码、完整数据集、可视化界面、部署教程)简单部署即可运行。功能完善、操作简单,适合毕设或课程设计.zip

    资源内项目源码是来自个人的毕业设计,代码都测试ok,包含源码、数据集、可视化页面和部署说明,可产生核心指标曲线图、混淆矩阵、F1分数曲线、精确率-召回率曲线、验证集预测结果、标签分布图。都是运行成功后才上传资源,毕设答辩评审绝对信服的保底85分以上,放心下载使用,拿来就能用。包含源码、数据集、可视化页面和部署说明一站式服务,拿来就能用的绝对好资源!!! 项目备注 1、该资源内项目代码都经过测试运行成功,功能ok的情况下才上传的,请放心下载使用! 2、本项目适合计算机相关专业(如计科、人工智能、通信工程、自动化、电子信息等)的在校学生、老师或者企业员工下载学习,也适合小白学习进阶,当然也可作为毕设项目、课程设计、大作业、项目初期立项演示等。 3、如果基础还行,也可在此代码基础上进行修改,以实现其他功能,也可用于毕设、课设、作业等。 下载后请首先打开README.txt文件,仅供学习参考, 切勿用于商业用途。

    《基于YOLOv8的港口机械识别系统》(包含源码、完整数据集、可视化界面、部署教程)简单部署即可运行。功能完善、操作简单,适合毕设或课程设计.zip

    资源内项目源码是来自个人的毕业设计,代码都测试ok,包含源码、数据集、可视化页面和部署说明,可产生核心指标曲线图、混淆矩阵、F1分数曲线、精确率-召回率曲线、验证集预测结果、标签分布图。都是运行成功后才上传资源,毕设答辩评审绝对信服的保底85分以上,放心下载使用,拿来就能用。包含源码、数据集、可视化页面和部署说明一站式服务,拿来就能用的绝对好资源!!! 项目备注 1、该资源内项目代码都经过测试运行成功,功能ok的情况下才上传的,请放心下载使用! 2、本项目适合计算机相关专业(如计科、人工智能、通信工程、自动化、电子信息等)的在校学生、老师或者企业员工下载学习,也适合小白学习进阶,当然也可作为毕设项目、课程设计、大作业、项目初期立项演示等。 3、如果基础还行,也可在此代码基础上进行修改,以实现其他功能,也可用于毕设、课设、作业等。 下载后请首先打开README.txt文件,仅供学习参考, 切勿用于商业用途。

    oooooomy_vchat_1742859071.zip

    app开发

    《基于YOLOv8的3D打印缺陷检测系统》(包含源码、完整数据集、可视化界面、部署教程)简单部署即可运行。功能完善、操作简单,适合毕设或课程设计.zip

    资源内项目源码是来自个人的毕业设计,代码都测试ok,包含源码、数据集、可视化页面和部署说明,可产生核心指标曲线图、混淆矩阵、F1分数曲线、精确率-召回率曲线、验证集预测结果、标签分布图。都是运行成功后才上传资源,毕设答辩评审绝对信服的保底85分以上,放心下载使用,拿来就能用。包含源码、数据集、可视化页面和部署说明一站式服务,拿来就能用的绝对好资源!!! 项目备注 1、该资源内项目代码都经过测试运行成功,功能ok的情况下才上传的,请放心下载使用! 2、本项目适合计算机相关专业(如计科、人工智能、通信工程、自动化、电子信息等)的在校学生、老师或者企业员工下载学习,也适合小白学习进阶,当然也可作为毕设项目、课程设计、大作业、项目初期立项演示等。 3、如果基础还行,也可在此代码基础上进行修改,以实现其他功能,也可用于毕设、课设、作业等。 下载后请首先打开README.txt文件,仅供学习参考, 切勿用于商业用途。

    Screenshot_2025-03-31-19-36-01-657_com.UCMobile.jpg

    Screenshot_2025-03-31-19-36-01-657_com.UCMobile.jpg

    半导体过程控制篇 集成电路的可靠性仿真_03_31_153111.docx

    半导体过程控制篇 集成电路的可靠性仿真_03_31_153111.docx

    社交应用_鸿蒙OS_API12_高仿微信APP_开发示例_1742847098.zip

    社交应用_鸿蒙OS_API12_高仿微信APP_开发示例_1742847098.zip

    《基于YOLOv8的民间体育监测系统》(包含源码、完整数据集、可视化界面、部署教程)简单部署即可运行。功能完善、操作简单,适合毕设或课程设计.zip

    资源内项目源码是来自个人的毕业设计,代码都测试ok,包含源码、数据集、可视化页面和部署说明,可产生核心指标曲线图、混淆矩阵、F1分数曲线、精确率-召回率曲线、验证集预测结果、标签分布图。都是运行成功后才上传资源,毕设答辩评审绝对信服的保底85分以上,放心下载使用,拿来就能用。包含源码、数据集、可视化页面和部署说明一站式服务,拿来就能用的绝对好资源!!! 项目备注 1、该资源内项目代码都经过测试运行成功,功能ok的情况下才上传的,请放心下载使用! 2、本项目适合计算机相关专业(如计科、人工智能、通信工程、自动化、电子信息等)的在校学生、老师或者企业员工下载学习,也适合小白学习进阶,当然也可作为毕设项目、课程设计、大作业、项目初期立项演示等。 3、如果基础还行,也可在此代码基础上进行修改,以实现其他功能,也可用于毕设、课设、作业等。 下载后请首先打开README.txt文件,仅供学习参考, 切勿用于商业用途。

    安卓_热更新_简化编译_HTHotFix框架_1742849446.zip

    app开发

    2024 最新版智慧消防全流程解决方案(含 BIM+IoT 技术应用 + 典型案例分析)

    2024 最新版智慧消防全流程解决方案(含 BIM+IoT 技术应用 + 典型案例分析)

    电商_微信小程序_学习项目_电商功能演示_1742849441.zip

    电商_微信小程序_学习项目_电商功能演示_1742849441.zip

    jiguang.zip

    jiguang.zip

    《基于YOLOv8的画作真伪鉴别系统》(包含源码、完整数据集、可视化界面、部署教程)简单部署即可运行。功能完善、操作简单,适合毕设或课程设计.zip

    资源内项目源码是来自个人的毕业设计,代码都测试ok,包含源码、数据集、可视化页面和部署说明,可产生核心指标曲线图、混淆矩阵、F1分数曲线、精确率-召回率曲线、验证集预测结果、标签分布图。都是运行成功后才上传资源,毕设答辩评审绝对信服的保底85分以上,放心下载使用,拿来就能用。包含源码、数据集、可视化页面和部署说明一站式服务,拿来就能用的绝对好资源!!! 项目备注 1、该资源内项目代码都经过测试运行成功,功能ok的情况下才上传的,请放心下载使用! 2、本项目适合计算机相关专业(如计科、人工智能、通信工程、自动化、电子信息等)的在校学生、老师或者企业员工下载学习,也适合小白学习进阶,当然也可作为毕设项目、课程设计、大作业、项目初期立项演示等。 3、如果基础还行,也可在此代码基础上进行修改,以实现其他功能,也可用于毕设、课设、作业等。 下载后请首先打开README.txt文件,仅供学习参考, 切勿用于商业用途。

Global site tag (gtag.js) - Google Analytics