Created
December 15, 2010 14:59
-
-
Save nfabre/742039 to your computer and use it in GitHub Desktop.
build.xml
This file contains 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" ?> | |
<project name="test" basedir="." default="work"> | |
<!-- rattachement de la tache a une balise --> | |
<taskdef name="vmwareUserCreate" | |
classname="phing.tasks.custom.vmware.user.CreateTask" /> | |
<target name="work"> | |
<vmwareUserCreate username="nfa" | |
password="pwd" | |
description="my delegated admin auto-agent software" | |
/> | |
</target> | |
</project> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment