File tree 3 files changed +3
-3
lines changed
easymvp-plugin/src/main/groovy/easymvp/gradle/plugin
3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -35,7 +35,7 @@ buildscript {
35
35
jcenter()
36
36
}
37
37
dependencies {
38
- classpath 'com.sixthsolution.easymvp:easymvp-plugin:1.0.0 '
38
+ classpath 'com.sixthsolution.easymvp:easymvp-plugin:1.0.1 '
39
39
}
40
40
}
41
41
```
Original file line number Diff line number Diff line change @@ -60,7 +60,7 @@ class EasyMVPPlugin implements Plugin<Project> {
60
60
61
61
if (isKotlinProject) {
62
62
project. dependencies. add(" kapt" , " $GROUP :easymvp-compiler:$VERSION " )
63
- } else if (hasConfiguration(" annotationProcessor" )) {
63
+ } else if (hasConfiguration(" annotationProcessor" ) && ! hasPlugin( " com.neenbedankt.android-apt " ) ) {
64
64
project. dependencies. add(" annotationProcessor" , " $GROUP :easymvp-compiler:$VERSION " )
65
65
} else {
66
66
project. dependencies. add(" apt" , " $GROUP :easymvp-compiler:$VERSION " )
Original file line number Diff line number Diff line change 1
1
GROUP =com.sixthsolution.easymvp
2
- VERSION_NAME =1.0.0
2
+ VERSION_NAME =1.0.1
3
3
org.gradle.jvmargs =-Xmx2048m
You can’t perform that action at this time.
0 commit comments