build.gradle 1.4 KB

123456789101112131415161718192021222324252627282930
  1. /*
  2. * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
  3. * or more contributor license agreements. Licensed under the Elastic License
  4. * 2.0 and the Server Side Public License, v 1; you may not use this file except
  5. * in compliance with, at your election, the Elastic License 2.0 or the Server
  6. * Side Public License, v 1.
  7. */
  8. apply plugin: 'elasticsearch.validate-rest-spec'
  9. apply plugin: 'elasticsearch.internal-yaml-rest-test'
  10. apply plugin: 'elasticsearch.yaml-rest-compat-test'
  11. esplugin {
  12. description 'Module for runtime fields features and extensions that have large dependencies'
  13. classname 'org.elasticsearch.runtimefields.RuntimeFieldsCommonPlugin'
  14. extendedPlugins = ['lang-painless']
  15. }
  16. dependencies {
  17. compileOnly project(':modules:lang-painless:spi')
  18. api project(':libs:elasticsearch-grok')
  19. api project(':libs:elasticsearch-dissect')
  20. }
  21. tasks.named("yamlRestTestV7CompatTransform").configure { task ->
  22. task.skipTest("runtime_fields/100_geo_point/fetch fields from source", "Format changed. Old format was a bug.")
  23. task.skipTest("runtime_fields/101_geo_point_from_source/fetch fields from source", "Format changed. Old format was a bug.")
  24. task.skipTest("runtime_fields/102_geo_point_source_in_query/fetch fields from source", "Format changed. Old format was a bug.")
  25. task.skipTest("runtime_fields/103_geo_point_calculated_at_index/fetch fields from source", "Format changed. Old format was a bug.")
  26. }