diff options
Diffstat (limited to 'pom.xml')
-rw-r--r-- | pom.xml | 21 |
1 files changed, 20 insertions, 1 deletions
@@ -377,7 +377,13 @@ limitations under the License. <artifactId>cambriaClient</artifactId> <version>0.0.1</version> </dependency> + <dependency> + <groupId>com.mashape.unirest</groupId> + <artifactId>unirest-java</artifactId> + <version>1.4.9</version> + </dependency> + <!-- MISCELLANEOUS --> <dependency> <groupId>commons-collections</groupId> <artifactId>commons-collections</artifactId> @@ -414,7 +420,8 @@ limitations under the License. </dependency> <dependency> <groupId>org.springframework.boot</groupId> - <artifactId>spring-boot-starter-log4j2</artifactId> + <artifactId>spring-boot-starter-log4j</artifactId> + <version>1.3.8.RELEASE</version> </dependency> <!-- TESTING --> @@ -436,6 +443,18 @@ limitations under the License. <version>3.8.0</version> <scope>test</scope> </dependency> + <dependency> + <groupId>com.google.jimfs</groupId> + <artifactId>jimfs</artifactId> + <version>1.1</version> + <scope>test</scope> + </dependency> + <dependency> + <groupId>com.github.tomakehurst</groupId> + <artifactId>wiremock-standalone</artifactId> + <version>2.17.0</version> + <scope>test</scope> + </dependency> </dependencies> <repositories> |