diff options
author | Simon Rettberg | 2023-09-26 16:09:21 +0200 |
---|---|---|
committer | Simon Rettberg | 2023-09-26 16:09:21 +0200 |
commit | 4e2db72ebbd76dbd3a4b69f3a1d86198e3b4343a (patch) | |
tree | 54bb30023716e69a0b5cccf16e293bde0f74dc8d | |
parent | [DownloadText] Better handling of errors (diff) | |
download | tmlite-bwlp-4e2db72ebbd76dbd3a4b69f3a1d86198e3b4343a.tar.gz tmlite-bwlp-4e2db72ebbd76dbd3a4b69f3a1d86198e3b4343a.tar.xz tmlite-bwlp-4e2db72ebbd76dbd3a4b69f3a1d86198e3b4343a.zip |
maven: Don't use brainfucked open intervals for version ranges
See https://michakutz.medium.com/d4ba66ac654
-rw-r--r-- | pom.xml | 14 |
1 files changed, 7 insertions, 7 deletions
@@ -87,19 +87,19 @@ <dependency> <groupId>commons-io</groupId> <artifactId>commons-io</artifactId> - <version>[2.0,3.0)</version> + <version>[2.0,2.9999]</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-compress</artifactId> - <version>[1.0,2.0)</version> + <version>[1.0,1.9999]</version> <scope>compile</scope> </dependency> <dependency> <groupId>guru.nidi.com.kitfox</groupId> <artifactId>svgSalamander</artifactId> - <version>[1.0,2.0)</version> + <version>[1.0,1.9999]</version> <scope>compile</scope> </dependency> <dependency> @@ -111,25 +111,25 @@ <dependency> <groupId>com.github.mwiede</groupId> <artifactId>jsch</artifactId> - <version>[0.1,1.0)</version> + <version>[0.1,0.9999]</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.schwering</groupId> <artifactId>irclib</artifactId> - <version>[1.0,3.0)</version> + <version>[1.0,2.9999]</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.apache.logging.log4j</groupId> <artifactId>log4j-api</artifactId> - <version>[2.17,3.0)</version> + <version>[2.17,2.9999]</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.apache.logging.log4j</groupId> <artifactId>log4j-core</artifactId> - <version>[2.17,3.0)</version> + <version>[2.17,2.9999]</version> <scope>compile</scope> </dependency> </dependencies> |