%PDF- %PDF-
Direktori : /data/www_bck/varak.net_bck/wiki.varak.net/vendor/phpunit/phpunit/ |
Current File : //data/www_bck/varak.net_bck/wiki.varak.net/vendor/phpunit/phpunit/build.xml |
<?xml version="1.0" encoding="UTF-8"?> <project name="phpunit" default="setup"> <target name="setup" depends="clean,composer"/> <target name="clean" description="Cleanup build artifacts"> <delete dir="${basedir}/bin"/> <delete dir="${basedir}/vendor"/> <delete file="${basedir}/composer.lock"/> <delete dir="${basedir}/build/phar"/> <delete> <fileset dir="${basedir}/build"> <include name="**/*.phar" /> <include name="**/*.phar.asc" /> </fileset> </delete> </target> <target name="composer" description="Install dependencies with Composer"> <tstamp> <format property="thirty.days.ago" pattern="MM/dd/yyyy hh:mm aa" offset="-30" unit="day"/> </tstamp> <delete> <fileset dir="${basedir}"> <include name="composer.phar" /> <date datetime="${thirty.days.ago}" when="before"/> </fileset> </delete> <get src="https://getcomposer.org/composer.phar" dest="${basedir}/composer.phar" skipexisting="true"/> <exec executable="php"> <arg value="composer.phar"/> <arg value="install"/> </exec> </target> <target name="signed-phar" description="Create signed PHAR archive of PHPUnit and all its dependencies (release)" depends="phar"> <exec executable="bash" outputproperty="version"> <arg value="-c" /> <arg value="${basedir}/phpunit --version | awk 'BEGIN { ORS = ""; } {print $2}'" /> </exec> <exec executable="gpg" failonerror="true"> <arg value="--armor" /> <arg value="--detach-sign" /> <arg path="${basedir}/build/phpunit-library-${version}.phar" /> </exec> <exec executable="gpg" failonerror="true"> <arg value="--armor" /> <arg value="--detach-sign" /> <arg path="${basedir}/build/phpunit-${version}.phar" /> </exec> </target> <target name="phar" description="Create PHAR archive of PHPUnit and all its dependencies (release)" depends="phar-prepare"> <exec executable="bash" outputproperty="version"> <arg value="-c" /> <arg value="${basedir}/phpunit --version | awk 'BEGIN { ORS = ""; } {print $2}'" /> </exec> <antcall target="phar-build"> <param name="version" value="${version}"/> </antcall> </target> <target name="phar-alpha" description="Create PHAR archive of PHPUnit and all its dependencies (alpha)" depends="phar-prepare"> <antcall target="phar-build"> <param name="version" value="alpha"/> </antcall> </target> <target name="phar-beta" description="Create PHAR archive of PHPUnit and all its dependencies (beta)" depends="phar-prepare"> <antcall target="phar-build"> <param name="version" value="beta"/> </antcall> </target> <target name="phar-prepare" depends="clean,composer"> <mkdir dir="${basedir}/build/phar"/> <copy file="${basedir}/composer.json" tofile="${basedir}/composer.json.bak"/> <exec executable="php"> <arg value="composer.phar"/> <arg value="require"/> <arg value="phpunit/dbunit:~1.4"/> <arg value="phpunit/phpunit-selenium:~1.4"/> <arg value="phpunit/php-invoker:~1.1"/> </exec> <move file="${basedir}/composer.json.bak" tofile="${basedir}/composer.json"/> <exec executable="${basedir}/build/phar-manifest.php" output="${basedir}/build/phar/manifest.txt"/> <copy todir="${basedir}/build/phar" file="${basedir}/build/ca.pem" /> <copy file="${basedir}/vendor/phpunit/php-code-coverage/LICENSE" tofile="${basedir}/build/phar/php-code-coverage/LICENSE"/> <copy todir="${basedir}/build/phar/php-code-coverage"> <fileset dir="${basedir}/vendor/phpunit/php-code-coverage/src"> <include name="**/*" /> </fileset> </copy> <copy file="${basedir}/vendor/phpunit/php-file-iterator/LICENSE" tofile="${basedir}/build/phar/php-file-iterator/LICENSE"/> <copy todir="${basedir}/build/phar/php-file-iterator"> <fileset dir="${basedir}/vendor/phpunit/php-file-iterator/src"> <include name="**/*.php" /> </fileset> </copy> <copy file="${basedir}/vendor/phpunit/php-text-template/LICENSE" tofile="${basedir}/build/phar/php-text-template/LICENSE"/> <copy todir="${basedir}/build/phar/php-text-template"> <fileset dir="${basedir}/vendor/phpunit/php-text-template/src"> <include name="**/*.php" /> </fileset> </copy> <copy file="${basedir}/vendor/phpunit/php-timer/LICENSE" tofile="${basedir}/build/phar/php-timer/LICENSE"/> <copy todir="${basedir}/build/phar/php-timer"> <fileset dir="${basedir}/vendor/phpunit/php-timer/src"> <include name="**/*.php" /> </fileset> </copy> <copy file="${basedir}/vendor/phpunit/php-token-stream/LICENSE" tofile="${basedir}/build/phar/php-token-stream/LICENSE"/> <copy todir="${basedir}/build/phar/php-token-stream"> <fileset dir="${basedir}/vendor/phpunit/php-token-stream/src"> <include name="**/*.php" /> </fileset> </copy> <copy file="${basedir}/vendor/phpunit/phpunit-mock-objects/LICENSE" tofile="${basedir}/build/phar/phpunit-mock-objects/LICENSE"/> <copy todir="${basedir}/build/phar/phpunit-mock-objects"> <fileset dir="${basedir}/vendor/phpunit/phpunit-mock-objects/src"> <include name="**/*" /> </fileset> </copy> <copy file="${basedir}/vendor/sebastian/comparator/LICENSE" tofile="${basedir}/build/phar/sebastian-comparator/LICENSE"/> <copy todir="${basedir}/build/phar/sebastian-comparator"> <fileset dir="${basedir}/vendor/sebastian/comparator/src"> <include name="**/*.php" /> </fileset> </copy> <copy file="${basedir}/vendor/sebastian/diff/LICENSE" tofile="${basedir}/build/phar/sebastian-diff/LICENSE"/> <copy todir="${basedir}/build/phar/sebastian-diff"> <fileset dir="${basedir}/vendor/sebastian/diff/src"> <include name="**/*.php" /> </fileset> </copy> <copy file="${basedir}/vendor/sebastian/environment/LICENSE" tofile="${basedir}/build/phar/sebastian-environment/LICENSE"/> <copy todir="${basedir}/build/phar/sebastian-environment"> <fileset dir="${basedir}/vendor/sebastian/environment/src"> <include name="**/*.php" /> </fileset> </copy> <copy file="${basedir}/vendor/sebastian/exporter/LICENSE" tofile="${basedir}/build/phar/sebastian-exporter/LICENSE"/> <copy todir="${basedir}/build/phar/sebastian-exporter"> <fileset dir="${basedir}/vendor/sebastian/exporter/src"> <include name="**/*.php" /> </fileset> </copy> <copy file="${basedir}/vendor/sebastian/recursion-context/LICENSE" tofile="${basedir}/build/phar/sebastian-recursion-context/LICENSE"/> <copy todir="${basedir}/build/phar/sebastian-recursion-context"> <fileset dir="${basedir}/vendor/sebastian/recursion-context/src"> <include name="**/*.php" /> </fileset> </copy> <copy file="${basedir}/vendor/sebastian/global-state/LICENSE" tofile="${basedir}/build/phar/sebastian-global-state/LICENSE"/> <copy todir="${basedir}/build/phar/sebastian-global-state"> <fileset dir="${basedir}/vendor/sebastian/global-state/src"> <include name="**/*.php" /> </fileset> </copy> <copy file="${basedir}/vendor/sebastian/version/LICENSE" tofile="${basedir}/build/phar/sebastian-version/LICENSE"/> <copy todir="${basedir}/build/phar/sebastian-version"> <fileset dir="${basedir}/vendor/sebastian/version/src"> <include name="**/*.php" /> </fileset> </copy> <copy file="${basedir}/vendor/doctrine/instantiator/LICENSE" tofile="${basedir}/build/phar/doctrine-instantiator/LICENSE"/> <copy todir="${basedir}/build/phar/doctrine-instantiator"> <fileset dir="${basedir}/vendor/doctrine/instantiator/src"> <include name="**/*.php" /> </fileset> </copy> <copy file="${basedir}/vendor/symfony/yaml/Symfony/Component/Yaml/LICENSE" tofile="${basedir}/build/phar/symfony/LICENSE"/> <copy todir="${basedir}/build/phar/symfony"> <fileset dir="${basedir}/vendor/symfony"> <include name="**/*.php" /> <exclude name="**/Tests/**" /> </fileset> </copy> <copy todir="${basedir}/build/phar/dbunit"> <fileset dir="${basedir}/vendor/phpunit/dbunit/PHPUnit"> <include name="**/*.php" /> <exclude name="**/Autoload.*" /> </fileset> </copy> <copy todir="${basedir}/build/phar/php-invoker"> <fileset dir="${basedir}/vendor/phpunit/php-invoker/src"> <include name="**/*.php" /> </fileset> </copy> <copy todir="${basedir}/build/phar/phpunit-selenium"> <fileset dir="${basedir}/vendor/phpunit/phpunit-selenium/PHPUnit"> <include name="**/*.php" /> <exclude name="**/Autoload.*" /> </fileset> </copy> <copy file="${basedir}/vendor/phpdocumentor/reflection-docblock/LICENSE" tofile="${basedir}/build/phar/phpdocumentor-reflection-docblock/LICENSE"/> <copy todir="${basedir}/build/phar/phpdocumentor-reflection-docblock"> <fileset dir="${basedir}/vendor/phpdocumentor/reflection-docblock/src"> <include name="**/*.php" /> </fileset> </copy> <copy file="${basedir}/vendor/phpspec/prophecy/LICENSE" tofile="${basedir}/build/phar/phpspec-prophecy/LICENSE"/> <copy todir="${basedir}/build/phar/phpspec-prophecy"> <fileset dir="${basedir}/vendor/phpspec/prophecy/src"> <include name="**/*.php" /> </fileset> </copy> </target> <target name="phar-build"> <copy todir="${basedir}/build/phar/phpunit"> <fileset dir="${basedir}/src"> <include name="**/*.php" /> <include name="**/*.tpl*" /> </fileset> </copy> <exec executable="${basedir}/build/phar-version.php" outputproperty="_version"> <arg value="${version}" /> </exec> <exec executable="${basedir}/build/bin/phpab"> <arg value="--all" /> <arg value="--static" /> <arg value="--once" /> <arg value="--phar" /> <arg value="--hash" /> <arg value="SHA-1" /> <arg value="--output" /> <arg path="${basedir}/build/phpunit-library-${_version}.phar" /> <arg value="--template" /> <arg path="${basedir}/build/library-phar-autoload.php.in" /> <arg path="${basedir}/build/phar" /> </exec> <exec executable="${basedir}/build/bin/phpab"> <arg value="--all" /> <arg value="--static" /> <arg value="--phar" /> <arg value="--hash" /> <arg value="SHA-1" /> <arg value="--output" /> <arg path="${basedir}/build/phpunit-${_version}.phar" /> <arg value="--template" /> <arg path="${basedir}/build/binary-phar-autoload.php.in" /> <arg path="${basedir}/build/phar" /> </exec> <chmod file="${basedir}/build/phpunit-${_version}.phar" perm="ugo+rx"/> </target> </project>