Skip to content

Commit c0e333d

Browse files
pj.fanningsrowen
authored andcommitted
[SPARK-21709][BUILD] sbt 0.13.16 and some plugin updates
## What changes were proposed in this pull request? Update sbt version to 0.13.16. I think this is a useful stepping stone to getting to sbt 1.0.0. ## How was this patch tested? Existing Build. Author: pj.fanning <[email protected]> Closes apache#18921 from pjfanning/SPARK-21709.
1 parent 35db3b9 commit c0e333d

File tree

3 files changed

+13
-4
lines changed

3 files changed

+13
-4
lines changed

dev/mima

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ $JAVA_CMD \
4141
-cp "$TOOLS_CLASSPATH:$OLD_DEPS_CLASSPATH" \
4242
org.apache.spark.tools.GenerateMIMAIgnore
4343

44-
echo -e "q\n" | build/sbt -DcopyDependencies=false "$@" mimaReportBinaryIssues | grep -v -e "info.*Resolving"
44+
echo -e "q\n" | build/sbt -mem 4096 -DcopyDependencies=false "$@" mimaReportBinaryIssues | grep -v -e "info.*Resolving"
4545
ret_val=$?
4646

4747
if [ $ret_val != 0 ]; then

project/build.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,4 @@
1414
# See the License for the specific language governing permissions and
1515
# limitations under the License.
1616
#
17-
sbt.version=0.13.13
17+
sbt.version=0.13.16

project/plugins.sbt

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,34 @@
1+
// need to make changes to uptake sbt 1.0 support in "com.eed3si9n" % "sbt-assembly" % "1.14.5"
12
addSbtPlugin("com.eed3si9n" % "sbt-assembly" % "0.11.2")
23

3-
addSbtPlugin("com.typesafe.sbteclipse" % "sbteclipse-plugin" % "5.0.1")
4+
// sbt 1.0.0 support: https://github.com/typesafehub/sbteclipse/issues/343
5+
addSbtPlugin("com.typesafe.sbteclipse" % "sbteclipse-plugin" % "5.1.0")
46

7+
// sbt 1.0.0 support: https://github.com/jrudolph/sbt-dependency-graph/issues/134
58
addSbtPlugin("net.virtual-void" % "sbt-dependency-graph" % "0.8.2")
69

10+
// need to make changes to uptake sbt 1.0 support in "org.scalastyle" %% "scalastyle-sbt-plugin" % "0.9.0"
711
addSbtPlugin("org.scalastyle" %% "scalastyle-sbt-plugin" % "0.8.0")
812

9-
addSbtPlugin("com.typesafe" % "sbt-mima-plugin" % "0.1.12")
13+
addSbtPlugin("com.typesafe" % "sbt-mima-plugin" % "0.1.17")
1014

15+
// sbt 1.0.0 support: https://github.com/AlpineNow/junit_xml_listener/issues/6
1116
addSbtPlugin("com.alpinenow" % "junit_xml_listener" % "0.5.1")
1217

18+
// need to make changes to uptake sbt 1.0 support in "com.eed3si9n" % "sbt-unidoc" % "0.4.1"
1319
addSbtPlugin("com.eed3si9n" % "sbt-unidoc" % "0.3.3")
1420

21+
// need to make changes to uptake sbt 1.0 support in "com.cavorite" % "sbt-avro-1-7" % "1.1.2"
1522
addSbtPlugin("com.cavorite" % "sbt-avro" % "0.3.2")
1623

24+
// sbt 1.0.0 support: https://github.com/spray/sbt-revolver/issues/62
1725
addSbtPlugin("io.spray" % "sbt-revolver" % "0.8.0")
1826

1927
libraryDependencies += "org.ow2.asm" % "asm" % "5.1"
2028

2129
libraryDependencies += "org.ow2.asm" % "asm-commons" % "5.1"
2230

31+
// sbt 1.0.0 support: https://github.com/ihji/sbt-antlr4/issues/14
2332
addSbtPlugin("com.simplytyped" % "sbt-antlr4" % "0.7.11")
2433

2534
// Spark uses a custom fork of the sbt-pom-reader plugin which contains a patch to fix issues

0 commit comments

Comments
 (0)