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

sgoeschl pushed a commit to branch EMAIL-190
in repository https://gitbox.apache.org/repos/asf/commons-email.git

commit 476706ce7173c0ecceeacc793abd223eb5296408
Author: Siegfried Goeschl <siegfried.goes...@gmail.com>
AuthorDate: Thu Mar 5 23:14:10 2020 +0100

    EMAIL-190 Travis build fails for JDK 7 & 11
---
 .travis.yml             |  4 +++-
 pom.xml                 | 10 +++++-----
 src/changes/changes.xml |  6 ++++++
 3 files changed, 14 insertions(+), 6 deletions(-)

diff --git a/.travis.yml b/.travis.yml
index 128b1d4..72fe3cd 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -17,9 +17,11 @@ language: java
 sudo: false
 
 jdk:
-  - openjdk7
   - openjdk8
+  - openjdk9
+  - openjdk10
   - openjdk11
+  - openjdk12
   
 after_success:
   - mvn clean cobertura:cobertura coveralls:report
diff --git a/pom.xml b/pom.xml
index 1c7519e..b1385ce 100644
--- a/pom.xml
+++ b/pom.xml
@@ -19,7 +19,7 @@
     <parent>
       <groupId>org.apache.commons</groupId>
       <artifactId>commons-parent</artifactId>
-      <version>47</version>
+      <version>50</version>
     </parent>
     <modelVersion>4.0.0</modelVersion>
     <artifactId>commons-email</artifactId>
@@ -242,7 +242,7 @@
         <dependency>
             <groupId>junit</groupId>
             <artifactId>junit</artifactId>
-            <version>4.12</version>
+            <version>4.13</version>
             <scope>test</scope>
         </dependency>
         <dependency>
@@ -305,8 +305,8 @@
         <!-- override the default commons encoding property -->
         <commons.encoding>UTF-8</commons.encoding>
         
-        <powermock.version>1.7.3</powermock.version>
-        <easymock.version>3.6</easymock.version>
+        <powermock.version>2.0.5</powermock.version>
+        <easymock.version>4.2</easymock.version>
         <findbugs.version>3.0.5</findbugs.version>
     </properties> 
 
@@ -447,7 +447,7 @@
             <plugin>
                 <groupId>org.apache.maven.plugins</groupId>
                 <artifactId>maven-pmd-plugin</artifactId>
-                <version>3.9.0</version>
+                <version>3.13.0</version>
                 <configuration>
                     <targetJdk>${maven.compiler.target}</targetJdk>
                 </configuration>
diff --git a/src/changes/changes.xml b/src/changes/changes.xml
index bb45840..30d7fbc 100644
--- a/src/changes/changes.xml
+++ b/src/changes/changes.xml
@@ -23,6 +23,12 @@
 
   <body>
     <release version="1.6.0" date="Not yet released, update from Java 6 to 7.">
+      <action issue="EMAIL-190" type="update" due-to="sgoeschl">
+        Fix broken JDK 1.9 build by updating "easymock" and other dependencies.
+      </action>
+      <action issue="EMAIL-183" type="update" due-to="Lukas Petrovicky, 
gitmotte">
+        Change from javax.mail:1.6.1 to jakarta.mail:1.6.4.
+      </action>
       <action issue="EMAIL-174" type="fix" due-to="Vegard Stuen">
         Upgrade javax.mail dependency to 1.6.1, so that i18n is supported for 
email addresses.
       </action>

Reply via email to