This is an automated email from the ASF dual-hosted git repository. markt pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/tomcat-jakartaee-migration.git
The following commit(s) were added to refs/heads/main by this push: new 06be683 Fix line length after #50. Add #50 to change log. 06be683 is described below commit 06be6830f4b9eba304bbaf7136ddc0af263f4096 Author: Mark Thomas <ma...@apache.org> AuthorDate: Fri Nov 17 09:54:45 2023 +0000 Fix line length after #50. Add #50 to change log. --- CHANGES.md | 4 ++++ src/main/java/org/apache/tomcat/jakartaee/Migration.java | 3 ++- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/CHANGES.md b/CHANGES.md index b071d4c..34d67ad 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,5 +1,9 @@ # Tomcat Migration Tool for Jakarta EE - Changelog +## 1.0.8 +- Include `.ear` files in list of recognised archives. PR[#50](https://github.com/apache/tomcat-jakartaee-migration/pull/50) provided by Sammy Chu. (markt) + + ## 1.0.7 - When converting directories, rename files according to the chosen profile. (fschumacher) diff --git a/src/main/java/org/apache/tomcat/jakartaee/Migration.java b/src/main/java/org/apache/tomcat/jakartaee/Migration.java index 9cb8b1d..3f7d168 100644 --- a/src/main/java/org/apache/tomcat/jakartaee/Migration.java +++ b/src/main/java/org/apache/tomcat/jakartaee/Migration.java @@ -413,7 +413,8 @@ public class Migration { } private boolean isArchive(String fileName) { - return fileName.endsWith(".jar") || fileName.endsWith(".war") || fileName.endsWith(".ear") || fileName.endsWith(".zip"); + return fileName.endsWith(".jar") || fileName.endsWith(".war") || fileName.endsWith(".ear") || + fileName.endsWith(".zip"); } --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org