Skip to content

Commit

Permalink
Updated sbt assembly properties
Browse files Browse the repository at this point in the history
  • Loading branch information
Nojipiz committed Oct 7, 2022
1 parent 17789aa commit 10eae2e
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 5 deletions.
16 changes: 11 additions & 5 deletions montecarlo_archery/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,18 @@ val scala3Version = "3.2.0"
lazy val root = project
.in(file("."))
.settings(
name := "montecarlo_archery",
version := "0.1.0-SNAPSHOT",
name := "montecarlo_archery",
mainClass := Some("view.StartView"),
version := "0.1.0-SNAPSHOT",
scalaVersion := scala3Version,
libraryDependencies ++= Seq(
"org.scalameta" %% "munit" % "0.7.29" % Test,
"org.scalanlp" %% "breeze" % "2.1.0",
"org.scalameta" %% "munit" % "0.7.29" % Test,
"org.scalanlp" %% "breeze" % "2.1.0",
"org.scalafx" %% "scalafx" % "18.0.2-R29"
)
),
fork := true,
assemblyMergeStrategy in assembly := {
case PathList("META-INF", _*) => MergeStrategy.discard
case _ => MergeStrategy.first
}
)
1 change: 1 addition & 0 deletions montecarlo_archery/project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
addSbtPlugin("com.eed3si9n" % "sbt-assembly" % "0.15.0")

0 comments on commit 10eae2e

Please sign in to comment.