Maven2ではその他いろいろとRepottingツールが提供されているようです。 参考 試験管のなかのコード そこで紹介されていたプラグインをいくつか試してみる事にしました。 pom.xml編集 次の項目をpom.xmlに追加しました。 <build> <plugin> <artifactId>maven-javadoc-plugin</artifactId> <executions> <execution> <id>javadoc-jar</id> <phase>package</phase> <goals> <goal>jar</goal> </goals> </execution> </executions> <configuration> <charset>UTF-8</charset> </configuration> </plugin> </build> <plugins>