Included missing Xalan dependencies
diff --git a/README.md b/README.md
index d6d2e17..1913d32 100644
--- a/README.md
+++ b/README.md
@@ -39,7 +39,6 @@
```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>