Skip to content

Commit

Permalink
chore: 새로운 린트 규칙 적용
Browse files Browse the repository at this point in the history
  • Loading branch information
belljun3395 committed Jun 11, 2024
1 parent d29188c commit 64cc7be
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion api/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ dependencies {
/** spring starter */
implementation("org.springframework.boot:spring-boot-starter-webflux")
implementation("org.springframework.boot:spring-boot-starter-actuator")
}
}
2 changes: 1 addition & 1 deletion api/src/main/kotlin/com/few/ApiMain.kt
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ class ApiMain

fun main(args: Array<String>) {
runApplication<ApiMain>(*args)
}
}
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -139,4 +139,4 @@ tasks.named("gitExecutableHooks").configure {

tasks.named("clean").configure {
dependsOn("gitExecutableHooks")
}
}
2 changes: 1 addition & 1 deletion data/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@ dependencies {
/** flyway */
implementation("org.flywaydb:flyway-core:${DependencyVersion.FLYWAY}")
implementation("org.flywaydb:flyway-mysql")
}
}
2 changes: 1 addition & 1 deletion data/src/main/kotlin/com/few/data/config/DataConfig.kt
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ class DataConfig {
const val BEAN_NAME_PREFIX = "fewData"
const val PROPERTY_PREFIX = SERVICE_NAME + "." + MODULE_NAME
}
}
}
2 changes: 1 addition & 1 deletion data/src/main/kotlin/com/few/data/flyway/FlywayConfig.kt
Original file line number Diff line number Diff line change
Expand Up @@ -57,4 +57,4 @@ class FlywayConfig {
)
return configuration
}
}
}
2 changes: 1 addition & 1 deletion settings.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
rootProject.name = "few"

include("api")
include("data")
include("data")

0 comments on commit 64cc7be

Please sign in to comment.