Tbpgr Blog

Employee Experience Engineer tbpgr(てぃーびー) のブログ

2012-01-12から1日間の記事一覧

Antのインストール

Ant

■概要 Windows7環境へのAntのインストールについて説明します。■ダウンロード 下記URLより最新の安定版バイナリをダウンロードします。 ※2012/01/12現在でversion1.8.2 http://ant.apache.org/ ダウンロードファイルは apache-ant-1.8.2-bin.tar.gz■インスト…

Ant Buildサンプル

Ant

■概要 AntのBuildサンプルを紹介。■前提 配置ファイル build.xml Ant.java ファイル名を指定しないでantを実行する場合、デフォルトでbuild.xmlが実行される build.xml中身 <project name="antBuild" default="main"> <target name="main" depends="clear, compile, compress"> <echo>Building the .jar file</echo> </target> </project>