-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
37 lines (25 loc) · 1.1 KB
/
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
34
35
36
37
organization := "ch.unibas.cs.gravis"
name := """minimal-scalismo-seed"""
version := "0.5"
scalaVersion := "2.11.7"
scalacOptions := Seq("-unchecked", "-deprecation", "-encoding", "utf8")
resolvers += Resolver.bintrayRepo("unibas-gravis", "maven")
resolvers += Opts.resolver.sonatypeSnapshots
resolvers ++= Seq(
"scalismo" at "http://shapemodelling.cs.unibas.ch/repository/public"
)
libraryDependencies ++= Seq(
"ch.unibas.cs.gravis" % "scalismo-ui_2.11" % "0.6.+",
"ch.unibas.cs.gravis" % "scalismo-sampling_2.11" % "develop-SNAPSHOT"
)
libraryDependencies += "com.github.wookietreiber" %% "scala-chart" % "latest.integration"
assemblyJarName in assembly := "executable.jar"
mainClass in assembly := Some("shape_modelling.Segmentation")
assemblyMergeStrategy in assembly <<= (assemblyMergeStrategy in assembly) { (old) =>
{
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
}
}