Fix compilation in audit-tests

This commit fixes compilation in audit-tests which was broken after some
stray classes were moved out of plugin into specific plugin directories.

Original commit: elastic/x-pack-elasticsearch@8bfd8cfceb
This commit is contained in:
Jason Tedor 2018-01-22 06:00:23 -05:00
parent 0a1e352c5d
commit 928b6a6e04
2 changed files with 1 additions and 3 deletions

View File

@ -2,8 +2,7 @@ apply plugin: 'elasticsearch.standalone-rest-test'
apply plugin: 'elasticsearch.rest-test'
dependencies {
testCompile project(path: ':x-pack-elasticsearch:plugin:core', configuration: 'testArtifacts')
testCompile project(path: ':x-pack-elasticsearch:plugin', configuration: 'testArtifacts')
testCompile project(path: ':x-pack-elasticsearch:plugin:security', configuration: 'testArtifacts')
}
String outputDir = "generated-resources/${project.name}"

View File

@ -19,7 +19,6 @@ import org.elasticsearch.common.settings.Settings;
import org.elasticsearch.index.query.QueryBuilders;
import org.elasticsearch.plugins.Plugin;
import org.elasticsearch.test.ESIntegTestCase;
import org.elasticsearch.xpack.CompositeTestingXPackPlugin;
import org.elasticsearch.xpack.XPackClientPlugin;
import org.elasticsearch.xpack.security.SecurityField;
import org.elasticsearch.xpack.security.audit.index.IndexAuditTrail;