diff options
author | Simon Rettberg | 2024-10-14 14:23:16 +0200 |
---|---|---|
committer | Simon Rettberg | 2024-10-14 14:23:16 +0200 |
commit | 68c4861d9df744e537c40a48c7e1b79dbb9746eb (patch) | |
tree | 84bd81a5dc69917a5ba4342d564bca62888b1736 | |
parent | install-https: Remove smime -verify, rather pointless (diff) | |
download | tmlite-bwlp-68c4861d9df744e537c40a48c7e1b79dbb9746eb.tar.gz tmlite-bwlp-68c4861d9df744e537c40a48c7e1b79dbb9746eb.tar.xz tmlite-bwlp-68c4861d9df744e537c40a48c7e1b79dbb9746eb.zip |
pom: Add xz-java as dependency
For *some reason*, commons-compress requires xz, but doesn't list it as
a dependency (anymore?), so you'll get funny "class not found" errors
during runtime. Apache projects...
-rw-r--r-- | pom.xml | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -97,6 +97,11 @@ <scope>compile</scope> </dependency> <dependency> + <groupId>org.tukaani</groupId> + <artifactId>xz</artifactId> + <version>[1.0,1.9999]</version> + </dependency> + <dependency> <groupId>com.formdev</groupId> <artifactId>svgSalamander</artifactId> <version>[1.0,1.9999]</version> |