mirror of
https://github.com/arcan1s/ffxivbis.git
synced 2025-04-24 17:27:17 +00:00
* added sge and rpr * changed way to define savage gear * libraries update
16 lines
427 B
Scala
16 lines
427 B
Scala
name := "ffxivbis"
|
|
|
|
scalaVersion := "2.13.6"
|
|
|
|
scalacOptions ++= Seq("-deprecation", "-feature")
|
|
|
|
enablePlugins(JavaAppPackaging)
|
|
|
|
assemblyMergeStrategy in assembly := {
|
|
case PathList("META-INF", xs @ _*) => MergeStrategy.discard
|
|
case "application.conf" => MergeStrategy.concat
|
|
case "module-info.class" => MergeStrategy.first
|
|
case x =>
|
|
val oldStrategy = (assemblyMergeStrategy in assembly).value
|
|
oldStrategy(x)
|
|
} |