Sha256: 4e880561bf5b69d956e7913922e544c071d60a5d58d11f41f2498124f1592fc8
Contents?: true
Size: 924 Bytes
Versions: 2
Compression:
Stored size: 924 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( "com.ximpleware" % "vtd-xml" % "2.13.4", "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
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
embulk-parser-xpath2-0.1.1 | build.sbt |
embulk-parser-xpath2-0.1.0 | build.sbt |