File tree Expand file tree Collapse file tree 2 files changed +27
-0
lines changed Expand file tree Collapse file tree 2 files changed +27
-0
lines changed Original file line number Diff line number Diff line change
1
+
1
2
name := " delphi-registry"
2
3
3
4
version := " 1.0.0-SNAPSHOT"
@@ -13,3 +14,16 @@ libraryDependencies += "com.typesafe.akka" %% "akka-http-spray-json" % "10.1.1"
13
14
libraryDependencies += " io.spray" %% " spray-json" % " 1.3.3"
14
15
15
16
libraryDependencies += " org.scalatest" %% " scalatest" % " 3.0.4" % " test"
17
+
18
+
19
+ libraryDependencies += " org.parboiled" %% " parboiled" % " 2.1.4"
20
+
21
+
22
+ lazy val registry = (project in file(" ." )).
23
+ enablePlugins(JavaAppPackaging ).
24
+ enablePlugins(DockerPlugin ).
25
+ enablePlugins(ScalastylePlugin ).
26
+ settings (
27
+ dockerBaseImage := " openjdk:jre-alpine"
28
+ )
29
+
Original file line number Diff line number Diff line change
1
+ // build management and packaging
2
+ addSbtPlugin(" com.eed3si9n" % " sbt-buildinfo" % " 0.7.0" )
3
+ addSbtPlugin(" com.typesafe.sbt" % " sbt-native-packager" % " 1.3.2" )
4
+
5
+ // coverage
6
+ addSbtPlugin(" org.scoverage" % " sbt-scoverage" % " 1.5.1" )
7
+ addSbtPlugin(" com.codacy" % " sbt-codacy-coverage" % " 1.3.12" )
8
+
9
+ // preparation for dependency checking
10
+ addSbtPlugin(" net.virtual-void" % " sbt-dependency-graph" % " 0.9.1" )
11
+
12
+ // scalastyle
13
+ addSbtPlugin(" org.scalastyle" %% " scalastyle-sbt-plugin" % " 1.0.0" )
You can’t perform that action at this time.
0 commit comments