Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Sign in
Toggle navigation
S
solarium
Project overview
Project overview
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Commits
Open sidebar
common
solarium
Commits
45f62930
Commit
45f62930
authored
Jan 20, 2018
by
Andreas Möller
Committed by
Markus Kalkbrenner
Jan 20, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix: Properly indent build.xml (#555)
parent
207fa796
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
70 additions
and
70 deletions
+70
-70
build.xml
build.xml
+70
-70
No files found.
build.xml
View file @
45f62930
<project
name=
"solarium"
default=
"build"
basedir=
"."
>
<project
name=
"solarium"
default=
"build"
basedir=
"."
>
<target
name=
"clean"
>
<target
name=
"clean"
>
<!-- Clean up -->
<!-- Clean up -->
<delete
dir=
"build"
/>
<delete
dir=
"build"
/>
<!-- Create build directories -->
<!-- Create build directories -->
<mkdir
dir=
"${basedir}/build/api"
/>
<mkdir
dir=
"${basedir}/build/api"
/>
<mkdir
dir=
"${basedir}/build/code-browser"
/>
<mkdir
dir=
"${basedir}/build/code-browser"
/>
<mkdir
dir=
"${basedir}/build/coverage"
/>
<mkdir
dir=
"${basedir}/build/coverage"
/>
<mkdir
dir=
"${basedir}/build/logs"
/>
<mkdir
dir=
"${basedir}/build/logs"
/>
<mkdir
dir=
"${basedir}/build/pdepend"
/>
<mkdir
dir=
"${basedir}/build/pdepend"
/>
</target>
</target>
<!-- Run unit tests and generate junit.xml and clover.xml
<!-- Run unit tests and generate junit.xml and clover.xml
(This is done in the phpunit.xml.dist,
(This is done in the phpunit.xml.dist,
you could also write the switches here)
you could also write the switches here)
-->
-->
<target
name=
"phpunit"
>
<target
name=
"phpunit"
>
<exec
executable=
"${basedir}/vendor/bin/phpunit"
/>
<exec
executable=
"${basedir}/vendor/bin/phpunit"
/>
</target>
</target>
<!-- Run pdepend, phpmd, phpcpd, and phpcs in parallel -->
<!-- Run pdepend, phpmd, phpcpd, and phpcs in parallel -->
<target
name=
"parallelTasks"
>
<target
name=
"parallelTasks"
>
<parallel>
<parallel>
<antcall
target=
"pdepend"
/>
<antcall
target=
"pdepend"
/>
<antcall
target=
"phpmd"
/>
<antcall
target=
"phpmd"
/>
<antcall
target=
"phpcpd"
/>
<antcall
target=
"phpcpd"
/>
<antcall
target=
"phpcs"
/>
<antcall
target=
"phpcs"
/>
<antcall
target=
"docblox"
/>
<antcall
target=
"docblox"
/>
</parallel>
</parallel>
</target>
</target>
<!-- Generate jdepend.xml and software metrics charts -->
<!-- Generate jdepend.xml and software metrics charts -->
<target
name=
"pdepend"
>
<target
name=
"pdepend"
>
<exec
executable=
"pdepend"
>
<exec
executable=
"pdepend"
>
<arg
line=
"--overview-pyramid=${basedir}/build/pdepend/overview-pyramid.svg"
/>
<arg
line=
"--overview-pyramid=${basedir}/build/pdepend/overview-pyramid.svg"
/>
<arg
line=
"--jdepend-chart=${basedir}/build/pdepend/dependencies.svg"
/>
<arg
line=
"--jdepend-chart=${basedir}/build/pdepend/dependencies.svg"
/>
<arg
line=
"--jdepend-xml=${basedir}/build/logs/jdepend.xml"
/>
<arg
line=
"--jdepend-xml=${basedir}/build/logs/jdepend.xml"
/>
<arg
line=
"library"
/>
<arg
line=
"library"
/>
</exec>
</exec>
</target>
</target>
<!-- Generate pmd.xml -->
<!-- Generate pmd.xml -->
<target
name=
"phpmd"
>
<target
name=
"phpmd"
>
<exec
executable=
"phpmd"
>
<exec
executable=
"phpmd"
>
<arg
line=
"library xml codesize,unusedcode --reportfile ${basedir}/build/logs/pmd.xml"
/>
<arg
line=
"library xml codesize,unusedcode --reportfile ${basedir}/build/logs/pmd.xml"
/>
</exec>
</exec>
</target>
</target>
<!-- Generate pmd-cpd.xml -->
<!-- Generate pmd-cpd.xml -->
<target
name=
"phpcpd"
>
<target
name=
"phpcpd"
>
<exec
executable=
"phpcpd"
>
<exec
executable=
"phpcpd"
>
<arg
line=
"--log-pmd ${basedir}/build/logs/pmd-cpd.xml library"
/>
<arg
line=
"--log-pmd ${basedir}/build/logs/pmd-cpd.xml library"
/>
</exec>
</exec>
</target>
</target>
<!-- Generate checkstyle.xml -->
<!-- Generate checkstyle.xml -->
<target
name=
"phpcs"
>
<target
name=
"phpcs"
>
<exec
executable=
"${basedir}/vendor/bin/phpcs"
>
<exec
executable=
"${basedir}/vendor/bin/phpcs"
>
<arg
value=
"--report=checkstyle"
/>
<arg
value=
"--report=checkstyle"
/>
<arg
value=
"--report-file=${basedir}/build/logs/checkstyle.xml"
/>
<arg
value=
"--report-file=${basedir}/build/logs/checkstyle.xml"
/>
<arg
value=
"--standard=PSR2"
/>
<arg
value=
"--standard=PSR2"
/>
<arg
value=
"--extensions=php"
/>
<arg
value=
"--extensions=php"
/>
<arg
path=
"library"
/>
<arg
path=
"library"
/>
</exec>
</exec>
</target>
</target>
<!-- Generate API documentation -->
<!-- Generate API documentation -->
<target
name=
"docblox"
>
<target
name=
"docblox"
>
<exec
executable=
"docblox"
>
<exec
executable=
"docblox"
>
<arg
line=
"run -d library -t build/api"
/>
<arg
line=
"run -d library -t build/api"
/>
</exec>
</exec>
</target>
</target>
<target
name=
"phpcb"
>
<target
name=
"phpcb"
>
<exec
executable=
"phpcb"
>
<exec
executable=
"phpcb"
>
<arg
line=
"--log ${basedir}/build/logs --source ${basedir}/library --output ${basedir}/build/code-browser"
/>
<arg
line=
"--log ${basedir}/build/logs --source ${basedir}/library --output ${basedir}/build/code-browser"
/>
</exec>
</exec>
</target>
</target>
<target
name=
"build"
depends=
"clean,phpunit,parallelTasks,phpcb"
/>
<target
name=
"build"
depends=
"clean,phpunit,parallelTasks,phpcb"
/>
</project>
</project>
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment