Update build settings

This commit is contained in:
gamonoid
2017-09-07 23:44:45 +02:00
parent becda3d0e1
commit 764a13ddea
2 changed files with 10 additions and 29 deletions

View File

@@ -12,11 +12,11 @@
<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"
@@ -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="**/*"/>

View File

@@ -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">