diff options
author | Shevek <[email protected]> | 2015-04-15 11:30:14 -0700 |
---|---|---|
committer | Shevek <[email protected]> | 2015-04-15 11:30:14 -0700 |
commit | 010b69c2b39d11aa1c5dbc6302ea87e9ee4e9813 (patch) | |
tree | 1a2989602a388ebbd23ee0df307f0205fa3210e1 /gradle/buildscript.gradle | |
parent | a6cf018b30b197ed84f0a0d9ca81fbb9320782c2 (diff) |
Update build system. Exclude JCL from runtime.
Diffstat (limited to 'gradle/buildscript.gradle')
-rw-r--r-- | gradle/buildscript.gradle | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/gradle/buildscript.gradle b/gradle/buildscript.gradle index 50a1d9c..5b32f4e 100644 --- a/gradle/buildscript.gradle +++ b/gradle/buildscript.gradle @@ -1,19 +1,22 @@ // Executed in context of buildscript repositories { // mavenLocal() + // maven { url 'https://oss.sonatype.org/content/repositories/snapshots/' } mavenCentral() - // jcenter() + jcenter() } dependencies { classpath 'nl.javadude.gradle.plugins:license-gradle-plugin:0.10.0' // classpath 'com.mapvine:gradle-cobertura-plugin:0.1' - classpath "net.saliman:gradle-cobertura-plugin:2.2.5" + classpath 'net.saliman:gradle-cobertura-plugin:2.2.5' // classpath 'gradle-release:gradle-release:1.1.5' - classpath 'org.ajoberstar:gradle-git:0.12.0' - classpath 'net.ltgt.gradle:gradle-errorprone-plugin:0.0.5' - classpath('com.netflix.nebula:gradle-info-plugin:1.12.5') { + classpath 'org.ajoberstar:gradle-git:1.0.0' + // classpath 'net.ltgt.gradle:gradle-errorprone-plugin:0.0.5' + classpath('com.netflix.nebula:gradle-info-plugin:2.2.0') { exclude group: 'com.perforce' } - classpath 'com.bmuschko:gradle-nexus-plugin:2.2' + classpath 'com.bmuschko:gradle-nexus-plugin:2.3.1' + classpath 'be.insaneprogramming.gradle:animalsniffer-gradle-plugin:1.4.0' + classpath 'com.github.ben-manes:gradle-versions-plugin:0.8' } |