diff options
author | Martin Stockhammer <martin_s@apache.org> | 2018-05-21 01:05:19 +0200 |
---|---|---|
committer | Martin Stockhammer <martin_s@apache.org> | 2018-05-21 01:05:19 +0200 |
commit | 6ae9703f1d162676d437f25c2f307aeb2af09937 (patch) | |
tree | cdf91af2f083128b079784fbae9694175bb13d95 /archiva-modules/archiva-web/archiva-webapp-test | |
parent | 128bd5464c5a701cc7f89390789c19fc1a4d2242 (diff) | |
download | archiva-6ae9703f1d162676d437f25c2f307aeb2af09937.tar.gz archiva-6ae9703f1d162676d437f25c2f307aeb2af09937.zip |
Modifying dependencies to fix webui test failures
There is a guava compatibility problem with the selenium test
Removing the dependencies that came with the new cassandra version
Diffstat (limited to 'archiva-modules/archiva-web/archiva-webapp-test')
-rw-r--r-- | archiva-modules/archiva-web/archiva-webapp-test/pom.xml | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/archiva-modules/archiva-web/archiva-webapp-test/pom.xml b/archiva-modules/archiva-web/archiva-webapp-test/pom.xml index 6c51eff1d..c826475be 100644 --- a/archiva-modules/archiva-web/archiva-webapp-test/pom.xml +++ b/archiva-modules/archiva-web/archiva-webapp-test/pom.xml @@ -75,7 +75,6 @@ <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> <version>22.0</version> - <scope>test</scope> </dependency> <!-- Selenium dependencies --> @@ -576,6 +575,11 @@ <artifactId>mail</artifactId> <version>${javaxMailVersion}</version> </dependency> + <dependency> + <groupId>com.google.guava</groupId> + <artifactId>guava</artifactId> + <version>22.0</version> + </dependency> </dependencies> <executions> @@ -617,6 +621,14 @@ <name>org.apache.jackrabbit.core.state.validatehierarchy</name> <value>true</value> </systemProperty> + <systemProperty> + <name>org.apache.logging.log4j.simplelog.StatusLogger.level</name> + <value>TRACE</value> + </systemProperty> + <systemProperty> + <name>log4j.configurationFile</name> + <value>${project.build.directory}/test-classes/log4j2-test.xml</value> + </systemProperty> </systemProperties> </configuration> </execution> |