diff options
author | Simon Rettberg | 2023-05-09 18:36:11 +0200 |
---|---|---|
committer | Simon Rettberg | 2023-05-09 18:36:11 +0200 |
commit | 0dce8ae8e7a50df82355450adcc596d7a1c11f5f (patch) | |
tree | 2d753e6736b14486e6174bcb70a0d0a8b028e2af | |
parent | Fix formatting (diff) | |
download | master-sync-shared-0dce8ae8e7a50df82355450adcc596d7a1c11f5f.tar.gz master-sync-shared-0dce8ae8e7a50df82355450adcc596d7a1c11f5f.tar.xz master-sync-shared-0dce8ae8e7a50df82355450adcc596d7a1c11f5f.zip |
pom: fix compilation with latest xalan
-rw-r--r-- | pom.xml | 13 |
1 files changed, 9 insertions, 4 deletions
@@ -80,7 +80,6 @@ </plugin> <plugin> <artifactId>maven-assembly-plugin</artifactId> - <version>2.2.2</version> <executions> <execution> <phase>package</phase> @@ -209,13 +208,19 @@ <dependency> <groupId>commons-io</groupId> <artifactId>commons-io</artifactId> - <version>[2.0,3.0)</version> + <version>[2.0,2.999.999]</version> <scope>compile</scope> </dependency> <dependency> <groupId>xalan</groupId> <artifactId>xalan</artifactId> - <version>[2.0,3.0)</version> + <version>[2.0,2.999.999]</version> + <scope>compile</scope> + </dependency> + <dependency> + <groupId>xalan</groupId> + <artifactId>serializer</artifactId> + <version>[2.0,2.999.999]</version> <scope>compile</scope> </dependency> <dependency> @@ -227,7 +232,7 @@ <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-compress</artifactId> - <version>[1.21,2.0)</version> + <version>[1.21,1.999.999]</version> <scope>compile</scope> </dependency> </dependencies> |