You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by ol...@apache.org on 2022/02/26 09:31:38 UTC

[maven-compiler-plugin] branch ci-reporting updated: add taglist as well

This is an automated email from the ASF dual-hosted git repository.

olamy pushed a commit to branch ci-reporting
in repository https://gitbox.apache.org/repos/asf/maven-compiler-plugin.git


The following commit(s) were added to refs/heads/ci-reporting by this push:
     new 621d9fe  add taglist as well
621d9fe is described below

commit 621d9feadcc60de8e3d50ad4e57c52b1b8f3b58b
Author: Olivier Lamy <ol...@apache.org>
AuthorDate: Sat Feb 26 19:31:20 2022 +1000

    add taglist as well
    
    Signed-off-by: Olivier Lamy <ol...@apache.org>
---
 pom.xml | 57 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 57 insertions(+)

diff --git a/pom.xml b/pom.xml
index 04a973a..cc6fed4 100644
--- a/pom.xml
+++ b/pom.xml
@@ -416,6 +416,11 @@ under the License.
               <artifactId>maven-pmd-plugin</artifactId>
               <version>3.16.0</version>
             </plugin>
+            <plugin>
+              <groupId>org.codehaus.mojo</groupId>
+              <artifactId>taglist-maven-plugin</artifactId>
+              <version>3.0.0</version>
+            </plugin>
           </plugins>
         </pluginManagement>
         <plugins>
@@ -486,6 +491,58 @@ under the License.
               </execution>
             </executions>
           </plugin>
+          <plugin>
+            <groupId>org.codehaus.mojo</groupId>
+            <artifactId>taglist-maven-plugin</artifactId>
+            <executions>
+              <execution>
+                <goals>
+                  <goal>taglist</goal>
+                </goals>
+                <configuration>
+                  <tagListOptions>
+                    <tagClasses>
+                      <tagClass>
+                        <displayName>FIXME Work</displayName>
+                        <tags>
+                          <tag>
+                            <matchString>fixme</matchString>
+                            <matchType>ignoreCase</matchType>
+                          </tag>
+                          <tag>
+                            <matchString>@fixme</matchString>
+                            <matchType>ignoreCase</matchType>
+                          </tag>
+                        </tags>
+                      </tagClass>
+                      <tagClass>
+                        <displayName>Todo Work</displayName>
+                        <tags>
+                          <tag>
+                            <matchString>todo</matchString>
+                            <matchType>ignoreCase</matchType>
+                          </tag>
+                          <tag>
+                            <matchString>@todo</matchString>
+                            <matchType>ignoreCase</matchType>
+                          </tag>
+                        </tags>
+                      </tagClass>
+                      <tagClass>
+                        <displayName>Deprecated Work</displayName>
+                        <tags>
+                          <tag>
+                            <matchString>@deprecated</matchString>
+                            <matchType>ignoreCase</matchType>
+                          </tag>
+                        </tags>
+                      </tagClass>
+                    </tagClasses>
+                  </tagListOptions>
+                </configuration>
+              </execution>
+            </executions>
+          </plugin>
         </plugins>
       </build>
     </profile>