Skip to content

Commit

Permalink
Update dependencies:
Browse files Browse the repository at this point in the history
- kotlin
- kotlinx.coroutines
- commonmark
- gradle
  • Loading branch information
IRus committed May 4, 2018
1 parent 249a026 commit ed18ef7
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 7 deletions.
9 changes: 5 additions & 4 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@ import org.gradle.kotlin.dsl.repositories
import org.jetbrains.kotlin.gradle.dsl.Coroutines
import org.jetbrains.kotlin.gradle.dsl.KotlinProjectExtension

val kotlinVersion by project
val commonMarkVersion by project
val kotlinVersion: String by project
val commonMarkVersion: String by project

plugins {
application
kotlin("jvm") version "1.2.20"
kotlin("jvm") version "1.2.41"
}

application {
Expand All @@ -30,7 +30,7 @@ repositories {
dependencies {
compile("org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlinVersion")
compile("org.jetbrains.kotlin:kotlin-reflect:$kotlinVersion")
compile("org.jetbrains.kotlinx:kotlinx-coroutines-jdk8:0.20")
compile("org.jetbrains.kotlinx:kotlinx-coroutines-jdk8:0.22.5")

compile("com.fasterxml.jackson.module:jackson-module-kotlin:2.9.2")
compile("com.fasterxml.jackson.dataformat:jackson-dataformat-xml:2.9.3")
Expand All @@ -44,6 +44,7 @@ dependencies {
compile("by.heap.remark:remark-kotlin:1.2.0")

compile("org.jetbrains.kotlin:kotlin-script-util:$kotlinVersion")
compile("org.jetbrains.kotlin:kotlin-compiler-embeddable:$kotlinVersion")
compile("com.atlassian.commonmark:commonmark:$commonMarkVersion")
compile("com.atlassian.commonmark:commonmark-ext-gfm-tables:$commonMarkVersion")

Expand Down
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
kotlinVersion=1.2.10
commonMarkVersion=0.9.0
kotlinVersion=1.2.41
commonMarkVersion=0.11.0
Binary file modified gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-4.4-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-4.7-bin.zip

0 comments on commit ed18ef7

Please sign in to comment.