Ant

From Chorke Wiki
Revision as of 02:22, 26 February 2020 by Shahed (talk | contribs) (→‎Replace)
Jump to navigation Jump to search

Running Ant via Java If you have installed Ant in the do-it-yourself way, Ant can be started from one of two entry points:

java -Dant.home=c:\ant org.apache.tools.ant.Main [options] [target]
java -Dant.home=c:\ant org.apache.tools.ant.launch.Launcher [options] [target]

Checksum

<checksum file="${build.dir}/${jarname}.jar" algorithm="md5"  property="jarname.jar.md5" />
<checksum file="${build.dir}/${jarname}.jar" algorithm="sha1" property="jarname.jar.sha1"/>

<checksum file="${build.dir}/${jarname}.jar" algorithm="md5"  fileext="md5" />
<checksum file="${build.dir}/${jarname}.jar" algorithm="sha1" fileext="sha1"/>

DateTime

<tstamp>
    <format property="built.on" pattern="EEE, MMM dd yyyy, HH:mm Z" locale="en,GB"/>
</tstamp>

Filtering

<filter token="built.on" value="${built.on}"/>
    <copy todir="${target.vendor.antrun.dir}" filtering="true">
    <filelist dir="${ext.app.vendor.antrun.dir}">
        <file name="header.js"/>
    </filelist>
</copy>

Replace

<replace dir="${src}" value="[&quot;app.js&quot;,&quot;d41e83413e1a73b46c799124dadab883&quot;]">
  <include name="service-worker.js"/>
  <replacetoken><![CDATA["app.js","d41e83413e1a73b46c799124dadab883"]]></replacetoken>
</replace>

Replace RexExp

<replaceregexp match="\s+" replace=" " flags="g" byline="true">
    <fileset dir="${html.dir}" includes="**/*.html"/>
</replaceregexp>
<replaceregexp byline="true">
    <regexp pattern="app.js&quot;,&quot;(.*)"/>
    <substitution expression="app.js&quot;,&quot;d41e83413e1a73b46c799124dadab883"/>
    <fileset dir=".">
        <include name="service-worker.js"/>
    </fileset>
</replaceregexp>

References