我使用像这样的maven生成checkstyle报告
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
<version>2.7</version>
<configuration>
<outputDirectory>target/checkstyle/checkstyle_output</outputDirectory>
<configLocation>src/main/config/sun-checks.xml</configLocation>
</configuration>
</plugin>
但问题是结果.html
页面根本没有任何样式。看起来像这样
如何添加样式?