forked from elastic/elasticsearch
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
55532c8
commit f46ca9b
Showing
5 changed files
with
389 additions
and
94 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -90,4 +90,6 @@ interface RemoteClusterShardRequest extends IndicesRequest { | |
*/ | ||
Collection<ShardId> shards(); | ||
} | ||
|
||
|
||
} |
60 changes: 38 additions & 22 deletions
60
x-pack/plugin/security/qa/consistency-checks/build.gradle
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,43 @@ | ||
apply plugin: 'elasticsearch.standalone-test' | ||
|
||
dependencies { | ||
//since we are placing everything on the classpath for this test we need to force versions to converge or simply ignore them | ||
configurations.all { | ||
resolutionStrategy { | ||
force "org.slf4j:slf4j-api:2.0.10" | ||
force "commons-codec:commons-codec:1.16.1" | ||
force "org.slf4j:slf4j-nop:2.0.10" | ||
force "org.apache.commons:commons-lang3:3.14.0" | ||
force "com.fasterxml.jackson.core:jackson-databind:2.15.0" | ||
force "com.fasterxml.jackson.core:jackson-core:2.15.4" | ||
force "com.fasterxml.jackson.core:jackson-annotations:2.15.4" | ||
force "joda-time:joda-time:2.10.14" | ||
force "org.ow2.asm:asm:8.0.1" | ||
force "com.sun.mail:jakarta.mail:1.6.4" | ||
|
||
exclude group: 'commons-logging', module: 'commons-logging' | ||
exclude group: 'jakarta.xml.bind', module: 'jakarta.xml.bind-api' | ||
exclude group: 'jakarta.activation', module: 'jakarta.activation-api' | ||
} | ||
} | ||
|
||
|
||
dependencies { | ||
testImplementation "org.reflections:reflections:0.10.2" | ||
testImplementation "org.javassist:javassist:3.30.2-GA" | ||
testImplementation(testArtifact(project(xpackModule('core')))) | ||
testImplementation project(path: ':modules:ingest-common') | ||
testImplementation project(path: ':modules:data-streams') | ||
testImplementation project(path: ':modules:lang-mustache') | ||
testImplementation project(path: ':modules:rank-eval') | ||
testImplementation project(path: ':modules:reindex') | ||
testImplementation project(path: xpackModule('analytics')) | ||
testImplementation project(path: xpackModule('async-search')) | ||
testImplementation project(path: xpackModule('autoscaling')) | ||
testImplementation project(path: xpackModule('ccr')) | ||
testImplementation project(path: xpackModule('downsample')) | ||
testImplementation project(path: xpackModule('eql')) | ||
testImplementation project(path: xpackModule('esql')) | ||
testImplementation project(path: xpackModule('esql-core')) | ||
testImplementation project(path: xpackModule('frozen-indices')) | ||
testImplementation project(path: xpackModule('graph')) | ||
testImplementation project(path: xpackModule('ilm')) | ||
testImplementation project(path: xpackModule('inference')) | ||
testImplementation project(path: xpackModule('profiling')) | ||
testImplementation project(path: xpackModule('rollup')) | ||
testImplementation project(path: xpackModule('slm')) | ||
testImplementation project(path: xpackModule('sql')) | ||
|
||
project.rootProject.subprojects.findAll { it.parent.path == ':modules' }.each { Project module -> | ||
testImplementation module | ||
} | ||
|
||
Project xpack = project(':x-pack:plugin') | ||
xpack.subprojects.findAll { it.parent == xpack }.each { Project xpackModule -> | ||
testImplementation xpackModule | ||
} | ||
|
||
} | ||
|
||
tasks.named("test").configure { | ||
systemProperty 'tests.security.manager', 'false' | ||
//TODO: add system property for registry debug | ||
} |
Oops, something went wrong.