You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by ma...@apache.org on 2021/08/14 12:26:59 UTC

[commons-geometry] branch master updated (374451e -> 2639cc7)

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

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


    from 374451e  Ignore site-content.README
     new 2260285  using RELEASE-NOTES.txt to test for child modules
     new 2639cc7  excluding ConfusingTernary PMD rule

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:
 pom.xml                                | 2 +-
 src/main/resources/pmd/pmd-ruleset.xml | 1 +
 2 files changed, 2 insertions(+), 1 deletion(-)

[commons-geometry] 01/02: using RELEASE-NOTES.txt to test for child modules

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

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

commit 2260285a39673f1eeeeba4ec3ecf17bcc06199be
Author: Matt Juntunen <ma...@apache.org>
AuthorDate: Sat Aug 14 08:26:24 2021 -0400

    using RELEASE-NOTES.txt to test for child modules
---
 pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pom.xml b/pom.xml
index 94ec9a1..5c27a4e 100644
--- a/pom.xml
+++ b/pom.xml
@@ -513,7 +513,7 @@
       <id>is-child-module</id>
       <activation>
         <file>
-          <missing>${basedir}/CONTRIBUTING.md</missing>
+          <missing>${basedir}/RELEASE-NOTES.txt</missing>
         </file>
       </activation>
       <properties>

[commons-geometry] 02/02: excluding ConfusingTernary PMD rule

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

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

commit 2639cc7048187ba67be0ed4efc7bbdcc658ad1f5
Author: Matt Juntunen <ma...@apache.org>
AuthorDate: Sat Aug 14 08:26:45 2021 -0400

    excluding ConfusingTernary PMD rule
---
 src/main/resources/pmd/pmd-ruleset.xml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/src/main/resources/pmd/pmd-ruleset.xml b/src/main/resources/pmd/pmd-ruleset.xml
index 646f63e..96025bd 100644
--- a/src/main/resources/pmd/pmd-ruleset.xml
+++ b/src/main/resources/pmd/pmd-ruleset.xml
@@ -40,6 +40,7 @@
     <exclude name="OnlyOneReturn" />
     <exclude name="UseUnderscoresInNumericLiterals" />
     <exclude name="GenericsNaming" />
+    <exclude name="ConfusingTernary" />
   </rule>
   <rule ref="category/java/design.xml">
     <exclude name="TooManyMethods" />