2
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Groovyでライブラリのjavadocを生成する

2
Posted at

あるライブラリのAPIが見たかったが、ネット上にjavadocが公開されてなかった。
とりあえずソースコードのzipを落として解凍する。

javadocコマンドで生成しようとしたけれど、なんか上手くいかないのでGroovyのAntBuilderを使った。
groovy -e で一発生成。

cd /path/to/sourcedir
groovy -e "new AntBuilder().javadoc(destdir:'javadoc'){fileset(dir:'.')}"
2
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?