diff options
author | Simon Brandhof <simon.brandhof@sonarsource.com> | 2016-07-20 22:17:16 +0200 |
---|---|---|
committer | Simon Brandhof <simon.brandhof@sonarsource.com> | 2016-07-24 20:39:36 +0200 |
commit | ea220db926b379040128da5683e5a2223c7bdab1 (patch) | |
tree | 07a37ceac85300c8643b8bebfbe72be297919459 /it/it-tests/pom.xml | |
parent | 784b8e543c4236d0df5e416013d1559140b3f0d1 (diff) | |
download | sonarqube-ea220db926b379040128da5683e5a2223c7bdab1.tar.gz sonarqube-ea220db926b379040128da5683e5a2223c7bdab1.zip |
Ability to use selenide and phantomjs in ITs
* selenide should replace Selenese HTML tests
* phantomjs should replace Firefox in environments
that require XVFB
Diffstat (limited to 'it/it-tests/pom.xml')
-rw-r--r-- | it/it-tests/pom.xml | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/it/it-tests/pom.xml b/it/it-tests/pom.xml index c70e2d7d1b8..f13d10e223c 100644 --- a/it/it-tests/pom.xml +++ b/it/it-tests/pom.xml @@ -45,6 +45,12 @@ <scope>provided</scope> </dependency> <dependency> + <groupId>com.codeborne</groupId> + <artifactId>selenide</artifactId> + <version>3.7</version> + <scope>test</scope> + </dependency> + <dependency> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> <version>18.0</version> @@ -116,7 +122,9 @@ <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <configuration> - <argLine>-Xmx128m -Dsonar.runtimeVersion=${project.version} -Dmaven.localRepository=${settings.localRepository}</argLine> + <argLine>-Xmx128m -Dsonar.runtimeVersion=${project.version} + -Dmaven.localRepository=${settings.localRepository} + </argLine> <skipTests>${skipIts}</skipTests> <includes> <include>*/${category}Suite.java</include> |