2016-03-10 10:19:12 -05:00
|
|
|
apply plugin: 'elasticsearch.rest-test'
|
|
|
|
|
|
|
|
/* This project runs the core REST tests against a 2 node cluster where one of the nodes has a different minor.
|
2016-12-10 15:09:26 -05:00
|
|
|
* Since we don't have a version to test against we currently use the hardcoded snapshot for to basically run
|
|
|
|
* against ourselves. To test that using a different version go to distribution/zip and execute:
|
|
|
|
* gradle clean publishToMavenLocal -Dbuild.snapshot=false
|
2016-03-10 10:19:12 -05:00
|
|
|
*
|
|
|
|
* This installs the release-build into a local .m2 repository, then change this version here to:
|
|
|
|
* bwcVersion = "5.0.0"
|
|
|
|
*
|
|
|
|
* now you can run the bwc tests with:
|
|
|
|
* gradle check -Drepos.mavenlocal=true
|
|
|
|
*
|
2016-12-10 15:09:26 -05:00
|
|
|
* (-Drepos.mavenlocal=true will force gradle to look for the zip distribution in the local .m2 repository)
|
2016-03-10 10:19:12 -05:00
|
|
|
*/
|
|
|
|
integTest {
|
|
|
|
includePackaged = true
|
|
|
|
cluster {
|
2016-12-19 07:08:24 -05:00
|
|
|
numNodes = 4
|
|
|
|
numBwcNodes = 2
|
|
|
|
bwcVersion = "5.2.0-SNAPSHOT"
|
2016-11-07 16:18:24 -05:00
|
|
|
setting 'logger.org.elasticsearch', 'DEBUG'
|
2016-03-10 10:19:12 -05:00
|
|
|
}
|
|
|
|
}
|
2016-11-14 08:26:49 -05:00
|
|
|
|
|
|
|
repositories {
|
|
|
|
maven {
|
|
|
|
url "https://oss.sonatype.org/content/repositories/snapshots/"
|
|
|
|
}
|
|
|
|
}
|