diff --git a/build.gradle.kts b/build.gradle.kts index 7be8674..bd9830f 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -1,20 +1,20 @@ import org.jetbrains.kotlin.gradle.tasks.KotlinCompile group = "com.github.cs125-illinois" -version = "2022.9.1" +version = "2022.10.0" plugins { kotlin("jvm") version "1.7.20" `maven-publish` id("org.jmailen.kotlinter") version "3.12.0" - id("com.github.ben-manes.versions") version "0.42.0" + id("com.github.ben-manes.versions") version "0.43.0" id("io.gitlab.arturbosch.detekt") version "1.21.0" } repositories { mavenCentral() } dependencies { - testImplementation("io.kotest:kotest-runner-junit5:5.4.2") + testImplementation("io.kotest:kotest-runner-junit5:5.5.3") testImplementation("org.slf4j:slf4j-simple:2.0.3") } tasks.dependencyUpdates { diff --git a/settings.gradle.kts b/settings.gradle.kts new file mode 100644 index 0000000..1442a83 --- /dev/null +++ b/settings.gradle.kts @@ -0,0 +1,6 @@ +pluginManagement { + repositories { + mavenCentral() + gradlePluginPortal() + } +}