Skip to content

Commit

Permalink
Fix build.xml and add ignore file
Browse files Browse the repository at this point in the history
  • Loading branch information
xcompass committed Aug 10, 2013
1 parent 802baf1 commit d1c95c3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions .gitignore
Expand Up @@ -10,6 +10,7 @@ report/
composer.phar
composer.lock
Session.vim
cache.properties
*.bak
.idea
*.swp
4 changes: 3 additions & 1 deletion build.xml
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<project name="FormBuilder" default="build">
<target name="build" depends="prepare,vendors,parameters,lint,phploc,pdepend,phpmd-ci,phpcs-ci,phpcpd,phpdox,phpunit,phpcb"/>
<target name="build" depends="prepare,lint,phploc,pdepend,phpmd-ci,phpcs-ci,phpcpd,phpdox,phpunit,phpcb"/>

<target name="build-parallel" depends="prepare,lint,tools-parallel,phpunit,phpcb"/>

Expand Down Expand Up @@ -40,10 +40,12 @@

<fileset dir="${basedir}/src">
<include name="**/*.php" />
<modified />
</fileset>

<fileset dir="${basedir}/src/">
<include name="**/*Test.php" />
<modified />
</fileset>
</apply>
</target>
Expand Down

0 comments on commit d1c95c3

Please sign in to comment.