-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprojectTestFile.xml
25 lines (21 loc) · 1.11 KB
/
projectTestFile.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<project name="Encrypt a password" default="run" basedir=".">
<description>
This build was created to test the trust cert ant task
</description>
<taskdef resource="net/sf/antcontrib/antlib.xml"/>
<taskdef name="trustcertificate" classname="com.omo.free.trustcert.TrustCertTask" />
<!-- =================================================================== -->
<!-- Initialize the Properties -->
<!-- =================================================================== -->
<target name="init" description="initialize properties for build">
<echo>Initializing properties here...</echo>
<tstamp />
<property environment="env"/>
<!-- <echoproperties/> -->
</target>
<target name="run" depends="init" description="initialize properties for build">
<echo>Testing the password encryptor...</echo>
<trustcertificate secureUrl="https://isuwsphere2svr.isu.net" keystoreDir="./test" verbose="true" failonerror="true"/>
<get src="https://isuwsphere2svr.isu.net/doc/PuppiesForParolePublic/monitor.html" dest="." verbose="true" usetimestamp="true"/>
</target>
</project>