Skip to content

Commit

Permalink
Fix: Unsupported Database: MySQL 8.0 (#256)
Browse files Browse the repository at this point in the history
  • Loading branch information
tusharmath authored Jul 25, 2023
1 parent 92a40e4 commit 7092cdf
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,10 @@ enablePlugins(JavaAppPackaging)
val zioTestDependencies = Seq(zioTest % Test, zioTestSBT % Test)

// The assembly merge settings
ThisBuild / assemblyMergeStrategy := { _ => MergeStrategy.first }
ThisBuild / assemblyMergeStrategy := {
case PathList("META-INF", "services", _*) => MergeStrategy.concat
case _ => MergeStrategy.first
}

// Disable the main class discovery such that only the CLI is used as it's main class
// That way the executable script is only created for the CLI
Expand Down

0 comments on commit 7092cdf

Please sign in to comment.