diff options
Diffstat (limited to 'tests/build.gradle')
-rw-r--r-- | tests/build.gradle | 24 |
1 files changed, 13 insertions, 11 deletions
diff --git a/tests/build.gradle b/tests/build.gradle index 3f4d6d8c61e..17d053aba7c 100644 --- a/tests/build.gradle +++ b/tests/build.gradle @@ -42,26 +42,28 @@ def pluginsForITs = [ ] dependencies { - testCompile 'org.sonarsource.orchestrator:sonar-orchestrator' - testCompile project(':server:sonar-qa-util') - testCompile project(':sonar-ws') + // please keep list ordered + // required version 23.0 for selenide testCompile 'com.google.guava:guava:23.0' + testCompile 'com.googlecode.json-simple:json-simple' + testCompile 'com.microsoft.sqlserver:mssql-jdbc' + testCompile 'com.oracle.jdbc:ojdbc8' + testCompile 'com.squareup.okhttp3:mockwebserver' testCompile 'junit:junit' + testCompile 'mysql:mysql-connector-java' testCompile 'org.assertj:assertj-core' testCompile 'org.assertj:assertj-guava' - testCompile 'com.googlecode.json-simple:json-simple' - testCompile 'org.skyscreamer:jsonassert:1.2.0' - testCompile 'com.squareup.okhttp3:mockwebserver' - testCompile 'org.subethamail:subethasmtp' + testCompile "org.eclipse.jetty:jetty-proxy:${jettyVersion}" testCompile "org.eclipse.jetty:jetty-server:${jettyVersion}" testCompile "org.eclipse.jetty:jetty-servlet:${jettyVersion}" - testCompile "org.eclipse.jetty:jetty-proxy:${jettyVersion}" testCompile "org.jboss.byteman:byteman-submit:${bytemanVersion}" - testCompile 'com.microsoft.sqlserver:mssql-jdbc' - testCompile 'mysql:mysql-connector-java' testCompile 'org.postgresql:postgresql' - testCompile 'com.oracle.jdbc:ojdbc8' + testCompile 'org.skyscreamer:jsonassert:1.2.0' + testCompile 'org.sonarsource.orchestrator:sonar-orchestrator' + testCompile 'org.subethamail:subethasmtp' + testCompile project(':server:sonar-qa-util') + testCompile project(':sonar-ws') includeInTestResources "org.jboss.byteman:byteman:${bytemanVersion}" } |