File tree Expand file tree Collapse file tree 3 files changed +4
-11
lines changed Expand file tree Collapse file tree 3 files changed +4
-11
lines changed Original file line number Diff line number Diff line change 273
273
<repository >
274
274
<id >spark-1.4-staging</id >
275
275
<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 >
277
277
<releases >
278
278
<enabled >true</enabled >
279
279
</releases >
Original file line number Diff line number Diff line change @@ -91,7 +91,8 @@ object MimaBuild {
91
91
92
92
def mimaSettings (sparkHome : File , projectRef : ProjectRef ) = {
93
93
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"
95
96
val fullId = " spark-" + projectRef.project + " _2.10"
96
97
mimaDefaultSettings ++
97
98
Seq (previousArtifact := Some (organization % fullId % previousSparkVersion),
Original file line number Diff line number Diff line change @@ -43,15 +43,7 @@ object MimaExcludes {
43
43
MimaBuild .excludeSparkPackage(" unused" ),
44
44
// SPARK-7805 - Some SQL test code accidentally included in src/main
45
45
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" )
55
47
)
56
48
case v if v.startsWith(" 1.4" ) =>
57
49
Seq (
You can’t perform that action at this time.
0 commit comments