-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.xml
executable file
·39 lines (33 loc) · 1.31 KB
/
build.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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<?xml version="1.0" encoding="UTF-8"?>
<!-- ======================================================================
5/03/2014 14:07:12
payu-php-sdk release builder
this project build a version of PAYU PHP SDK
====================================================================== -->
<project name="payu-php-sdk" default="build">
<description>
Build a version of payu php SDK
</description>
<property file="build.properties"/>
<!-- =================================
target: default
================================= -->
<target name="build" depends="getFileName" description="description">
<zip destfile="${release.folder}/${release.name}-${sdk-build-date}.${release.extension}"
basedir="./"
encoding="UTF-8"
update="true"
excludes="lib/test/**, .buildpath, .project,
php_unit.xml,**/.settings/**,build.*,
README.txt"
/>
</target>
<!-- - - - - - - - - - - - - - - - - -
target: depends
- - - - - - - - - - - - - - - - - -->
<target name="getFileName" >
<tstamp>
<format property="sdk-build-date" timezone="GMT-5" pattern="dd-MM-yyyy"/>
</tstamp>
</target>
</project>