Build: add hamcrest and securemock to version.properties
This commit is contained in:
parent
05e26a46d7
commit
a461dd84d2
|
@ -17,3 +17,5 @@ httpclient = 4.5.2
|
||||||
httpcore = 4.4.4
|
httpcore = 4.4.4
|
||||||
commonslogging = 1.1.3
|
commonslogging = 1.1.3
|
||||||
commonscodec = 1.10
|
commonscodec = 1.10
|
||||||
|
hamcrest = 1.3
|
||||||
|
securemock = 1.2
|
|
@ -35,11 +35,11 @@ dependencies {
|
||||||
|
|
||||||
testCompile "com.carrotsearch.randomizedtesting:randomizedtesting-runner:${versions.randomizedrunner}"
|
testCompile "com.carrotsearch.randomizedtesting:randomizedtesting-runner:${versions.randomizedrunner}"
|
||||||
testCompile "junit:junit:${versions.junit}"
|
testCompile "junit:junit:${versions.junit}"
|
||||||
testCompile "org.hamcrest:hamcrest-all:1.3"
|
testCompile "org.hamcrest:hamcrest-all:${versions.hamcrest}"
|
||||||
testCompile "org.apache.lucene:lucene-test-framework:${versions.lucene}"
|
testCompile "org.apache.lucene:lucene-test-framework:${versions.lucene}"
|
||||||
testCompile "org.apache.lucene:lucene-core:${versions.lucene}"
|
testCompile "org.apache.lucene:lucene-core:${versions.lucene}"
|
||||||
testCompile "org.apache.lucene:lucene-codecs:${versions.lucene}"
|
testCompile "org.apache.lucene:lucene-codecs:${versions.lucene}"
|
||||||
testCompile "org.elasticsearch:securemock:1.2"
|
testCompile "org.elasticsearch:securemock:${versions.securemock}"
|
||||||
}
|
}
|
||||||
|
|
||||||
//TODO compiling from 1.8 with target 1.7 and source 1.7 is best effort, not enough to ensure we are java 7 compatible
|
//TODO compiling from 1.8 with target 1.7 and source 1.7 is best effort, not enough to ensure we are java 7 compatible
|
||||||
|
|
|
@ -33,11 +33,11 @@ dependencies {
|
||||||
|
|
||||||
testCompile "com.carrotsearch.randomizedtesting:randomizedtesting-runner:${versions.randomizedrunner}"
|
testCompile "com.carrotsearch.randomizedtesting:randomizedtesting-runner:${versions.randomizedrunner}"
|
||||||
testCompile "junit:junit:${versions.junit}"
|
testCompile "junit:junit:${versions.junit}"
|
||||||
testCompile "org.hamcrest:hamcrest-all:1.3"
|
testCompile "org.hamcrest:hamcrest-all:${versions.hamcrest}"
|
||||||
testCompile "org.apache.lucene:lucene-test-framework:${versions.lucene}"
|
testCompile "org.apache.lucene:lucene-test-framework:${versions.lucene}"
|
||||||
testCompile "org.apache.lucene:lucene-core:${versions.lucene}"
|
testCompile "org.apache.lucene:lucene-core:${versions.lucene}"
|
||||||
testCompile "org.apache.lucene:lucene-codecs:${versions.lucene}"
|
testCompile "org.apache.lucene:lucene-codecs:${versions.lucene}"
|
||||||
testCompile "org.elasticsearch:securemock:1.2"
|
testCompile "org.elasticsearch:securemock:${versions.securemock}"
|
||||||
}
|
}
|
||||||
|
|
||||||
//TODO compiling from 1.8 with target 1.7 and source 1.7 is best effort, not enough to ensure we are java 7 compatible
|
//TODO compiling from 1.8 with target 1.7 and source 1.7 is best effort, not enough to ensure we are java 7 compatible
|
||||||
|
|
|
@ -23,7 +23,7 @@ dependencies {
|
||||||
compile "org.elasticsearch:elasticsearch:${version}"
|
compile "org.elasticsearch:elasticsearch:${version}"
|
||||||
compile "com.carrotsearch.randomizedtesting:randomizedtesting-runner:${versions.randomizedrunner}"
|
compile "com.carrotsearch.randomizedtesting:randomizedtesting-runner:${versions.randomizedrunner}"
|
||||||
compile "junit:junit:${versions.junit}"
|
compile "junit:junit:${versions.junit}"
|
||||||
compile "org.hamcrest:hamcrest-all:1.3"
|
compile "org.hamcrest:hamcrest-all:${versions.hamcrest}"
|
||||||
compile "org.apache.lucene:lucene-test-framework:${versions.lucene}"
|
compile "org.apache.lucene:lucene-test-framework:${versions.lucene}"
|
||||||
compile "org.apache.lucene:lucene-codecs:${versions.lucene}"
|
compile "org.apache.lucene:lucene-codecs:${versions.lucene}"
|
||||||
compile "org.elasticsearch:client:${version}"
|
compile "org.elasticsearch:client:${version}"
|
||||||
|
@ -31,7 +31,7 @@ dependencies {
|
||||||
compile "org.apache.httpcomponents:httpcore:${versions.httpcore}"
|
compile "org.apache.httpcomponents:httpcore:${versions.httpcore}"
|
||||||
compile "commons-logging:commons-logging:${versions.commonslogging}"
|
compile "commons-logging:commons-logging:${versions.commonslogging}"
|
||||||
compile "commons-codec:commons-codec:${versions.commonscodec}"
|
compile "commons-codec:commons-codec:${versions.commonscodec}"
|
||||||
compile "org.elasticsearch:securemock:1.2"
|
compile "org.elasticsearch:securemock:${versions.securemock}"
|
||||||
}
|
}
|
||||||
|
|
||||||
compileJava.options.compilerArgs << '-Xlint:-cast,-rawtypes,-try,-unchecked'
|
compileJava.options.compilerArgs << '-Xlint:-cast,-rawtypes,-try,-unchecked'
|
||||||
|
|
Loading…
Reference in New Issue