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 6465822 Add support for .groovy files to the text converter
6465822 is described below
commit 6465822873b3215cabc4a922e8444c4a960d7761
Author: Mark Thomas <[email protected]>
AuthorDate: Fri May 14 16:30:16 2021 +0100
Add support for .groovy files to the text converter
---
CHANGES.md | 1 +
src/main/java/org/apache/tomcat/jakartaee/TextConverter.java | 1 +
2 files changed, 2 insertions(+)
diff --git a/CHANGES.md b/CHANGES.md
index 6e3beef..d3de81b 100644
--- a/CHANGES.md
+++ b/CHANGES.md
@@ -1,6 +1,7 @@
# Tomcat Migration Tool for Jakarta EE - Changelog
## 1.0.1 (in progress)
+- Fix [#19](https://github.com/apache/tomcat-jakartaee-migration/issues/19).
Add support for converting `.groovy` files.
- Fix [#20](https://github.com/apache/tomcat-jakartaee-migration/issues/20) by
using commons-compression instead of the Java zip code (remm)
- Remove deprecated `-verbose` command line option (remm)
diff --git a/src/main/java/org/apache/tomcat/jakartaee/TextConverter.java
b/src/main/java/org/apache/tomcat/jakartaee/TextConverter.java
index b3c7857..80036ba 100644
--- a/src/main/java/org/apache/tomcat/jakartaee/TextConverter.java
+++ b/src/main/java/org/apache/tomcat/jakartaee/TextConverter.java
@@ -45,6 +45,7 @@ public class TextConverter implements Converter {
supportedExtensions.add("xml");
supportedExtensions.add("json");
supportedExtensions.add("properties");
+ supportedExtensions.add("groovy");
}
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]