|
1 | 1 | buildscript { |
2 | 2 |
|
3 | | - ext.kotlin_version = '1.1.3' |
| 3 | + ext.kotlin_version = '1.2.50' |
4 | 4 |
|
5 | 5 | repositories { |
6 | 6 | mavenCentral() |
@@ -53,18 +53,18 @@ intellij { |
53 | 53 | group 'com.developerphil.intellij.plugin.adbidea' |
54 | 54 |
|
55 | 55 | dependencies { |
56 | | - compile "org.jetbrains.kotlin:kotlin-stdlib:${kotlin_version}" |
57 | | - compile "org.jetbrains.kotlin:kotlin-runtime:${kotlin_version}" |
| 56 | + implementation "org.jetbrains.kotlin:kotlin-stdlib:${kotlin_version}" |
| 57 | + implementation "org.jetbrains.kotlin:kotlin-runtime:${kotlin_version}" |
58 | 58 | compileOnly fileTree(dir: "$StudioCompilePath/plugins/android/lib", include: ['*.jar']) |
59 | 59 | compileOnly fileTree(dir: "$StudioCompilePath/lib", include: ['*.jar']) |
60 | | - compile 'com.google.dagger:dagger:2.6' |
| 60 | + implementation 'com.google.dagger:dagger:2.6' |
61 | 61 | kapt "com.google.dagger:dagger-compiler:2.6" |
62 | 62 |
|
63 | | - testCompile 'junit:junit:4.12' |
64 | | - testCompile fileTree(dir: "$StudioCompilePath/plugins/android/lib", include: ['*.jar']) |
65 | | - testCompile fileTree(dir: "$StudioCompilePath/lib", include: ['*.jar']) |
66 | | - testCompile "org.mockito:mockito-core:1.+" |
67 | | - testCompile "com.google.truth:truth:0.30" |
| 63 | + testImplementation 'junit:junit:4.12' |
| 64 | + testImplementation fileTree(dir: "$StudioCompilePath/plugins/android/lib", include: ['*.jar']) |
| 65 | + testImplementation fileTree(dir: "$StudioCompilePath/lib", include: ['*.jar']) |
| 66 | + testImplementation "org.mockito:mockito-core:1.+" |
| 67 | + testImplementation "com.google.truth:truth:0.30" |
68 | 68 |
|
69 | 69 | } |
70 | 70 |
|
|
0 commit comments