Adding different guava dependency for webtests

Workaround to get the selenium tests running. Better would
be a solution that allows the new guava version for the complete
project.
This commit is contained in:
Martin Stockhammer 2017-08-20 20:52:59 +02:00
parent 83622e8dd1
commit 6cee4606ca

View File

@ -65,6 +65,19 @@
</exclusions>
</dependency>
<!--
jcr-oak currently needs guava 15.0 and selenium webdriver needs 22.0
This is a rather poor workaround here better would be a way to use
the higher version for all scopes.
TODO: Check what's necessary to get jcr oak running with 22.0
-->
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>22.0</version>
<scope>test</scope>
</dependency>
<!-- Selenium dependencies -->
<dependency>
<groupId>org.seleniumhq.selenium</groupId>