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/27 15:52:49 UTC

[commons-statistics] branch master updated (a0e5309 -> 6826e64)

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 a0e5309  Add GitHub actions workflows
     new 071b794  Remove HTML header tags from javadoc
     new 6826e64  Exclude JMH generated files from javadoc

The 2 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/distribution/package-info.java     | 7 ++-----
 commons-statistics-examples/examples-jmh/pom.xml                   | 6 ++++++
 .../org/apache/commons/statistics/examples/jmh/package-info.java   | 6 ++----
 3 files changed, 10 insertions(+), 9 deletions(-)


[commons-statistics] 02/02: Exclude JMH generated files from javadoc

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 6826e64874bd6856cd2bed711431a0f386e272b5
Author: Alex Herbert <ah...@apache.org>
AuthorDate: Fri May 27 16:52:38 2022 +0100

    Exclude JMH generated files from javadoc
---
 commons-statistics-examples/examples-jmh/pom.xml | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/commons-statistics-examples/examples-jmh/pom.xml b/commons-statistics-examples/examples-jmh/pom.xml
index d2f8ec4..8c13143 100644
--- a/commons-statistics-examples/examples-jmh/pom.xml
+++ b/commons-statistics-examples/examples-jmh/pom.xml
@@ -84,6 +84,9 @@
         <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>
         </configuration>
       </plugin>
     </plugins>
@@ -98,6 +101,9 @@
         <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>
         </configuration>
       </plugin>
     </plugins>


[commons-statistics] 01/02: Remove HTML header tags from javadoc

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 071b794b2635e32abb052c0341d61cc6eb2ef531
Author: Alex Herbert <ah...@apache.org>
AuthorDate: Fri May 27 16:44:30 2022 +0100

    Remove HTML header tags from javadoc
---
 .../commons/statistics/examples/distribution/package-info.java     | 7 ++-----
 .../org/apache/commons/statistics/examples/jmh/package-info.java   | 6 ++----
 2 files changed, 4 insertions(+), 9 deletions(-)

diff --git a/commons-statistics-examples/examples-distribution/src/main/java/org/apache/commons/statistics/examples/distribution/package-info.java b/commons-statistics-examples/examples-distribution/src/main/java/org/apache/commons/statistics/examples/distribution/package-info.java
index 8df3c91..f8fa8e4 100644
--- a/commons-statistics-examples/examples-distribution/src/main/java/org/apache/commons/statistics/examples/distribution/package-info.java
+++ b/commons-statistics-examples/examples-distribution/src/main/java/org/apache/commons/statistics/examples/distribution/package-info.java
@@ -16,13 +16,10 @@
  */
 
 /**
- * <h3>Distributions test application</h3>
+ * Distributions test application.
  *
- * <p>
- * This package contains an application for computing functions of probability distributions.
+ * <p>This package contains an application for computing functions of probability distributions.
  * The following functions can be evaluated: PDF, CDF, Survival function, Inverse CDF and
  * Inverse survival function.
- * </p>
  */
-
 package org.apache.commons.statistics.examples.distribution;
diff --git a/commons-statistics-examples/examples-jmh/src/main/java/org/apache/commons/statistics/examples/jmh/package-info.java b/commons-statistics-examples/examples-jmh/src/main/java/org/apache/commons/statistics/examples/jmh/package-info.java
index bd8e772..5f41f4f 100644
--- a/commons-statistics-examples/examples-jmh/src/main/java/org/apache/commons/statistics/examples/jmh/package-info.java
+++ b/commons-statistics-examples/examples-jmh/src/main/java/org/apache/commons/statistics/examples/jmh/package-info.java
@@ -16,11 +16,9 @@
  */
 
 /**
- * <h3>Performance benchmarks</h3>
+ * Performance benchmarks.
  *
- * <p>
- * This package contains code to perform a
+ * <p>This package contains code to perform a
  * <a href="https://openjdk.java.net/projects/code-tools/jmh">JMH</a> run.
- * </p>
  */
 package org.apache.commons.statistics.examples.jmh;