diff options
author | Simon Brandhof <simon.brandhof@sonarsource.com> | 2018-03-14 17:05:59 +0100 |
---|---|---|
committer | Simon Brandhof <simon.brandhof@sonarsource.com> | 2018-03-15 09:42:29 +0100 |
commit | 8ab2074c40707cec61b1fecbdf7eb6a23881161c (patch) | |
tree | de5e680bf242a3e27ba2af99d8cbf12f3e1ccdd0 /tests | |
parent | e603fbccef66a481ed9152aaa48a0b05a12fde0f (diff) | |
download | sonarqube-8ab2074c40707cec61b1fecbdf7eb6a23881161c.tar.gz sonarqube-8ab2074c40707cec61b1fecbdf7eb6a23881161c.zip |
Fix Gradle hack to resolve Jetty dependency
by upgrading Jetty
Diffstat (limited to 'tests')
-rw-r--r-- | tests/build.gradle | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/build.gradle b/tests/build.gradle index ca8a491738a..b83f411dac9 100644 --- a/tests/build.gradle +++ b/tests/build.gradle @@ -54,9 +54,9 @@ dependencies { testCompile 'mysql:mysql-connector-java' testCompile 'org.assertj:assertj-core' testCompile 'org.assertj:assertj-guava' - 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' + testCompile 'org.eclipse.jetty:jetty-server' + testCompile 'org.eclipse.jetty:jetty-servlet' testCompile "org.jboss.byteman:byteman-submit:${bytemanVersion}" testCompile 'org.postgresql:postgresql' testCompile 'org.skyscreamer:jsonassert:1.2.0' |