You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by we...@apache.org on 2022/02/13 13:31:49 UTC

[myfaces-tobago] 18/32: cherrypick from 2.x: chore: Remove Maven Reporting Section

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

weber pushed a commit to branch TOBAGO-1999_Select2
in repository https://gitbox.apache.org/repos/asf/myfaces-tobago.git

commit 14f8e3128bd752e0079ed5829bfccd29882e4a36
Author: Udo Schnurpfeil <ud...@irian.eu>
AuthorDate: Wed Feb 9 11:32:11 2022 +0100

    cherrypick from 2.x: chore: Remove Maven Reporting Section
    
    issue: TOBAGO-2106
---
 pom.xml | 255 ----------------------------------------------------------------
 1 file changed, 255 deletions(-)

diff --git a/pom.xml b/pom.xml
index 43e3185..f7ac60a 100644
--- a/pom.xml
+++ b/pom.xml
@@ -138,261 +138,6 @@
     </mailingList>
   </mailingLists>
 
-  <reporting>
-    <excludeDefaults>true</excludeDefaults>
-    <plugins>
-
-      <!--<plugin>
-        <groupId>org.codehaus.mojo</groupId>
-        <artifactId>simian-report-maven-plugin</artifactId>
-        <version>1.0-SNAPSHOT</version>
-        <configuration>
-          <minimumThreshold>2</minimumThreshold>
-        </configuration>
-      </plugin>
-      -->
-      <!--plugin>
-        <groupId>org.codehaus.mojo</groupId>
-        <artifactId>cobertura-maven-plugin</artifactId>
-        <version>2.2</version>
-      </plugin-->
-
-      <plugin>
-        <groupId>org.codehaus.mojo</groupId>
-        <artifactId>taglist-maven-plugin</artifactId>
-        <version>2.0</version>
-        <configuration>
-          <tags>
-            <tag>TODO</tag>
-            <tag>FIXME</tag>
-            <tag>XXX</tag>
-            <tag>TBD</tag>
-            <tag>@deprecated</tag>
-          </tags>
-        </configuration>
-      </plugin>
-
-      <plugin>
-        <groupId>org.apache.maven.plugins</groupId>
-        <artifactId>maven-jxr-plugin</artifactId>
-        <version>2.3</version>
-      </plugin>
-
-      <plugin>
-        <groupId>org.apache.maven.plugins</groupId>
-        <artifactId>maven-checkstyle-plugin</artifactId>
-        <version>2.9</version>
-        <configuration>
-          <configLocation>tobago/checkstyle.xml</configLocation>
-          <headerLocation>default/myfaces-header.txt</headerLocation>
-          <xrefLocation>xref</xrefLocation>
-          <excludes>**/package-info.java</excludes>
-          <indentSize>2</indentSize>
-          <includeTestSourceDirectory>true</includeTestSourceDirectory>
-        </configuration>
-      </plugin>
-
-      <plugin>
-        <groupId>org.apache.maven.plugins</groupId>
-        <artifactId>maven-javadoc-plugin</artifactId>
-        <version>2.8</version>
-        <configuration>
-          <linksource>true</linksource>
-          <breakiterator>true</breakiterator>
-          <quiet>true</quiet>
-          <verbose>false</verbose>
-          <source>${maven.compile.source}</source>
-          <charset>${maven.compile.encoding}</charset>
-          <links>
-            <link>http://download.oracle.com/javase/1.5.0/docs/api/</link>
-            <link>http://download.oracle.com/javaee/5/api/</link>
-            <link>http://jakarta.apache.org/commons/collections/api-${commons-collection.version}/</link>
-            <link>http://jakarta.apache.org/commons/lang/api-${commons-lang.version}/</link>
-            <link>http://jakarta.apache.org/commons/io/api-${commons-io.version}/</link>
-            <link>http://jakarta.apache.org/commons/logging/commons-logging-${commons-logging.version}/apidocs/</link>
-            <link>http://www.slf4j.org/apidocs</link>
-            <link>http://junit.sourceforge.net/javadoc/</link>
-            <link>http://logging.apache.org/log4j/docs/api/</link>
-          </links>
-          <excludePackageNames>org.apache.myfaces.tobago.internal.*:org.apache.myfaces.tobago.internal.taglib12.*</excludePackageNames>
-          <docletArtifact>
-            <groupId>com.google.doclava</groupId>
-            <artifactId>doclava</artifactId>
-            <version>1.0.3</version>
-          </docletArtifact>
-          <doclet>com.google.doclava.Doclava</doclet>
-          <!--
-            | bootclasspath required by Sun's JVM
-          -->
-          <bootclasspath>${sun.boot.class.path}</bootclasspath>
-          <additionalparam>
-             -quiet
-             -federate JDK http://download.oracle.com/javase/6/docs/api/index.html?
-             -federationxml JDK http://doclava.googlecode.com/svn/static/api/openjdk-6.xml
-             -hdf project.name "${project.name}"
-             -d ${project.build.directory}/apidocs
-             -Xdoclint:none
-          </additionalparam>
-          <useStandardDocletOptions>false</useStandardDocletOptions>
-          <!--
-            | Apple's JVM sometimes requires more memory
-          -->
-          <additionalJOption>-J-Xmx1024m</additionalJOption>
-        </configuration>
-      </plugin>
-
-      <plugin>
-        <groupId>org.apache.maven.plugins</groupId>
-        <artifactId>maven-surefire-report-plugin</artifactId>
-        <version>2.9</version>
-        <configuration>
-          <aggregate>true</aggregate>
-        </configuration>
-      </plugin>
-
-      <plugin>
-        <groupId>org.apache.maven.plugins</groupId>
-        <artifactId>maven-project-info-reports-plugin</artifactId>
-        <version>2.4</version>
-      </plugin>
-
-      <!--plugin>
-        <inherited>false</inherited>
-        <groupId>org.apache.maven.plugins</groupId>
-        <artifactId>maven-changes-plugin</artifactId>
-        <version>2.7.1</version>
-        <reportSets>
-          <reportSet>
-            <configuration>
-              <statusIds>Open,In Progress,Reopened</statusIds>
-            </configuration>
-            <reports>
-              <report>jira-report</report>
-            </reports>
-          </reportSet>
-        </reportSets>
-      </plugin-->
-
-      <plugin>
-        <inherited>false</inherited>
-        <groupId>org.apache.maven.plugins</groupId>
-        <artifactId>maven-changelog-plugin</artifactId>
-        <version>2.2</version>
-        <configuration>
-          <basedir>${basedir}</basedir>
-        </configuration>
-      </plugin>
-
-      <!--
-            <plugin>
-              <inherited>false</inherited>
-              <groupId>org.apache.maven.plugins</groupId>
-              <artifactId>maven-doap-plugin</artifactId>
-              <configuration>
-                <category>web-framework</category>
-                <language>Java</language>
-                <shortdesc>Set of user interface components based on JSF.</shortdesc>
-                <pmc>http://myfaces.apache.org</pmc>
-              </configuration>
-            </plugin>
-      -->
-
-      <!--plugin>
-        <groupId>org.codehaus.mojo</groupId>
-        <artifactId>clirr-maven-plugin</artifactId>
-        <configuration>
-          <minSeverity>info</minSeverity>
-          <excludes>
-            <exclude>org/apache/myfaces/tobago/example/**</exclude>
-            <exclude>org/apache/myfaces/tobago/ant/**</exclude>
-            <exclude>org/apache/myfaces/tobago/apt/**</exclude>
-          </excludes>
-        </configuration>
-      </plugin-->
-
-      <plugin>
-        <groupId>org.apache.maven.plugins</groupId>
-        <artifactId>maven-pmd-plugin</artifactId>
-        <version>3.4</version>
-        <configuration>
-          <rulesets>
-            <!-- FIXME: currently only possible to build in project build -->
-            <ruleset>${basedir}/tobago-pmd-config.xml</ruleset>
-          </rulesets>
-          <linkXRef>true</linkXRef>
-          <targetJdk>${maven.compile.source}</targetJdk>
-          <aggregate>true</aggregate>
-<!--
-          <allowCommentedBlocks>true</allowCommentedBlocks>
--->
-        </configuration>
-      </plugin>
-
-      <!-- TODO test dashboard plugin  -->
-      <!--plugin>
-        <groupId>org.codehaus.mojo</groupId>
-        <artifactId>dashboard-maven-plugin</artifactId>
-        <version>1.0.0-beta-1</version>
-      </plugin-->
-
-      <plugin>
-        <groupId>org.codehaus.mojo</groupId>
-        <artifactId>findbugs-maven-plugin</artifactId>
-        <version>2.5.1</version>
-        <configuration>
-          <threshold>Low</threshold>
-          <effort>Max</effort>
-        </configuration>
-      </plugin>
-
-      <plugin>
-        <groupId>org.codehaus.mojo</groupId>
-        <artifactId>jdepend-maven-plugin</artifactId>
-        <version>2.0</version>
-      </plugin>
-
-      <!-- http://jira.codehaus.org/browse/MJNCSS-4
-           JavaNCSS still has problems with annotations for local variables -->
-      <plugin>
-        <groupId>org.codehaus.mojo</groupId>
-        <artifactId>javancss-maven-plugin</artifactId>
-        <version>2.0</version>
-        <configuration>
-          <excludes>
-            <exclude>org/apache/myfaces/tobago/internal/layout/Grid.java</exclude>
-          </excludes>
-        </configuration>
-      </plugin>
-
-      <plugin>
-        <groupId>org.apache.rat</groupId>
-        <artifactId>apache-rat-plugin</artifactId>
-        <version>0.11</version>
-      </plugin>
-
-      <plugin>
-        <groupId>org.apache.maven.plugins</groupId>
-        <artifactId>maven-dependency-plugin</artifactId>
-        <version>2.8</version>
-        <reportSets>
-          <reportSet>
-            <reports>
-              <report>analyze-report</report>
-            </reports>
-          </reportSet>
-        </reportSets>
-      </plugin>
-
-      <!--plugin>
-        <groupId>org.apache.maven.plugins</groupId>
-        <artifactId>maven-linkcheck-plugin</artifactId>
-        <version>1.0.1</version>
-      </plugin-->
-
-    </plugins>
-
-  </reporting>
-
   <dependencyManagement>
     <dependencies>
       <dependency>