我试图为我的Java 1.7项目运行maven的javadoc:javadoc目标。我想在/src/main/java/stylesheet.css中指定我自定义的样式表,以便在运行目标时使用,但会使用默认的javadoc样式表。
我已尝试将以下内容添加到我的pom.xml文件中,因为Apache Maven网站上的https://maven.apache.org/plugins/maven-javadoc-plugin/examples/stylesheet-configuration.html文档建议:
<reporting>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.10.3</version>
<configuration>
<stylesheetfile>src/main/java/stylesheet.css</stylesheetfile>
</configuration>
</plugin>
</plugins>
</reporting>
但是当我运行maven javadoc:javadoc目标时,这并没有得到理想的结果。有什么建议吗?
更新:我已尝试
<configuration>
<stylesheetfile>theme-irvine.css</stylesheetfile>
</configuration>
并且
<configuration>
<stylesheetfile>${basedir}/src/main/java/theme-irvine.css</stylesheetfile>
</configuration>
在我的pom.xml文件中,两者都没有。