Skip to content

Commit

Permalink
Merge pull request #7 from autodeployai/junit-test
Browse files Browse the repository at this point in the history
Run tests in Java from junit
  • Loading branch information
scorebot authored Sep 12, 2023
2 parents fc028fb + 8cf04d4 commit e11b3d3
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,15 @@ scalacOptions := Seq("-feature", "-language:_", "-unchecked", "-deprecation", "-

scalacOptions in(Compile, doc) := Seq("-no-link-warnings")

crossPaths := false

libraryDependencies ++= {
Seq(
"org.pmml4s" %% "pmml4s" % "1.0.1",
"org.apache.spark" %% "spark-mllib" % "2.4.3" % "provided",
"org.scalatest" %% "scalatest" % "3.0.1" % "test",
"junit" % "junit" % "4.12" % "test"
"junit" % "junit" % "4.12" % "test",
"com.novocode" % "junit-interface" % "0.11" % "test"
)
}

Expand Down

0 comments on commit e11b3d3

Please sign in to comment.