Skip to content

Commit

Permalink
Action sbt scalafmtSbt
Browse files Browse the repository at this point in the history
  • Loading branch information
takapi327 committed Jul 20, 2024
1 parent d1e9b15 commit 663ebeb
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -33,13 +33,13 @@ lazy val core = crossProject(JVMPlatform, JSPlatform, NativePlatform)
.settings(
onLoadMessage :=
s"""
|${scala.Console.RED}WARNING: This project is deprecated and will be removed in future versions. Please use ldbc-schema instead.
|${ scala.Console.RED }WARNING: This project is deprecated and will be removed in future versions. Please use ldbc-schema instead.
|
|${scala.Console.RED}${organization.value} %% ${name.value} % ${version.value}
|${ scala.Console.RED }${ organization.value } %% ${ name.value } % ${ version.value }
|
| ${scala.Console.RED}↓↓↓↓↓
| ${ scala.Console.RED }↓↓↓↓↓
|
|${scala.Console.RED}${organization.value} %% ldbc-schema % ${version.value}
|${ scala.Console.RED }${ organization.value } %% ldbc-schema % ${ version.value }
|
|""".stripMargin,
libraryDependencies ++= Seq(
Expand Down Expand Up @@ -89,7 +89,7 @@ lazy val schema = crossProject(JVMPlatform, JSPlatform, NativePlatform)
lazy val schemaSpy = LepusSbtProject("ldbc-schemaSpy", "module/ldbc-schemaspy")
.settings(
description := "Project to generate SchemaSPY documentation",
onLoadMessage := s"${scala.Console.RED}WARNING: This project is deprecated and will be removed in future versions.${scala.Console.RESET}",
onLoadMessage := s"${ scala.Console.RED }WARNING: This project is deprecated and will be removed in future versions.${ scala.Console.RESET }",
libraryDependencies += schemaspy
)
.dependsOn(core.jvm)
Expand Down

0 comments on commit 663ebeb

Please sign in to comment.