Skip to content

Commit

Permalink
Dependency updates.
Browse files Browse the repository at this point in the history
  • Loading branch information
gchallen committed Sep 1, 2021
1 parent 909d0c2 commit 4f5815a
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 6 deletions.
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ allprojects {
}
subprojects {
group = "com.github.cs125-illinois.jeed"
version = "2021.8.3"
version = "2021.9.0"
tasks.withType<Test> {
useJUnitPlatform()
enableAssertions = true
Expand Down
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version=2021.8.3
version=2021.9.0
2 changes: 1 addition & 1 deletion core/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ dependencies {
implementation("org.jetbrains.kotlin:kotlin-reflect:1.5.30")

implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.5.1-native-mt")
implementation("com.puppycrawl.tools:checkstyle:8.45.1")
implementation("com.puppycrawl.tools:checkstyle:9.0")
implementation("com.pinterest.ktlint:ktlint-core:0.42.1")
implementation("com.pinterest.ktlint:ktlint-ruleset-standard:0.42.1")
implementation("com.github.jknack:handlebars:4.2.0")
Expand Down
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version=2021.8.3
version=2021.9.0
7 changes: 6 additions & 1 deletion server/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ dependencies {
implementation("org.jetbrains.kotlin:kotlin-reflect:1.5.30")

implementation("io.ktor:ktor-server-netty:1.6.3")
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.5.1")
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.5.1-native-mt")
implementation("com.squareup.moshi:moshi-kotlin-codegen:1.12.0")
implementation("com.github.cs125-illinois:ktor-moshi:1.0.3")
implementation("ch.qos.logback:logback-classic:1.2.5")
Expand Down Expand Up @@ -85,4 +85,9 @@ publishing {
kotlin {
kotlinDaemonJvmArgs = listOf("-Dfile.encoding=UTF-8", "--illegal-access=permit")
}
kapt {
javacOptions {
option("--illegal-access", "permit")
}
}

Original file line number Diff line number Diff line change
@@ -1 +1 @@
version=2021.8.3
version=2021.9.0

0 comments on commit 4f5815a

Please sign in to comment.