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:31:40 UTC

[commons-numbers] branch master updated (f41eefd6 -> c5130bf4)

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-numbers.git


    from f41eefd6 Replace deprecated RandomSource.create
     new a84cc75c Do not fail PMD in examples modules
     new c5130bf4 Simplify GH build workflow for examples

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:
 .github/workflows/maven.yml      |  2 +-
 commons-numbers-examples/pom.xml | 12 ++++++++++++
 2 files changed, 13 insertions(+), 1 deletion(-)


[commons-numbers] 01/02: Do not fail PMD in examples modules

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-numbers.git

commit a84cc75c31012013cfe5779d077cd97db52ecebc
Author: Alex Herbert <ah...@apache.org>
AuthorDate: Fri May 27 16:30:41 2022 +0100

    Do not fail PMD in examples modules
---
 commons-numbers-examples/pom.xml | 12 ++++++++++++
 1 file changed, 12 insertions(+)

diff --git a/commons-numbers-examples/pom.xml b/commons-numbers-examples/pom.xml
index f48ec73a..806efd91 100644
--- a/commons-numbers-examples/pom.xml
+++ b/commons-numbers-examples/pom.xml
@@ -47,6 +47,18 @@
     <commons.japicmp.breakBuildOnSourceIncompatibleModifications>false</commons.japicmp.breakBuildOnSourceIncompatibleModifications>
   </properties>
 
+  <build>
+    <plugins>
+      <plugin>
+        <artifactId>maven-pmd-plugin</artifactId>
+        <version>${numbers.pmd.version}</version>
+        <configuration>
+          <failOnViolation>false</failOnViolation>
+        </configuration>
+      </plugin>
+    </plugins>
+  </build>
+
   <modules>
     <module>examples-jmh</module>
   </modules>


[commons-numbers] 02/02: Simplify GH build workflow for examples

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-numbers.git

commit c5130bf4f5c4b93966114b1c6c9f887e01d3feac
Author: Alex Herbert <ah...@apache.org>
AuthorDate: Fri May 27 16:31:04 2022 +0100

    Simplify GH build workflow for examples
---
 .github/workflows/maven.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml
index d70ba4c0..00d83a70 100644
--- a/.github/workflows/maven.yml
+++ b/.github/workflows/maven.yml
@@ -48,4 +48,4 @@ jobs:
       # Examples require Java 11+
       if: contains(matrix.java, '11')
       working-directory: ./commons-numbers-examples
-      run: mvn -pl examples-jmh verify apache-rat:check checkstyle:check
+      run: mvn -V --no-transfer-progress