You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by ah...@apache.org on 2022/05/29 07:29:46 UTC

[commons-statistics] branch master updated (0acb4e4 -> 85ff401)

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

aherbert pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/commons-statistics.git


    from 0acb4e4  Files entry must be on a single line
     new f8d18b5  Drop duplicate plugin configuration.
     new 9418ef5  Skip spotbugs in JMH module
     new 85ff401  Skip generated files in JMH module for checkstyle

The 3 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 commons-statistics-examples/examples-jmh/pom.xml | 19 +++++++++++++++----
 1 file changed, 15 insertions(+), 4 deletions(-)


[commons-statistics] 01/03: Drop duplicate plugin configuration.

Posted by ah...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

aherbert pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-statistics.git

commit f8d18b5ea9caf8115763dc9a1b63e7f3f87adf00
Author: Alex Herbert <ah...@apache.org>
AuthorDate: Sun May 29 08:01:01 2022 +0100

    Drop duplicate plugin configuration.
    
    This is inherited from the parent.
---
 commons-statistics-examples/examples-jmh/pom.xml | 4 ----
 1 file changed, 4 deletions(-)

diff --git a/commons-statistics-examples/examples-jmh/pom.xml b/commons-statistics-examples/examples-jmh/pom.xml
index 8c13143..5ed342a 100644
--- a/commons-statistics-examples/examples-jmh/pom.xml
+++ b/commons-statistics-examples/examples-jmh/pom.xml
@@ -82,8 +82,6 @@
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-javadoc-plugin</artifactId>
         <configuration>
-          <!--  Enable MathJax -->
-          <additionalOptions>${doclint.javadoc.qualifier} ${allowscript.javadoc.qualifier} -header '&lt;script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/${statistics.mathjax.version}/MathJax.js?config=TeX-AMS-MML_HTMLorMML"&gt;&lt;/script&gt;'</additionalOptions>
           <sourceFileExcludes>
             <sourceFileExclude>**/jmh_generated/*.java</sourceFileExclude>
           </sourceFileExcludes>
@@ -99,8 +97,6 @@
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-javadoc-plugin</artifactId>
         <configuration>
-          <!--  Enable MathJax -->
-          <additionalOptions>${doclint.javadoc.qualifier} ${allowscript.javadoc.qualifier} -header '&lt;script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/${statistics.mathjax.version}/MathJax.js?config=TeX-AMS-MML_HTMLorMML"&gt;&lt;/script&gt;'</additionalOptions>
           <sourceFileExcludes>
             <sourceFileExclude>**/jmh_generated/*.java</sourceFileExclude>
           </sourceFileExcludes>


[commons-statistics] 03/03: Skip generated files in JMH module for checkstyle

Posted by ah...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

aherbert pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-statistics.git

commit 85ff40136236a7c2d99d16634779360779e3db9e
Author: Alex Herbert <ah...@apache.org>
AuthorDate: Sun May 29 08:28:36 2022 +0100

    Skip generated files in JMH module for checkstyle
---
 commons-statistics-examples/examples-jmh/pom.xml | 14 ++++++++++++++
 1 file changed, 14 insertions(+)

diff --git a/commons-statistics-examples/examples-jmh/pom.xml b/commons-statistics-examples/examples-jmh/pom.xml
index 67c71a4..693e6c0 100644
--- a/commons-statistics-examples/examples-jmh/pom.xml
+++ b/commons-statistics-examples/examples-jmh/pom.xml
@@ -88,6 +88,13 @@
           </sourceFileExcludes>
         </configuration>
       </plugin>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-checkstyle-plugin</artifactId>
+        <configuration>
+          <excludes>**/jmh_generated/*.java</excludes>
+        </configuration>
+      </plugin>
     </plugins>
   </build>
 
@@ -103,6 +110,13 @@
           </sourceFileExcludes>
         </configuration>
       </plugin>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-checkstyle-plugin</artifactId>
+        <configuration>
+          <excludes>**/jmh_generated/*.java</excludes>
+        </configuration>
+      </plugin>
     </plugins>
   </reporting>
 


[commons-statistics] 02/03: Skip spotbugs in JMH module

Posted by ah...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

aherbert pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-statistics.git

commit 9418ef58eb864f55e4449853699e1cea1d280180
Author: Alex Herbert <ah...@apache.org>
AuthorDate: Sun May 29 08:27:42 2022 +0100

    Skip spotbugs in JMH module
---
 commons-statistics-examples/examples-jmh/pom.xml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/commons-statistics-examples/examples-jmh/pom.xml b/commons-statistics-examples/examples-jmh/pom.xml
index 5ed342a..67c71a4 100644
--- a/commons-statistics-examples/examples-jmh/pom.xml
+++ b/commons-statistics-examples/examples-jmh/pom.xml
@@ -71,6 +71,7 @@
     <project.mainClass>org.openjdk.jmh.Main</project.mainClass>
     <!-- Disable analysis for benchmarking code. -->
     <pmd.skip>true</pmd.skip>
+    <spotbugs.skip>true</spotbugs.skip>
     <!-- Disable JDK compatibility check for benchmarking code. -->
     <animal.sniffer.skip>true</animal.sniffer.skip>
   </properties>