aboutsummaryrefslogtreecommitdiff
path: root/project
diff options
context:
space:
mode:
authorLuciano Resende <lresende@apache.org>2016-05-05 10:54:48 +0100
committerSean Owen <sowen@cloudera.com>2016-05-05 10:54:48 +0100
commit104430223eb62a7946f939fbf97242c636adbebe (patch)
treeed10fa3ae444e0ef43c9db91f7ff379b11eeee80 /project
parent4c0d827cfc30243893b0f6c0b496e2e0c866cb54 (diff)
downloadspark-104430223eb62a7946f939fbf97242c636adbebe.tar.gz
spark-104430223eb62a7946f939fbf97242c636adbebe.tar.bz2
spark-104430223eb62a7946f939fbf97242c636adbebe.zip
[SPARK-14589][SQL] Enhance DB2 JDBC Dialect docker tests
## What changes were proposed in this pull request? Enhance the DB2 JDBC Dialect docker tests as they seemed to have had some issues on previous merge causing some tests to fail. ## How was this patch tested? By running the integration tests locally. Author: Luciano Resende <lresende@apache.org> Closes #12348 from lresende/SPARK-14589.
Diffstat (limited to 'project')
-rw-r--r--project/SparkBuild.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/project/SparkBuild.scala b/project/SparkBuild.scala
index f7781e0ef1..9249248c71 100644
--- a/project/SparkBuild.scala
+++ b/project/SparkBuild.scala
@@ -453,7 +453,7 @@ object DockerIntegrationTests {
// This serves to override the override specified in DependencyOverrides:
lazy val settings = Seq(
dependencyOverrides += "com.google.guava" % "guava" % "18.0",
- resolvers ++= Seq("DB2" at "https://app.camunda.com/nexus/content/repositories/public/"),
+ resolvers += "DB2" at "https://app.camunda.com/nexus/content/repositories/public/",
libraryDependencies += "com.oracle" % "ojdbc6" % "11.2.0.1.0" from "https://app.camunda.com/nexus/content/repositories/public/com/oracle/ojdbc6/11.2.0.1.0/ojdbc6-11.2.0.1.0.jar" // scalastyle:ignore
)
}