scabbard icon indicating copy to clipboard operation
scabbard copied to clipboard

Build failed after Scrabbard gradle plugin setup

Open GreyLabsDev opened this issue 4 years ago • 2 comments

All builds failed with this error: Execution failed for task ':app:kaptDebugKotlin'.

My build.gradle (application)

apply plugin: "scabbard.gradle"

android {
   ///
   scabbard {
       enabled true
   }
}

My build.gradle (root)

buildscript {
    repositories {
        google()
        jcenter()
        mavenCentral()
        maven {
            url "https://plugins.gradle.org/m2/"
        }
    }
    ///
    dependencies {
        classpath "gradle.plugin.dev.arunkumar:scabbard-gradle-plugin:0.4.0"
    }
}

GreyLabsDev avatar Jan 13 '21 11:01 GreyLabsDev

Hello could you please help in attaching the full stack trace of the error?

arunkumar9t2 avatar Jan 17 '21 18:01 arunkumar9t2

I have also encountered the same issue

plugins {
    id("scabbard.gradle") version "0.5.0"
}
scabbard {
    enabled = true
    outputFormat = "svg"
}

and with stacktrace attached

scabbardKaptStackTrace.md

beForged avatar Jul 20 '21 21:07 beForged