Advertisement
Guest User

Untitled

a guest
Jul 1st, 2015
27
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Groovy 0.93 KB | None | 0 0
  1.  
  2. // Top-level build file where you can add configuration options common to all sub-projects/modules.
  3.  
  4. //apply plugin: 'checkstyle'
  5. //apply plugin: 'findbugs'
  6. //apply plugin: 'pmd'
  7.  
  8. buildscript {
  9.     repositories {
  10.         jcenter()
  11.  
  12.        // Added
  13.        //maven {
  14.         //url "https://plugins.gradle.org/m2/"
  15.       //}
  16.  
  17.     }
  18.     dependencies {
  19.        
  20.         classpath 'com.android.tools.build:gradle:1.1.3'
  21.  
  22.         // NOTE: Do not place your application dependencies here; they belong
  23.         // in the individual module build.gradle files
  24.  
  25.         // Added
  26.         //classpath "gradle.plugin.com.github.mjdetullio.gradle:coverity-plugin:1.0.3"
  27.     }
  28. }
  29.  
  30. // Added
  31. //apply plugin: "com.github.mjdetullio.gradle.coverity"
  32.  
  33. allprojects {
  34.     repositories {
  35.         maven { url "http://dl.bintray.com/populov/maven" }
  36.         maven { url "https://repo.eclipse.org/content/groups/releases" }
  37.         jcenter()
  38.     }
  39. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement