-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
33 lines (22 loc) · 901 Bytes
/
build.sbt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
import sbt.Resolver
organization := "ch.unibas.cs.gravis"
name := "seqGPMM"
version := "0.1"
scalaVersion := "2.13.3"
scalacOptions := Seq("-unchecked", "-deprecation", "-encoding", "utf8")
resolvers ++= Seq(
Opts.resolver.sonatypeSnapshots
)
libraryDependencies ++= Seq(
"ch.unibas.cs.gravis" % "scalismo-native-all" % "4.0.+",
"ch.unibas.cs.gravis" %% "scalismo-ui" % "0.90.0",
"io.github.cibotech" %% "evilplot" % "0.8.1"
)
assemblyJarName in assembly := "seqGPMM.jar"
mainClass in assembly := Some("example.ExampleApp")
assemblyMergeStrategy in assembly := {
case PathList("META-INF", "MANIFEST.MF") => MergeStrategy.discard
case PathList("META-INF", s) if s.endsWith(".SF") || s.endsWith(".DSA") || s.endsWith(".RSA") => MergeStrategy.discard
case "reference.conf" => MergeStrategy.concat
case _ => MergeStrategy.first
}