Class | Buildr::Doc::Javadoc |
In: |
lib/buildr/java/doc.rb
(CVS)
|
Parent: | Base |
A convenient task for creating Javadocs from the project‘s compile task. Minimizes all the hard work to calling from and using.
For example:
doc.from(projects('myapp:foo', 'myapp:bar')).using(:windowtitle=>'My App')
Or, short and sweet:
desc 'My App' define 'myapp' do . . . doc projects('myapp:foo', 'myapp:bar') end