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

ddekany pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/freemarker-docgen.git


The following commit(s) were added to refs/heads/master by this push:
     new a7ff295  Included missing Xalan dependencies
a7ff295 is described below

commit a7ff2950f65a34bb5386d6fe65b5c8405a541111
Author: ddekany <ddek...@apache.org>
AuthorDate: Tue Jun 4 20:48:21 2024 +0200

    Included missing Xalan dependencies
---
 README.md                      |  1 -
 freemarker-docgen-core/pom.xml | 16 +++++++++++++++-
 pom.xml                        |  2 +-
 3 files changed, 16 insertions(+), 3 deletions(-)

diff --git a/README.md b/README.md
index d6d2e17..1913d32 100644
--- a/README.md
+++ b/README.md
@@ -39,7 +39,6 @@ To build, ensure that `npm` (from Node.js) is in the path, 
then in the top proje
    ```mvn install```
 
 
-
 ### Node.js troubleshooting
 
 Possible node.js related problems and solutions:
diff --git a/freemarker-docgen-core/pom.xml b/freemarker-docgen-core/pom.xml
index 2347508..7245ac6 100644
--- a/freemarker-docgen-core/pom.xml
+++ b/freemarker-docgen-core/pom.xml
@@ -92,7 +92,7 @@
             </exclusions>
         </dependency>
         <dependency>
-            <!-- Needed on Java 9+ -->
+            <!-- xalan:xalan is needed on Java 9+ -->
             <groupId>xalan</groupId>
             <artifactId>xalan</artifactId>
             <version>2.7.3</version>
@@ -102,6 +102,20 @@
                     <artifactId>xml-apis</artifactId>
                 </exclusion>
             </exclusions>
+
+        </dependency>
+        <dependency>
+            <!-- Needed for xalan:xalan:2.7.3, as its pom.xml is wrong 
(XALANJ-2649) -->
+            <groupId>xalan</groupId>
+            <artifactId>serializer</artifactId>
+            <version>2.7.3</version>
+        </dependency>
+        <dependency>
+            <!-- Needed for xalan:xalan:2.7.3, as its pom.xml is wrong 
(XALANJ-2649) -->
+            <groupId>xerces</groupId>
+            <artifactId>xercesImpl</artifactId>
+            <version>2.12.2</version>
+            <optional>true</optional>
         </dependency>
         <dependency>
             <groupId>commons-io</groupId>
diff --git a/pom.xml b/pom.xml
index f3e3eb9..c0b710d 100644
--- a/pom.xml
+++ b/pom.xml
@@ -44,7 +44,7 @@
         <maven.compiler.source>8</maven.compiler.source>
         <maven.compiler.target>8</maven.compiler.target>
         <!-- This is updated by the release plugin. This is for Reproducible 
Builds. -->
-        
<project.build.outputTimestamp>2020-07-19T21:32:41Z</project.build.outputTimestamp>
+        
<project.build.outputTimestamp>2024-06-04T20:40:40Z</project.build.outputTimestamp>
     </properties>
 
     <modules>

Reply via email to