diff options
Diffstat (limited to 'prh-commons/pom.xml')
-rw-r--r-- | prh-commons/pom.xml | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/prh-commons/pom.xml b/prh-commons/pom.xml index 00f72475..40ad85f5 100644 --- a/prh-commons/pom.xml +++ b/prh-commons/pom.xml @@ -28,6 +28,14 @@ <groupId>org.immutables</groupId> <artifactId>gson</artifactId> </dependency> + <dependency> + <groupId>org.apache.httpcomponents</groupId> + <artifactId>httpclient</artifactId> + </dependency> + <dependency> + <groupId>org.apache.commons</groupId> + <artifactId>commons-lang3</artifactId> + </dependency> <!-- TEST DEPENDENCIES--> <dependency> @@ -40,5 +48,24 @@ <artifactId>junit-jupiter-engine</artifactId> <scope>test</scope> </dependency> + <dependency> + <groupId>org.mockito</groupId> + <artifactId>mockito-core</artifactId> + <scope>test</scope> + </dependency> + + <!-- LOGGING DEPENDENCIES--> + <dependency> + <groupId>ch.qos.logback</groupId> + <artifactId>logback-classic</artifactId> + </dependency> + <dependency> + <groupId>org.slf4j</groupId> + <artifactId>jul-to-slf4j</artifactId> + </dependency> + <dependency> + <groupId>org.slf4j</groupId> + <artifactId>log4j-over-slf4j</artifactId> + </dependency> </dependencies> </project>
\ No newline at end of file |