diff options
author | Simon Rettberg | 2023-09-26 16:08:50 +0200 |
---|---|---|
committer | Simon Rettberg | 2023-09-26 16:08:50 +0200 |
commit | 3b56a2f14b3de8c71eae5a33f4b47e401f262e08 (patch) | |
tree | 552f8fd929c9bd76e6e7f28174d6283eb7e68962 | |
parent | Simplify timed wait in SystemCommandTask (diff) | |
download | taskman-lite-3b56a2f14b3de8c71eae5a33f4b47e401f262e08.tar.gz taskman-lite-3b56a2f14b3de8c71eae5a33f4b47e401f262e08.tar.xz taskman-lite-3b56a2f14b3de8c71eae5a33f4b47e401f262e08.zip |
See https://michakutz.medium.com/d4ba66ac654
-rw-r--r-- | api/pom.xml | 6 | ||||
-rw-r--r-- | daemon/pom.xml | 4 |
2 files changed, 5 insertions, 5 deletions
diff --git a/api/pom.xml b/api/pom.xml index bce1f47..272f144 100644 --- a/api/pom.xml +++ b/api/pom.xml @@ -49,19 +49,19 @@ <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> <dependency> <groupId>com.google.code.gson</groupId> <artifactId>gson</artifactId> - <version>[2.0,3.0)</version> + <version>[2.0,2.9999]</version> <scope>compile</scope> </dependency> </dependencies> diff --git a/daemon/pom.xml b/daemon/pom.xml index a7297e4..62ae204 100644 --- a/daemon/pom.xml +++ b/daemon/pom.xml @@ -105,13 +105,13 @@ <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> |