From b4f393dff48b65960f79497f6afa3eccc9539d6d Mon Sep 17 00:00:00 2001 From: Jieyi Date: Mon, 3 Dec 2018 18:15:03 +0900 Subject: [PATCH] Feature: upgraded the version. --- build.gradle | 12 ++++++++---- kotlinknifer/build.gradle | 4 ++-- kotlinshaver/build.gradle | 2 +- sample/build.gradle | 2 +- 4 files changed, 12 insertions(+), 8 deletions(-) diff --git a/build.gradle b/build.gradle index 8f09f3c..75e650e 100644 --- a/build.gradle +++ b/build.gradle @@ -1,8 +1,8 @@ // Top-level build file where you can add configuration options common to all sub-projects/modules. buildscript { - ext.kotlin_version = '1.3.0' - ext.kotlin_coroutine_version = '1.0.0' + ext.kotlin_version = '1.3.10' + ext.kotlin_coroutine_version = '1.0.1' repositories { jcenter() google() @@ -14,12 +14,16 @@ buildscript { // NOTE: Do not place your application dependencies here; they belong // in the individual module build.gradle files - classpath "com.jfrog.bintray.gradle:gradle-bintray-plugin:1.8.0" - classpath "com.github.dcendents:android-maven-gradle-plugin:1.5" + classpath "com.jfrog.bintray.gradle:gradle-bintray-plugin:1.8.4" + classpath "com.github.dcendents:android-maven-gradle-plugin:2.1" classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" } } +plugins { + id "com.github.ben-manes.versions" version "0.20.0" +} + allprojects { repositories { google() diff --git a/kotlinknifer/build.gradle b/kotlinknifer/build.gradle index 88438e7..3cd4482 100644 --- a/kotlinknifer/build.gradle +++ b/kotlinknifer/build.gradle @@ -31,8 +31,8 @@ dependencies { implementation "org.jetbrains.kotlinx:kotlinx-coroutines-core:$kotlin_coroutine_version" implementation "org.jetbrains.kotlinx:kotlinx-coroutines-core-common:$kotlin_coroutine_version" implementation "org.jetbrains.kotlinx:kotlinx-coroutines-android:$kotlin_coroutine_version" - implementation "org.jetbrains.anko:anko-commons:0.10.7-rc13" - implementation "androidx.appcompat:appcompat:1.0.0" + implementation "org.jetbrains.anko:anko-commons:0.10.8" + implementation "androidx.appcompat:appcompat:1.0.2" implementation "androidx.recyclerview:recyclerview:1.0.0-rc01" implementation "androidx.palette:palette:1.0.0" compile project(":kotlinshaver") diff --git a/kotlinshaver/build.gradle b/kotlinshaver/build.gradle index 4bba54f..c418718 100644 --- a/kotlinshaver/build.gradle +++ b/kotlinshaver/build.gradle @@ -7,7 +7,7 @@ dependencies { implementation "org.jetbrains.kotlinx:kotlinx-coroutines-core-common:$kotlin_coroutine_version" compile "io.reactivex.rxjava2:rxkotlin:2.3.0" - compile "io.reactivex.rxjava2:rxjava:2.2.3" + compile "io.reactivex.rxjava2:rxjava:2.2.4" } sourceCompatibility = "1.8" diff --git a/sample/build.gradle b/sample/build.gradle index 73725d8..79a128d 100644 --- a/sample/build.gradle +++ b/sample/build.gradle @@ -21,7 +21,7 @@ android { dependencies { implementation fileTree(include: ['*.jar'], dir: 'libs') - implementation 'androidx.appcompat:appcompat:1.0.0' + implementation 'androidx.appcompat:appcompat:1.0.2' implementation 'androidx.constraintlayout:constraintlayout:2.0.0-alpha2' implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version" implementation project(':kotlinknifer')