build.gradle 615 B

1234567891011121314151617
  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.java'
  9. dependencies {
  10. api 'org.ow2.asm:asm:9.2'
  11. api 'org.ow2.asm:asm-tree:9.2'
  12. api 'org.ow2.asm:asm-analysis:9.2'
  13. api "org.apache.logging.log4j:log4j-api:${versions.log4j}"
  14. testImplementation project(":test:framework")
  15. }