LoginSignup
5
5

More than 5 years have passed since last update.

Windows で tar を作成する [apache ant]

Posted at

普通に ant を実行するだけ

source->build.xml
<project name="ProjectName" basedir="." default="default">
    <target name="default">
        <tar basedir="src" destfile="dist/${ant.project.name}.tar" />
    </target>
</project>
5
5
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
5
5