简体   繁体   中英

Changing font-family of maven-javadoc-plugin

我可以在使用命令mvn站点时指定用于生成apidocs的字体家族吗?

You can specify a custom stylesheet file in your maven plugin configuration.

  <plugin>
    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-javadoc-plugin</artifactId>
    <version>2.10</version>
    <configuration>
      <stylesheetfile>${basedir}/path/to/your/stylesheetfile.css</stylesheetfile>
      ...
    </configuration>
  </plugin>

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM