usage.apt

来自「anewssystem新闻发布系统集成使用了spring hibernate f」· APT 代码 · 共 72 行

APT
72
字号
 ------
 Usage
 ------
 Fabrice Bellingard
 ------


Usage

*Available Configuration Options
 
 You can refer to the {{{taglist-mojo.html}generated documentation}} to discover
 the different configuration options for this plugin.

*How to Use

  In your <<<pom.xml>>>, insert this segment:

-------------------
<project>
  ...
  <build>
    ...
  </build>
  ...
  <reporting>
    <plugins>
      <plugin>
        <groupId>org.codehaus.mojo</groupId>
        <artifactId>taglist-maven-plugin</artifactId>
      </plugin>
    </plugins>
  </reporting>
  ...
</project>
-------------------

  The report will be generated when executing the Maven site plugin, like this:

-------------------
mvn site
-------------------

  You can easily customise the tags you want to look for. For instance:
  
-------------------
<project>
  ...
  <build>
    ...
  </build>
  ...
  <reporting>
    <plugins>
      <plugin>
        <groupId>org.codehaus.mojo</groupId>
        <artifactId>taglist-maven-plugin</artifactId>
        <configuration>
          <tags>
            <tag>TODO</tag>
            <tag>FIXME</tag>
            <tag>@todo</tag>
            <tag>@deprecated</tag>
          </tags>
        </configuration>
      </plugin>
    </plugins>
  </reporting>
  ...
</project>
-------------------

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?