initial commit
This commit is contained in:
28
build.sbt
Normal file
28
build.sbt
Normal file
@@ -0,0 +1,28 @@
|
||||
name := "jwo"
|
||||
|
||||
organization := "net.woggioni"
|
||||
|
||||
maintainer := "oggioni.walter@gmail.com"
|
||||
|
||||
version := "1.0"
|
||||
resolvers += Resolver.mavenLocal
|
||||
|
||||
git.useGitDescribe := true
|
||||
crossPaths := false
|
||||
|
||||
autoScalaLibrary := false
|
||||
|
||||
libraryDependencies += "org.projectlombok" % "lombok" % "1.18.8" % Provided
|
||||
|
||||
libraryDependencies += "org.slf4j" % "slf4j-api" % "1.7.28"
|
||||
|
||||
libraryDependencies += "com.novocode" % "junit-interface" % "0.11" % Test
|
||||
libraryDependencies += "org.apache.logging.log4j" % "log4j-core" % "2.12.1" % Test
|
||||
libraryDependencies += "org.apache.logging.log4j" % "log4j-slf4j-impl" % "2.12.1" % Test
|
||||
|
||||
javacOptions ++= Seq("-source", "1.8", "-target", "1.8")
|
||||
javacOptions in (Compile, doc) := Seq("-source", "1.8")
|
||||
|
||||
enablePlugins(Delombok)
|
||||
enablePlugins(DelombokJavadoc)
|
||||
lazy val benchmark = (project in file("benchmark")).dependsOn(LocalRootProject)
|
Reference in New Issue
Block a user