Skip to content

Commit

Permalink
sbt format
Browse files Browse the repository at this point in the history
  • Loading branch information
johanandren committed Dec 20, 2023
1 parent ef7308f commit b7947b1
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 13 deletions.
12 changes: 4 additions & 8 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,8 @@ lazy val core = project
lazy val integration = project
.in(file("integration"))
.settings(IntegrationTests.settings)
.settings(
name := "akka-persistence-jdbc-integration",
libraryDependencies ++= Dependencies.Libraries,
).disablePlugins(MimaPlugin, SitePlugin, CiReleasePlugin)
.settings(name := "akka-persistence-jdbc-integration", libraryDependencies ++= Dependencies.Libraries)
.disablePlugins(MimaPlugin, SitePlugin, CiReleasePlugin)
.dependsOn(core)

lazy val migrator = project
Expand All @@ -44,10 +42,8 @@ lazy val migrator = project
lazy val `migrator-integration` = project
.in(file("migrator-integration"))
.settings(IntegrationTests.settings)
.settings(
name := "akka-persistence-jdbc-migrator-integration",
libraryDependencies ++= Dependencies.Libraries,
).disablePlugins(MimaPlugin, SitePlugin, CiReleasePlugin)
.settings(name := "akka-persistence-jdbc-migrator-integration", libraryDependencies ++= Dependencies.Libraries)
.disablePlugins(MimaPlugin, SitePlugin, CiReleasePlugin)
.dependsOn(migrator)

lazy val docs = project
Expand Down
6 changes: 1 addition & 5 deletions project/IntegrationTests.scala
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,6 @@ import sbt.Keys.*
object IntegrationTests {

def settings: Seq[Def.Setting[_]] =
Seq(
publish / skip := true,
doc / sources := Seq.empty,
Test / fork := true
)
Seq(publish / skip := true, doc / sources := Seq.empty, Test / fork := true)

}

0 comments on commit b7947b1

Please sign in to comment.