Interface Finalizer.FailureReport

  • Enclosing class:
    Finalizer

    public static interface Finalizer.FailureReport
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      org.gradle.api.provider.Property<java.lang.String> getClickableSource()
      The sourceCode or the possible command that might fix the failure.
      org.gradle.api.provider.Property<java.lang.String> getErrorMessage()
      The full expanded errorMessage.
      org.gradle.api.provider.Property<java.lang.String> getHeader()
      The Header that will appear in the rendered CircleCi section.
    • Method Detail

      • getHeader

        @Input
        org.gradle.api.provider.Property<java.lang.String> getHeader()
        The Header that will appear in the rendered CircleCi section. e.g. `[:compileJava] Error: ';' expected`
      • getClickableSource

        @Input
        org.gradle.api.provider.Property<java.lang.String> getClickableSource()
        The sourceCode or the possible command that might fix the failure. This should be a clickable link that can be either searched for in Intelij or ran as a bash command. e.g. `./gradlew --write-locks` or `src/main/java/app/MyClass.java:80`
      • getErrorMessage

        @Input
        org.gradle.api.provider.Property<java.lang.String> getErrorMessage()
        The full expanded errorMessage.