1 Star 0 Fork 0

david / zkspreadsheet

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
build.xml 5.04 KB
一键复制 编辑 原始数据 按行查看 历史
<?xml version="1.0"?>
<!DOCTYPE project [
<!ENTITY properties SYSTEM "build.prop.xml">
<!ENTITY targets SYSTEM "build.target.xml">
]>
<!-- build.xml
Purpose:
The internal build file for ant.
Description:
It is invoked by the bash script, build, to do the proper
intialization.
This build file is used only internally. For SDK to build user's
projects, use another file
History:
March 29 15:11 2001, Created by henrichen
August 21 14:27 2002, Created by tomyeh
Copyright (C) 2002 Potix Corporation. All Rights Reserved.
-->
<project name="potix.inside" default="build" basedir=".">
<!-- ======= -->
<!-- INITIAL -->
<!-- ======= -->
&properties;
<!-- ====== -->
<!-- CONFIG -->
<!-- ====== -->
<target name="verbose" if="verbose.required">
<!-- show the current environment -->
<echo message="${project.name}: ${project.version}"/>
<echo message=""/>
<echo message="java.class.path = ${java.class.path}"/>
<echo message=""/>
<echo message="java.home = ${java.home}"/>
<echo message="out.dir = ${out.dir}"/>
<echo message="debug = ${debug}"/>
<echo message="optimize = ${optimize}"/>
</target>
<target name="config" depends="verbose">
<!--tstamp/-->
<available file="${src.mesg.dir}" property="src.mesg.dir.exist"/>
<available file="${bin.dir}/CVS" property="bin.CVS.dir.exist"/>
<available file="${bin.dir}/.svn" property="bin.svn.dir.exist"/>
<available file="${dist.lib.ext.dir}/CVS" property="lib.ext.CVS.dir.exist"/>
<available file="${dist.lib.ext.dir}/.svn" property="lib.ext.svn.dir.exist"/>
<available file="${src.archive.dir}/META-INF/${jad.name}" property="jad.exist"/>
<condition property="war.dir" value="WebContent">
<available file="WebContent" type="dir"/>
</condition>
<condition property="war.dir" value="${src.archive.dir}">
<not>
<available file="WebContent" type="dir"/>
</not>
</condition>
<!-- format -->
<condition property="build.ear.required">
<equals arg1="${format}" arg2="ear"/>
</condition>
<condition property="build.jad.required">
<and>
<equals arg1="${format}" arg2="jar"/>
<isset property="jad.exist"/>
</and>
</condition>
<condition property="build.jar.required">
<and>
<or>
<equals arg1="${format}" arg2="jar"/>
<equals arg1="${format}" arg2="jar2"/>
</or>
<not>
<isset property="jad.exist"/>
</not>
</and>
</condition>
<condition property="build.jar2.required">
<equals arg1="${format}" arg2="jar2"/>
</condition>
<condition property="build.war.required">
<equals arg1="${format}" arg2="war"/>
</condition>
<condition property="compile.required">
<or>
<or>
<equals arg1="${format}" arg2="jar"/>
<equals arg1="${format}" arg2="jar2"/>
</or>
<equals arg1="${format}" arg2="war"/>
</or>
</condition>
<condition property="gentime.required">
<not>
<equals arg1="${gentime}" arg2=""/>
</not>
</condition>
<!-- deploy -->
<condition property="deploy.lib.required">
<equals arg1="${deploy}" arg2="lib"/>
</condition>
<condition property="deploy.server.required">
<equals arg1="${deploy}" arg2="server"/>
</condition>
<!-- deploy jboss -->
<condition property="deploy.jboss.required">
<and>
<isset property="deploy.server.required"/>
<equals arg1="${format}" arg2="ear"/>
</and>
</condition>
<condition property="deploy.jboss.intact.required">
<and>
<isset property="deploy.jboss.required"/>
<not>
<isset property="deploy.unzip.list"/>
</not>
</and>
</condition>
<condition property="deploy.jboss.unzip.required">
<and>
<isset property="deploy.jboss.required"/>
<isset property="deploy.unzip.list"/>
</and>
</condition>
<!-- deploy tomcat -->
<available file="${tomcat.home}" property="tomcat.exist"/>
<condition property="deploy.tomcat.required">
<and>
<isset property="tomcat.exist"/>
<isset property="deploy.server.required"/>
<equals arg1="${format}" arg2="deploy"/>
</and>
</condition>
<condition property="deploy.tomcat.intact.required">
<and>
<isset property="deploy.tomcat.required"/>
<not>
<isset property="deploy.unzip.list"/>
</not>
</and>
</condition>
<condition property="deploy.tomcat.unzip.required">
<and>
<isset property="deploy.tomcat.required"/>
<isset property="deploy.unzip.list"/>
</and>
</condition>
<condition property="start.service.required">
<and>
<isset property="deploy.tomcat.required"/>
<not>
<equals arg1="${start.service}" arg2=""/>
</not>
</and>
</condition>
<!-- clean relevant -->
<condition property="clean.all.required">
<isset property="do.all"/>
</condition>
<!--
<condition property="clean.bin.required">
<and>
<isset property="do.all"/>
<not>
<or>
<isset property="bin.CVS.dir.exist"/>
<isset property="bin.svn.dir.exist"/>
</or>
</not>
</and>
</condition>
-->
</target>
<target name="config.build" depends="config">
<mkdir dir="${codegen.dir}"/>
</target>
<!-- ======= -->
<!-- TARGETS -->
<!-- ======= -->
&targets;
</project>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/svuc982cyj/zkspreadsheet.git
git@gitee.com:svuc982cyj/zkspreadsheet.git
svuc982cyj
zkspreadsheet
zkspreadsheet
master

搜索帮助

344bd9b3 5694891 D2dac590 5694891