Skip to content

Commit

Permalink
style: Make ktlint happy
Browse files Browse the repository at this point in the history
  • Loading branch information
marcospereira committed Nov 24, 2023
1 parent ec94a12 commit bab04c4
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 13 deletions.
24 changes: 12 additions & 12 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -68,12 +68,12 @@ testSets {

val accessibilityTestImplementation: Configuration = configurations["accessibilityTestImplementation"]

tasks.withType<DockerBuildImage>() {
tasks.withType<DockerBuildImage> {
images.addAll(
"${dockerImage}:latest",
"${dockerImage}:${project.version}",
"$dockerImage:latest",
"$dockerImage:${project.version}",
"${project.name}:latest",
"${project.name}:${version}"
"${project.name}:$version",
)
}

Expand Down Expand Up @@ -137,8 +137,8 @@ tasks.register("releaseDate") {
.format(
DateTimeFormatter
.ofLocalizedDateTime(FormatStyle.MEDIUM)
.withLocale(Locale("pt-BR"))
)
.withLocale(Locale("pt-BR")),
),
)
}
}
Expand All @@ -156,14 +156,14 @@ dependencies {
runtimeOnly("com.fasterxml.jackson.module:jackson-module-kotlin")

// Views Dependencies
implementation("gg.jte:jte-kotlin:${jteVersion}")
implementation("gg.jte:jte-runtime:${jteVersion}")
implementation("gg.jte:jte-kotlin:$jteVersion")
implementation("gg.jte:jte-runtime:$jteVersion")
implementation("io.micronaut.views:micronaut-views-jte")
jteGenerate("gg.jte:jte-models:${jteVersion}")
jteGenerate("gg.jte:jte-models:$jteVersion")
jteGenerate("gg.jte:jte-native-resources:$jteVersion")

implementation("org.jetbrains.kotlin:kotlin-reflect:${kotlinVersion}")
implementation("org.jetbrains.kotlin:kotlin-stdlib-jdk8:${kotlinVersion}")
implementation("org.jetbrains.kotlin:kotlin-reflect:$kotlinVersion")
implementation("org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlinVersion")

// If the project needs to add Serialization (to JSON, for example). Also check the
// plugins section.
Expand All @@ -179,4 +179,4 @@ dependencies {

// Kotest manual update
testImplementation("io.micronaut.test:micronaut-test-kotest5:4.1.0")
}
}
1 change: 0 additions & 1 deletion settings.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,2 +1 @@
rootProject.name = "project-starter"

0 comments on commit bab04c4

Please sign in to comment.