Skip to content

Commit

Permalink
Dependency updates.
Browse files Browse the repository at this point in the history
  • Loading branch information
gchallen committed Oct 30, 2022
1 parent d79b08f commit 229d820
Show file tree
Hide file tree
Showing 8 changed files with 14 additions and 15 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 = "2022.10.5"
version = "2022.10.6"
tasks.withType<Test> {
useJUnitPlatform()
enableAssertions = true
Expand Down
2 changes: 1 addition & 1 deletion containerrunner/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ plugins {
}
dependencies {
implementation("ch.qos.logback:logback-classic:1.4.4")
implementation("io.github.microutils:kotlin-logging:3.0.2")
implementation("io.github.microutils:kotlin-logging:3.0.3")
implementation("com.github.ajalt.clikt:clikt:3.5.0")
implementation("io.github.classgraph:classgraph:4.8.149")
}
Expand Down
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version=2022.10.5
version=2022.10.6
5 changes: 2 additions & 3 deletions core/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ dependencies {
antlr("org.antlr:antlr4:4.11.1")

implementation("org.jetbrains.kotlin:kotlin-compiler-embeddable:1.7.20")
implementation("org.jetbrains.kotlin:kotlin-reflect:1.7.20")

implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.6.4")
implementation("com.puppycrawl.tools:checkstyle:10.3.4")
Expand All @@ -31,7 +30,7 @@ dependencies {
implementation("org.ow2.asm:asm-util:9.4")
implementation("org.slf4j:slf4j-api:2.0.3")
implementation("ch.qos.logback:logback-classic:1.4.4")
implementation("io.github.microutils:kotlin-logging:3.0.2")
implementation("io.github.microutils:kotlin-logging:3.0.3")
implementation("io.github.classgraph:classgraph:4.8.149")
implementation("net.java.dev.jna:jna:5.12.1")
implementation("io.github.java-diff-utils:java-diff-utils:4.12")
Expand All @@ -43,7 +42,7 @@ dependencies {
api("org.jacoco:org.jacoco.core:0.8.8")
api("com.github.ben-manes.caffeine:caffeine:3.1.1")

testImplementation("io.kotest:kotest-runner-junit5:5.5.2")
testImplementation("io.kotest:kotest-runner-junit5:5.5.3")
}
tasks.test {
useJUnitPlatform()
Expand Down
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version=2022.10.5
version=2022.10.6
2 changes: 1 addition & 1 deletion leaktest/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ dependencies {
implementation(project(":core"))
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.6.4")
implementation("ch.qos.logback:logback-classic:1.4.4")
implementation("io.github.microutils:kotlin-logging:3.0.2")
implementation("io.github.microutils:kotlin-logging:3.0.3")
}
application {
@Suppress("DEPRECATION")
Expand Down
12 changes: 6 additions & 6 deletions server/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -17,23 +17,23 @@ dependencies {

implementation(project(":core"))

implementation("io.ktor:ktor-server-netty:2.1.2")
implementation("io.ktor:ktor-server-cors:2.1.2")
implementation("io.ktor:ktor-server-content-negotiation:2.1.2")
implementation("io.ktor:ktor-server-netty:2.1.3")
implementation("io.ktor:ktor-server-cors:2.1.3")
implementation("io.ktor:ktor-server-content-negotiation:2.1.3")
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.6.4")
implementation("com.squareup.moshi:moshi-kotlin:1.14.0")
implementation("com.github.cs125-illinois:ktor-moshi:2022.9.0")
implementation("ch.qos.logback:logback-classic:1.4.4")
implementation("com.uchuhimo:konf-core:1.1.2")
implementation("com.uchuhimo:konf-yaml:1.1.2")
implementation("io.github.microutils:kotlin-logging:3.0.2")
implementation("io.github.microutils:kotlin-logging:3.0.3")
implementation("com.github.cs125-illinois:libcs1:2022.9.1")
implementation("com.beyondgrader.resource-agent:agent:2022.9.3")
implementation("com.beyondgrader.resource-agent:jeedplugin:2022.9.3")

testImplementation("io.kotest:kotest-runner-junit5:5.5.2")
testImplementation("io.kotest:kotest-runner-junit5:5.5.3")
testImplementation("io.kotest:kotest-assertions-ktor:4.4.3")
testImplementation("io.ktor:ktor-server-test-host:2.1.2")
testImplementation("io.ktor:ktor-server-test-host:2.1.3")
}
application {
@Suppress("DEPRECATION")
Expand Down
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version=2022.10.5
version=2022.10.6

0 comments on commit 229d820

Please sign in to comment.