You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by gg...@apache.org on 2019/09/12 14:44:34 UTC

[commons-configuration] branch master updated (eaca4a3 -> 72a29cc)

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

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


    from eaca4a3  Update tests from org.hsqldb:hsqldb 2.4.1 to 2.5.0.
     new 2ec8f88  Update tests from com.sun.mail:mailapi 1.6.3 to 1.6.4.
     new 72a29cc  Adjust for different javadoc options between Java 8 and 11.

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 | 4 +++-
 pom.xml                     | 2 +-
 src/changes/changes.xml     | 3 +++
 3 files changed, 7 insertions(+), 2 deletions(-)


[commons-configuration] 01/02: Update tests from com.sun.mail:mailapi 1.6.3 to 1.6.4.

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

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

commit 2ec8f88aa090b3f0404b10ee1009b817977e3e21
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Thu Sep 12 10:44:00 2019 -0400

    Update tests from com.sun.mail:mailapi 1.6.3 to 1.6.4.
---
 pom.xml                 | 2 +-
 src/changes/changes.xml | 3 +++
 2 files changed, 4 insertions(+), 1 deletion(-)

diff --git a/pom.xml b/pom.xml
index 5513796..bcc760c 100644
--- a/pom.xml
+++ b/pom.xml
@@ -493,7 +493,7 @@
     <dependency>
       <groupId>com.sun.mail</groupId>
       <artifactId>mailapi</artifactId>
-      <version>1.6.3</version>
+      <version>1.6.4</version>
       <scope>test</scope>
     </dependency>
 
diff --git a/src/changes/changes.xml b/src/changes/changes.xml
index a3902ac..2dbe5dc 100644
--- a/src/changes/changes.xml
+++ b/src/changes/changes.xml
@@ -66,6 +66,9 @@
       <action dev="ggregory" type="update" due-to="Gary Gregory">
         Update tests from org.hsqldb:hsqldb 2.4.1 to 2.5.0.
       </action>
+      <action dev="ggregory" type="update" due-to="Gary Gregory">
+        Update tests from com.sun.mail:mailapi 1.6.3 to 1.6.4.
+      </action>
     </release>
     <release version="2.5" date="2019-05-23"
              description="Minor release with new features and updated dependencies.">


[commons-configuration] 02/02: Adjust for different javadoc options between Java 8 and 11.

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

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

commit 72a29cc53d5ad99674fcefa4e3c4df7bb57e05a7
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Thu Sep 12 10:44:31 2019 -0400

    Adjust for different javadoc options between Java 8 and 11.
---
 .github/workflows/maven.yml | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml
index 9475935..007db47 100644
--- a/.github/workflows/maven.yml
+++ b/.github/workflows/maven.yml
@@ -32,4 +32,6 @@ jobs:
       with:
         java-version: ${{ matrix.java }}
     - name: Build with Maven
-      run: mvn -V apache-rat:check spotbugs:check javadoc:javadoc -DadditionalJOption=-Xdoclint/package:-org.apache.commons.configuration2.plist package --file pom.xml
+      run: mvn -V clean apache-rat:check spotbugs:check javadoc:javadoc -Ddoclint=none package --file pom.xml
+
+# For Java 11, you can be more strict: -DadditionalJOption=-Xdoclint/package:-org.apache.commons.configuration2.plist
\ No newline at end of file