diff --git a/buildSrc/src/main/kotlin/Versions.kt b/buildSrc/src/main/kotlin/Versions.kt index 2e69257..e81f889 100644 --- a/buildSrc/src/main/kotlin/Versions.kt +++ b/buildSrc/src/main/kotlin/Versions.kt @@ -12,15 +12,15 @@ import org.gradle.plugin.use.PluginDependencySpec * YOU are responsible for updating manually the dependency version. */ object Versions { - const val org_jetbrains_kotlin: String = "1.4.21-2" + const val org_jetbrains_kotlin: String = "1.4.30" - const val io_javalin: String = "3.12.0" + const val io_javalin: String = "3.13.3" const val com_github_johnrengelman_shadow_gradle_plugin: String = "6.1.0" const val de_fayard_buildsrcversions_gradle_plugin: String = "0.7.0" - const val org_jetbrains_kotlin_jvm_gradle_plugin: String = "1.4.21-2" + const val org_jetbrains_kotlin_jvm_gradle_plugin: String = "1.4.30" const val jackson_module_kotlin: String = "2.12.1" @@ -28,20 +28,20 @@ object Versions { const val jackson_databind: String = "2.12.1" - const val junit_jupiter: String = "5.7.0" + const val junit_jupiter: String = "5.7.1" const val slf4j_simple: String = "1.7.30" const val swagger_core: String = "2.1.6" - const val swagger_ui: String = "3.38.0" + const val swagger_ui: String = "3.42.0" /** - * Current version: "6.8" + * Current version: "6.8.1" * See issue 19: How to update Gradle itself? * https://github.com/jmfayard/buildSrcVersions/issues/19 */ - const val gradleLatestVersion: String = "6.8" + const val gradleLatestVersion: String = "6.8.2" } /** diff --git a/src/main/kotlin/com/anthonycicchetti/slackbot/Main.kt b/src/main/kotlin/com/anthonycicchetti/slackbot/Main.kt index ce3bb7a..a0d4bdb 100644 --- a/src/main/kotlin/com/anthonycicchetti/slackbot/Main.kt +++ b/src/main/kotlin/com/anthonycicchetti/slackbot/Main.kt @@ -23,9 +23,9 @@ fun main() { config.registerPlugin(OpenApiPlugin(createOpenApiOptions())) config.enableWebjars() config.enableCorsForAllOrigins() - config.requestLogger {ctx, ms -> - logger.info("Took ${ms.roundToInt()} to process ${ctx.req.requestURL}") - } + config.requestLogger { ctx, ms -> + logger.info("Took ${ms.roundToInt()} to process ${ctx.req.requestURL}") + } }.start(7000) with(app) { options("/*", documented(document().ignore()) {}) @@ -58,7 +58,7 @@ fun main() { post("/api/v1/claptext", documented(document().operation { it.description = "Responds \uD83D\uDC4F with \uD83D\uDC4F the \uD83D\uDC4F claptext \uD83D\uDC4F version" it.summary = "POST \uD83D\uDC4F for \uD83D\uDC4F claptext" - }.body().json("200")) {ctx -> + }.body().json("200")) { ctx -> logger.info("Claptext: Received request from ${ctx.req.requestURL}") ctx.json(TextResponse(200, ctx.body().toClapText())) }) diff --git a/src/main/kotlin/com/anthonycicchetti/slackbot/Transformations.kt b/src/main/kotlin/com/anthonycicchetti/slackbot/Transformations.kt index f371edb..feb3518 100644 --- a/src/main/kotlin/com/anthonycicchetti/slackbot/Transformations.kt +++ b/src/main/kotlin/com/anthonycicchetti/slackbot/Transformations.kt @@ -15,8 +15,10 @@ fun String.toSpongemock(): String { } fun String.toClapText(): String { - with(this - .split(' ')) { + with( + this + .split(' ') + ) { if (this.size == 1) { return "\uD83D\uDC4F ${this[0]} \uD83D\uDC4F" } diff --git a/src/test/kotlin/com/anthonycicchetti/slackbot/TransformationsTest.kt b/src/test/kotlin/com/anthonycicchetti/slackbot/TransformationsTest.kt index 12ecd04..36dcedd 100644 --- a/src/test/kotlin/com/anthonycicchetti/slackbot/TransformationsTest.kt +++ b/src/test/kotlin/com/anthonycicchetti/slackbot/TransformationsTest.kt @@ -66,7 +66,8 @@ internal class TransformationsTest { @Test fun `Claptext works with multiple words`() { val actual = "Find a dentist in Boston your a grown man" - val expected = "Find \uD83D\uDC4F a \uD83D\uDC4F dentist \uD83D\uDC4F in \uD83D\uDC4F Boston \uD83D\uDC4F your \uD83D\uDC4F a \uD83D\uDC4F grown \uD83D\uDC4F man" + val expected = + "Find \uD83D\uDC4F a \uD83D\uDC4F dentist \uD83D\uDC4F in \uD83D\uDC4F Boston \uD83D\uDC4F your \uD83D\uDC4F a \uD83D\uDC4F grown \uD83D\uDC4F man" assertEquals(expected, actual.toClapText()) }