Sha256: 304d337b0acac0c7ee3b220e11b2782500718c8cf82d66decf4aeca70daaf65b

Contents?: true

Size: 989 Bytes

Versions: 33

Compression:

Stored size: 989 Bytes

Contents

// Checkstyle
// @see https://docs.gradle.org/2.5/userguide/checkstyle_plugin.html
apply plugin: 'checkstyle'
checkstyle {
    ignoreFailures = true
    // @see https://github.com/facebook/presto/blob/master/src/checkstyle/checks.xml
    //configFile = rootProject.file('./checkstyle.xml') // default {project.projectDir}/config/checkstyle/checkstyle.xml
}

// FindBugs
// @see https://docs.gradle.org/2.5/userguide/findbugs_plugin.html
apply plugin: 'findbugs'
findbugs {
    ignoreFailures = true
}

// PMD
// @see https://docs.gradle.org/2.5/userguide/pmd_plugin.html
apply plugin: 'pmd'
tasks.withType(Pmd) {
    ignoreFailures = true
    reports.html.enabled true
}

// JaCoCo
// @see https://docs.gradle.org/2.5/userguide/jacoco_plugin.html
apply plugin: 'jacoco'
jacocoTestReport { // will use td-client v0.6.x
    afterEvaluate {
        classDirectories = files(classDirectories.files.collect {
            fileTree(dir: it, exclude: 'com/treasuredata/api/**')
        })
    }
}

Version data entries

33 entries across 33 versions & 2 rubygems

Version Path
embulk-output-td-0.5.3 gradle/check.gradle
embulk-output-td-0.5.2 gradle/check.gradle
embulk-output-td-0.5.1 gradle/check.gradle
embulk-output-td-0.5.0 gradle/check.gradle
embulk-output-td-0.4.2 gradle/check.gradle
embulk-output-td-0.4.1 gradle/check.gradle
embulk-output-td-0.4.0 gradle/check.gradle
embulk-output-td-0.3.15 gradle/check.gradle
embulk-output-td-0.3.14 gradle/check.gradle
embulk-output-td-0.3.13 gradle/check.gradle
embulk-output-td-0.3.12 gradle/check.gradle
embulk-output-td-0.3.11 gradle/check.gradle
embulk-output-td-0.3.10 gradle/check.gradle
embulk-output-td-0.3.9 gradle/check.gradle
embulk-output-td-0.3.8 gradle/check.gradle
embulk-output-td-0.3.7 gradle/check.gradle
embulk-output-td-0.3.6 gradle/check.gradle
embulk-output-td-0.3.5 gradle/check.gradle
embulk-output-td-0.3.4 gradle/check.gradle
embulk-output-td-0.3.3 gradle/check.gradle