Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/bitfireAT/vcard4android.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRicki Hirner <hirner@bitfire.at>2018-06-08 12:15:00 +0300
committerRicki Hirner <hirner@bitfire.at>2018-06-08 12:49:26 +0300
commitc82bbf1fcc4bead3957f57e64addf1cc2f5c848d (patch)
tree998d79f40aa9efff12212b24a45e37d7821b3915
parenteb49dc29349926f7d6ee3a90ebf7a0645c621778 (diff)
Update gradle plugin, Kotlin
-rw-r--r--build.gradle18
1 files changed, 9 insertions, 9 deletions
diff --git a/build.gradle b/build.gradle
index 1f2aa50..73114a3 100644
--- a/build.gradle
+++ b/build.gradle
@@ -1,6 +1,6 @@
buildscript {
- ext.kotlin_version = '1.2.40'
+ ext.kotlin_version = '1.2.41'
ext.dokka_version = '0.9.16'
repositories {
@@ -9,7 +9,7 @@ buildscript {
}
dependencies {
- classpath 'com.android.tools.build:gradle:3.1.2'
+ classpath 'com.android.tools.build:gradle:3.1.3'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath "org.jetbrains.dokka:dokka-android-gradle-plugin:$dokka_version"
}
@@ -54,13 +54,13 @@ android {
}
dependencies {
- compile "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
+ implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
- compile 'org.apache.commons:commons-text:1.1'
- compile 'commons-io:commons-io:2.6'
+ implementation 'org.apache.commons:commons-text:1.1'
+ implementation 'commons-io:commons-io:2.6'
// ez-vcard to parse/generate VCards
- compile('com.googlecode.ez-vcard:ez-vcard:0.10.4') {
+ api('com.googlecode.ez-vcard:ez-vcard:0.10.4') {
// hCard functionality not needed
exclude group: 'org.jsoup'
exclude group: 'org.freemarker'
@@ -68,8 +68,8 @@ dependencies {
exclude group: 'com.fasterxml.jackson.core'
}
- androidTestCompile 'com.android.support.test:runner:1.0.1'
- androidTestCompile 'com.android.support.test:rules:1.0.1'
+ androidTestImplementation 'com.android.support.test:runner:1.0.2'
+ androidTestImplementation 'com.android.support.test:rules:1.0.2'
- testCompile 'junit:junit:4.12'
+ testImplementation 'junit:junit:4.12'
}