build.gradle.kts 458 B

123456789101112131415
  1. plugins {
  2. id("otel.java-conventions")
  3. }
  4. // liberty jars are not available as a maven dependency so we provide stripped
  5. // down versions of liberty classes that we can use from integration code without
  6. // having to do everything with reflection
  7. // disable checkstyle
  8. // Abbreviation in name 'getRequestURI' must contain no more than '2' consecutive capital letters. [AbbreviationAsWordInName]
  9. tasks {
  10. named("checkstyleMain") {
  11. enabled = false
  12. }
  13. }