Javadocs and unit tests. Woo!

This commit is contained in:
akwizgran
2011-06-22 11:42:33 +01:00
parent 9e76cc6a4f
commit eb1c855278
14 changed files with 287 additions and 28 deletions

View File

@@ -2,19 +2,24 @@
<dirname property='depend.root' file='${ant.file.dependencies}'/>
<target name='depend.all' depends='depend.components, depend.ui'/>
<target name='depend.api'>
<ant dir='${depend.root}/api' inheritAll='false'/>
<ant dir='${depend.root}/api' target='compile'
inheritAll='false'/>
</target>
<target name='depend.components' depends='depend.api, depend.util'>
<ant dir='${depend.root}/components' inheritAll='false'/>
<ant dir='${depend.root}/components' target='compile'
inheritAll='false'/>
</target>
<target name='depend.test' depends='depend.components'>
<ant dir='${depend.root}/test' inheritAll='false'/>
<ant dir='${depend.root}/test' target='compile'
inheritAll='false'/>
</target>
<target name='depend.ui' depends='depend.api, depend.util'>
<ant dir='${depend.root}/ui' inheritAll='false'/>
<ant dir='${depend.root}/ui' target='compile'
inheritAll='false'/>
</target>
<target name='depend.util'>
<ant dir='${depend.root}/util' inheritAll='false'/>
<ant dir='${depend.root}/util' target='compile'
inheritAll='false'/>
</target>
<target name='depend-clean.all'
depends='depend-clean.components, depend-clean.ui'/>