Skip to content

Commit

Permalink
Update dependencies.
Browse files Browse the repository at this point in the history
  • Loading branch information
gchallen committed Aug 29, 2021
1 parent 69fdc27 commit 221077f
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 5 deletions.
13 changes: 9 additions & 4 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,14 @@ import java.io.StringWriter
import java.util.Properties

group = "com.github.cs125-illinois"
version = "2021.8.0"
version = "2021.8.1"

plugins {
kotlin("jvm") version "1.5.21"
kotlin("jvm") version "1.5.30"
java
`maven-publish`

id("org.jmailen.kotlinter") version "3.5.0"
id("org.jmailen.kotlinter") version "3.5.1"
checkstyle
id("com.github.sherter.google-java-format") version "0.9"

Expand All @@ -28,12 +28,17 @@ dependencies {
implementation("io.github.classgraph:classgraph:4.8.115")
implementation("io.github.kostaskougios:cloning:1.10.3")

testImplementation("io.kotest:kotest-runner-junit5:4.6.1")
testImplementation("io.kotest:kotest-runner-junit5:4.6.2")
testImplementation("org.slf4j:slf4j-simple:1.7.32")
}
tasks.withType<JavaCompile> {
options.compilerArgs.add("-parameters")
}
tasks.withType<org.jetbrains.kotlin.gradle.tasks.KotlinCompile> {
kotlinOptions {
jvmTarget = JavaVersion.VERSION_16.toString()
}
}
tasks.withType<Test> {
useJUnitPlatform()
enableAssertions = true
Expand Down
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version=2021.7.2
version=2021.8.1

0 comments on commit 221077f

Please sign in to comment.