forked from akka/akka-http-quickstart-scala.g8
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.sbt
More file actions
15 lines (15 loc) · 655 Bytes
/
Copy pathbuild.sbt
File metadata and controls
15 lines (15 loc) · 655 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// This build is for this Giter8 template.
// To test the template run `g8` or `g8Test` from the sbt session.
// See http://www.foundweekends.org/giter8/testing.html#Using+the+Giter8Plugin for more details.
lazy val root = project
.in(file("."))
.enablePlugins(ScriptedPlugin)
.settings(
name := "akka-http-scala-seed.g8",
scalaVersion := "2.12.12",
test in Test := {
val _ = (Test / g8Test).toTask("").value
},
scriptedLaunchOpts ++= List("-Xms1024m", "-Xmx1024m", "-XX:ReservedCodeCacheSize=128m", "-XX:MaxMetaspaceSize=256m", "-Xss2m", "-Dfile.encoding=UTF-8"),
resolvers += Resolver.typesafeIvyRepo("releases")
)