Skip to content

Commit 61aaf46

Browse files
committed
Using new release candidate
1 parent 55f1610 commit 61aaf46

File tree

3 files changed

+4
-11
lines changed

3 files changed

+4
-11
lines changed

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -273,7 +273,7 @@
273273
<repository>
274274
<id>spark-1.4-staging</id>
275275
<name>Spark 1.4 RC1 Staging Repository</name>
276-
<url>https://repository.apache.org/content/repositories/orgapachespark-1092</url>
276+
<url>https://repository.apache.org/content/repositories/orgapachespark-1104</url>
277277
<releases>
278278
<enabled>true</enabled>
279279
</releases>

project/MimaBuild.scala

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,8 @@ object MimaBuild {
9191

9292
def mimaSettings(sparkHome: File, projectRef: ProjectRef) = {
9393
val organization = "org.apache.spark"
94-
val previousSparkVersion = "1.4.0"
94+
// TODO: Change this once Spark 1.4.0 is released
95+
val previousSparkVersion = "1.4.0-rc2"
9596
val fullId = "spark-" + projectRef.project + "_2.10"
9697
mimaDefaultSettings ++
9798
Seq(previousArtifact := Some(organization % fullId % previousSparkVersion),

project/MimaExcludes.scala

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -43,15 +43,7 @@ object MimaExcludes {
4343
MimaBuild.excludeSparkPackage("unused"),
4444
// SPARK-7805 - Some SQL test code accidentally included in src/main
4545
ProblemFilters.exclude[MissingMethodProblem](
46-
"org.apache.spark.sql.test.SQLTestUtils.withTable"),
47-
// TODO: REMOVE THESE AFTER 1.4 IS RELEASED - Transient changes in 1.4
48-
ProblemFilters.exclude[MissingClassProblem](
49-
"org.apache.spark.status.api.v1.JsonRootResource"),
50-
ProblemFilters.exclude[MissingClassProblem](
51-
"org.apache.spark.status.api.v1.JsonRootResource$"),
52-
ProblemFilters.exclude[MissingMethodProblem](
53-
"org.apache.spark.streaming.StreamingContext.withNamedScope"),
54-
excludePackage("org.apache.spark.sql.sources.HadoopFsRelation")
46+
"org.apache.spark.sql.test.SQLTestUtils.withTable")
5547
)
5648
case v if v.startsWith("1.4") =>
5749
Seq(

0 commit comments

Comments
 (0)