File tree Expand file tree Collapse file tree 2 files changed +11
-0
lines changed Expand file tree Collapse file tree 2 files changed +11
-0
lines changed Original file line number Diff line number Diff line change 2
2
buildscript {
3
3
repositories {
4
4
mavenCentral()
5
+ jcenter()
5
6
}
6
7
7
8
dependencies {
8
9
classpath ' com.android.tools.build:gradle:+'
9
10
classpath ' com.github.dcendents:android-maven-gradle-plugin:1.3'
11
+ classpath ' me.tatarka.retrolambda.projectlombok:lombok.ast:0.2.3.a2'
10
12
}
13
+
14
+ // Exclude the version that the android plugin depends on.
15
+ configurations. classpath. exclude group : ' com.android.tools.external.lombok'
11
16
}
12
17
13
18
plugins {
Original file line number Diff line number Diff line change @@ -6,6 +6,9 @@ buildscript {
6
6
dependencies {
7
7
classpath ' me.tatarka:gradle-retrolambda:3.2.5'
8
8
}
9
+
10
+ // Exclude the version that the android plugin depends on.
11
+ configurations. classpath. exclude group : ' com.android.tools.external.lombok'
9
12
}
10
13
11
14
repositories {
@@ -111,6 +114,9 @@ android {
111
114
options. compilerArgs << " -Xlint:unchecked" << " -Xlint:deprecation"
112
115
}
113
116
}
117
+ task printBuildScriptClasspath << {
118
+ println project. buildscript. configurations. classpath. asPath
119
+ }
114
120
}
115
121
116
122
dependencies {
You can’t perform that action at this time.
0 commit comments