Created
December 20, 2011 01:12
-
-
Save steppat/1499732 to your computer and use it in GitHub Desktop.
exemplo echo no build.xml
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<project name="compilar" default="empacotar" basedir="."> | |
<property name="build.dir" value="alguma pasta dentro do projeto" /> | |
<target name="init"> | |
<echo message="Initilzando a construção do projeto" /> | |
<echo message="${build.dir}"/> | |
</target> | |
<target name="compilar" depends="init"> | |
<echo message="compilando as classes" /> | |
</target> | |
<target name="empacotar" depends="compilar"> | |
<echo message="empacotando as classes" /> | |
</target> | |
<target name="limpar"> | |
<echo message="Limpando arquivos" /> | |
</target> | |
</project> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment