Update build settings
This commit is contained in:
27
build.xml
27
build.xml
@@ -12,12 +12,12 @@
|
|||||||
|
|
||||||
|
|
||||||
<target name="build"
|
<target name="build"
|
||||||
depends="prepare,lint,copyapp,phpunit,release,install"
|
depends="prepare,lint,copyapp,phpunit,phpdox,release,install"
|
||||||
description=""/>
|
description=""/>
|
||||||
|
|
||||||
<target name="buildlocal"
|
<target name="buildlocal"
|
||||||
depends="prepare,copyapp"
|
depends="prepare,lint,copyapp,phpunit"
|
||||||
description=""/>
|
description=""/>
|
||||||
|
|
||||||
<target name="releaseapp"
|
<target name="releaseapp"
|
||||||
depends="prepare,lint,copyapp,phpunit,release"
|
depends="prepare,lint,copyapp,phpunit,release"
|
||||||
@@ -183,8 +183,7 @@
|
|||||||
depends=""
|
depends=""
|
||||||
description="Generate project documentation using phpDox">
|
description="Generate project documentation using phpDox">
|
||||||
<exec executable="${toolsdir}phpdox"/>
|
<exec executable="${toolsdir}phpdox"/>
|
||||||
</target>
|
</target>
|
||||||
|
|
||||||
|
|
||||||
<target name="copyapp"
|
<target name="copyapp"
|
||||||
description="Copy generated files to QA app">
|
description="Copy generated files to QA app">
|
||||||
@@ -210,24 +209,6 @@
|
|||||||
</fileset>
|
</fileset>
|
||||||
</delete>
|
</delete>
|
||||||
|
|
||||||
<!--<copy todir="${destination}/lib" overwrite="true">-->
|
|
||||||
<!--<fileset dir="${basedir}/lib">-->
|
|
||||||
<!--<include name="**/*"/>-->
|
|
||||||
<!--</fileset>-->
|
|
||||||
<!--</copy>-->
|
|
||||||
|
|
||||||
<!--<copy todir="${destination}" overwrite="true">-->
|
|
||||||
<!--<fileset dir="${basedir}/core-ext">-->
|
|
||||||
<!--<include name="**/*"/>-->
|
|
||||||
<!--</fileset>-->
|
|
||||||
<!--</copy>-->
|
|
||||||
|
|
||||||
<!--<copy todir="${destination}" overwrite="true">-->
|
|
||||||
<!--<fileset dir="${basedir}/ext">-->
|
|
||||||
<!--<include name="**/*"/>-->
|
|
||||||
<!--</fileset>-->
|
|
||||||
<!--</copy>-->
|
|
||||||
|
|
||||||
<copy todir="${testdir}" overwrite="true">
|
<copy todir="${testdir}" overwrite="true">
|
||||||
<fileset dir="${basedir}/test">
|
<fileset dir="${basedir}/test">
|
||||||
<include name="**/*"/>
|
<include name="**/*"/>
|
||||||
|
|||||||
10
phpdox.xml
10
phpdox.xml
@@ -1,10 +1,10 @@
|
|||||||
<phpdox xmlns="http://phpdox.net/config">
|
<phpdox xmlns="http://xml.phpdox.net/config">
|
||||||
<project name="icehrm" source="./build/app" workdir="./build/phpdox">
|
<project name="icehrm" source="." workdir="./build/phpdox">
|
||||||
<collector publiconly="false">
|
<collector publiconly="false">
|
||||||
<include mask="*.php" />
|
<include mask="*.php" />
|
||||||
<exclude mask="**/lib/**"/>
|
<exclude mask="*/lib/**"/>
|
||||||
<exclude mask="**/adodb512/**"/>
|
<exclude mask="*/adodb512/**"/>
|
||||||
<exclude mask="**/composer/**"/>
|
<exclude mask="*/composer/**"/>
|
||||||
</collector>
|
</collector>
|
||||||
|
|
||||||
<generator output="build">
|
<generator output="build">
|
||||||
|
|||||||
Reference in New Issue
Block a user