Sha256: dd043a17bd15a3e3c39fd612e87b7f59013e4085cc2db3eac55983b850cfff9a

Contents?: true

Size: 879 Bytes

Versions: 1

Compression:

Stored size: 879 Bytes

Contents

val embulkVersion = "0.8.35"

lazy val commonSettings = Seq(
  organization := "com.github.maji-KY",
  scalaVersion := "2.12.4",
  version := "CANNOT_RELEASE",
  scalacOptions ++= Seq(
    "-deprecation",
    "-feature",
    "-unchecked",
    "-Xlint",
    "-Ywarn-dead-code",
    "-Ywarn-numeric-widen",
    "-Ywarn-unused",
    "-Ywarn-value-discard"
  ),
  resolvers += Resolver.jcenterRepo,
  libraryDependencies ++= Seq(
    "org.embulk" % "embulk-core" % embulkVersion,
    "org.embulk" % "embulk-core" % embulkVersion classifier "tests",
    "junit" % "junit" % "4.+" % "test",
    "org.scalatest" %% "scalatest" % "3.0.4" % "test"
  )
)

lazy val benchmark = (project in file("benchmark"))
  .aggregate(main)
  .settings(commonSettings)
  .dependsOn(main % "compile->test")
  .enablePlugins(JmhPlugin)

lazy val main = (project in file("."))
  .settings(commonSettings)

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
embulk-parser-xpath2-0.0.4 build.sbt