Skip to content

Instantly share code, notes, and snippets.

@mtilbrook-dev
Last active November 12, 2018 01:51
Show Gist options
  • Select an option

  • Save mtilbrook-dev/39d748f9a86e4079b8425cfec00a933d to your computer and use it in GitHub Desktop.

Select an option

Save mtilbrook-dev/39d748f9a86e4079b8425cfec00a933d to your computer and use it in GitHub Desktop.

Revisions

  1. Mitchell Tilbrook revised this gist Nov 12, 2018. 1 changed file with 2 additions and 2 deletions.
    4 changes: 2 additions & 2 deletions build.gradle
    Original file line number Diff line number Diff line change
    @@ -4,8 +4,8 @@ buildscript {
    jcenter()
    }
    dependencies {
    classpath 'com.android.tools.build:gradle:3.1.3'
    classpath 'org.jacoco:org.jacoco.core:0.8.1'
    classpath 'com.android.tools.build:gradle:3.2.1'
    classpath 'org.jacoco:org.jacoco.core:0.8.2'
    }
    }
    plugins {
  2. Mitchell Tilbrook created this gist Aug 1, 2018.
    24 changes: 24 additions & 0 deletions build.gradle
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,24 @@
    buildscript {
    repositories {
    google()
    jcenter()
    }
    dependencies {
    classpath 'com.android.tools.build:gradle:3.1.3'
    classpath 'org.jacoco:org.jacoco.core:0.8.1'
    }
    }
    plugins {
    id "com.palantir.jacoco-full-report" version "0.4.0"
    }

    allprojects {
    repositories {
    google()
    jcenter()
    }
    }

    task clean(type: Delete) {
    delete rootProject.buildDir
    }