aboutsummaryrefslogblamecommitdiff
path: root/build.sbt
blob: 02283abfc7927204f9531608c7b720949a62fefe (plain) (tree)
1
2
3
4
5
6
7
8
9

                               
 




                                                                           
                        
 

                                       
                                           

                                          
name := "spray-json-derivation"
organization := "xyz.driver"

version in ThisBuild := {
  import sys.process._
  ("git describe --always --dirty=-SNAPSHOT --match v[0-9].*" !!).tail.trim
}

scalaVersion := "2.12.4"

libraryDependencies ++= Seq(
  "io.spray" %% "spray-json" % "1.3.4",
  "com.propensive" %% "magnolia" % "0.7.0",
  "org.scalatest" %% "scalatest" % "3.0.2"
)