diff options
author | Manuel Bentele | 2021-12-16 09:43:32 +0100 |
---|---|---|
committer | Manuel Bentele | 2021-12-16 09:43:32 +0100 |
commit | c6b44cc2156d243c57f86c4160e99d1a5ff0770b (patch) | |
tree | d71e5f10fe1c2d25da11bc84630744f0720e3f9d | |
parent | Remove unused build dependency (diff) | |
download | tmlite-bwlp-c6b44cc2156d243c57f86c4160e99d1a5ff0770b.tar.gz tmlite-bwlp-c6b44cc2156d243c57f86c4160e99d1a5ff0770b.tar.xz tmlite-bwlp-c6b44cc2156d243c57f86c4160e99d1a5ff0770b.zip |
Update version of build dependencies
-rw-r--r-- | pom.xml | 19 |
1 files changed, 11 insertions, 8 deletions
@@ -88,35 +88,38 @@ <dependency> <groupId>commons-io</groupId> <artifactId>commons-io</artifactId> - <version>2.5</version> + <version>[2.0,3.0)</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-compress</artifactId> - <version>1.14</version> + <version>[1.0,2.0)</version> <scope>compile</scope> </dependency> <dependency> - <groupId>com.kitfox</groupId> - <artifactId>kitfox-svg-salamander</artifactId> - <version>1.0.8</version> + <groupId>guru.nidi.com.kitfox</groupId> + <artifactId>svgSalamander</artifactId> + <version>[1.0,2.0)</version> + <scope>compile</scope> </dependency> <dependency> <groupId>org.openslx.bwlp</groupId> <artifactId>master-sync-shared</artifactId> - <version>1.0-SNAPSHOT</version> + <version>1.1-SNAPSHOT</version> <scope>compile</scope> </dependency> <dependency> <groupId>com.github.mwiede</groupId> <artifactId>jsch</artifactId> - <version>0.1.62</version> + <version>[0.1,1.0)</version> + <scope>compile</scope> </dependency> <dependency> <groupId>org.schwering</groupId> <artifactId>irclib</artifactId> - <version>2.0.0.Alpha3</version> + <version>[1.0,3.0)</version> + <scope>compile</scope> </dependency> </dependencies> </project> |