Reformat and dependency updates

This commit is contained in:
Anthony Cicchetti 2021-02-07 11:58:00 -05:00
parent 0dfd5c1198
commit ab13fac05f
4 changed files with 17 additions and 14 deletions

View file

@ -12,15 +12,15 @@ import org.gradle.plugin.use.PluginDependencySpec
* YOU are responsible for updating manually the dependency version. * YOU are responsible for updating manually the dependency version.
*/ */
object Versions { 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 com_github_johnrengelman_shadow_gradle_plugin: String = "6.1.0"
const val de_fayard_buildsrcversions_gradle_plugin: String = "0.7.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" 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 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 slf4j_simple: String = "1.7.30"
const val swagger_core: String = "2.1.6" 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? * See issue 19: How to update Gradle itself?
* https://github.com/jmfayard/buildSrcVersions/issues/19 * https://github.com/jmfayard/buildSrcVersions/issues/19
*/ */
const val gradleLatestVersion: String = "6.8" const val gradleLatestVersion: String = "6.8.2"
} }
/** /**

View file

@ -23,7 +23,7 @@ fun main() {
config.registerPlugin(OpenApiPlugin(createOpenApiOptions())) config.registerPlugin(OpenApiPlugin(createOpenApiOptions()))
config.enableWebjars() config.enableWebjars()
config.enableCorsForAllOrigins() config.enableCorsForAllOrigins()
config.requestLogger {ctx, ms -> config.requestLogger { ctx, ms ->
logger.info("Took ${ms.roundToInt()} to process ${ctx.req.requestURL}") logger.info("Took ${ms.roundToInt()} to process ${ctx.req.requestURL}")
} }
}.start(7000) }.start(7000)
@ -58,7 +58,7 @@ fun main() {
post("/api/v1/claptext", documented(document().operation { post("/api/v1/claptext", documented(document().operation {
it.description = "Responds \uD83D\uDC4F with \uD83D\uDC4F the \uD83D\uDC4F claptext \uD83D\uDC4F version" it.description = "Responds \uD83D\uDC4F with \uD83D\uDC4F the \uD83D\uDC4F claptext \uD83D\uDC4F version"
it.summary = "POST \uD83D\uDC4F for \uD83D\uDC4F claptext" it.summary = "POST \uD83D\uDC4F for \uD83D\uDC4F claptext"
}.body<String>().json<TextResponse>("200")) {ctx -> }.body<String>().json<TextResponse>("200")) { ctx ->
logger.info("Claptext: Received request from ${ctx.req.requestURL}") logger.info("Claptext: Received request from ${ctx.req.requestURL}")
ctx.json(TextResponse(200, ctx.body().toClapText())) ctx.json(TextResponse(200, ctx.body().toClapText()))
}) })

View file

@ -15,8 +15,10 @@ fun String.toSpongemock(): String {
} }
fun String.toClapText(): String { fun String.toClapText(): String {
with(this with(
.split(' ')) { this
.split(' ')
) {
if (this.size == 1) { if (this.size == 1) {
return "\uD83D\uDC4F ${this[0]} \uD83D\uDC4F" return "\uD83D\uDC4F ${this[0]} \uD83D\uDC4F"
} }

View file

@ -66,7 +66,8 @@ internal class TransformationsTest {
@Test @Test
fun `Claptext works with multiple words`() { fun `Claptext works with multiple words`() {
val actual = "Find a dentist in Boston your a grown man" 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()) assertEquals(expected, actual.toClapText())
} }