Reformat and dependency updates
This commit is contained in:
parent
0dfd5c1198
commit
ab13fac05f
4 changed files with 17 additions and 14 deletions
|
@ -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"
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -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"
|
||||||
}
|
}
|
||||||
|
|
|
@ -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())
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue