added plugin to gradle build files

This commit is contained in:
Tom Hennen 2016-05-10 14:17:56 -04:00
parent ed16169381
commit 8c320e3ae1
2 changed files with 3 additions and 1 deletions

View File

@ -2,6 +2,7 @@ import org.apache.tools.ant.filters.ReplaceTokens
apply plugin: "com.android.application"
apply plugin: "me.tatarka.retrolambda"
apply plugin: 'com.github.triplet.play'
repositories {
maven { url "https://jitpack.io" }

View File

@ -3,12 +3,13 @@
buildscript {
repositories {
jcenter()
mavenCentral()
}
dependencies {
classpath "com.android.tools.build:gradle:1.5.0"
classpath "me.tatarka:gradle-retrolambda:3.2.4"
classpath "me.tatarka.retrolambda.projectlombok:lombok.ast:0.2.3.a2"
classpath 'com.github.triplet.gradle:play-publisher:1.1.4'
// Exclude the version that the android plugin depends on.
configurations.classpath.exclude group: "com.android.tools.external.lombok"
}