Skip to content

Commit 156752d

Browse files
committed
build.gradle: update httpclient
1 parent f438266 commit 156752d

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

build.gradle

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ def pluginDescription = 'Plugin to enable HTTP basic authentication and/or Ip ba
99
def pluginClassname = 'com.asquera.elasticsearch.plugins.http.HttpBasicServerPlugin'
1010
def pluginName = 'elasticsearch-http-basic'
1111
def elasticVersion = '2.4.4'
12+
def httpclientVersion = '4.5.3'
1213

1314
jar {
1415
jar.baseName = "elasticsearch-http-basic"
@@ -43,13 +44,10 @@ dependencies {
4344
compile("org.elasticsearch:elasticsearch:$elasticVersion")
4445

4546
// httpclient
46-
compile("org.apache.httpcomponents:httpclient:4.5.2")
47-
48-
// stuff
49-
compile("com.carrotsearch.randomizedtesting:randomizedtesting-runner:2.3.4")
47+
compile("org.apache.httpcomponents:httpclient:$httpclientVersion")
5048

5149
//test
52-
testCompile(group: 'junit', name: 'junit', version: '4.+') { exclude group: 'org.hamcrest', module: 'hamcrest-core' }
50+
testCompile(group: 'junit', name: 'junit', version: '4.+') { exclude group: 'org.hamcrest', module: 'hamcrest-core' }
5351
testCompile(group: 'org.elasticsearch', name: 'elasticsearch', version: '2.3.5', classifier: 'tests')
5452
testCompile(group: 'org.hamcrest', name: 'hamcrest-all', version: '1.3')
5553
testCompile(group: 'org.apache.lucene', name: 'lucene-test-framework', version: '5.5.0')

0 commit comments

Comments
 (0)