Skip to content

Instantly share code, notes, and snippets.

View jmcneese's full-sized avatar

Joshua McNeese jmcneese

View GitHub Profile
@jmcneese
jmcneese / build.xml
Last active November 21, 2016 14:39 — forked from vdubyna/build.xml
<?xml version="1.0" encoding="UTF-8"?>
<project name="Application" default="build" basedir="../">
<target name="build" depends="prepare,phpunit,phpmd,phpcpd,phpdoc,phpcb,phpdcd,phploc,phpcs"/>
<property name="applicationDir" value="${basedir}/source" />
<property name="buildDir" value="${basedir}/build" />
<target name="prepare">
<mkdir dir="${buildDir}/logs" />