Skip to content

Commit 62b09bb

Browse files
committed
Improvements.
1 parent fa6221d commit 62b09bb

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@
110110
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
111111

112112
<java.version>1.6</java.version>
113-
113+
<sbt.project.name>spark</sbt.project.name>
114114
<scala.version>2.10.4</scala.version>
115115
<scala.binary.version>2.10</scala.binary.version>
116116
<mesos.version>0.18.1</mesos.version>

project/SparkBuild.scala

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -59,11 +59,11 @@ object SparkBuild extends PomBuild {
5959
var isAlphaYarn = false
6060
var profiles: mutable.Seq[String] = mutable.Seq.empty
6161
if (Properties.envOrNone("SPARK_GANGLIA_LGPL").isDefined) {
62-
println("NOTE: SPARK_GANGLIA_LGPL is deprecated, Use the -Pganglia-lgpl flag.")
62+
println("NOTE: SPARK_GANGLIA_LGPL is deprecated, please use -Pganglia-lgpl flag.")
6363
profiles ++= Seq("spark-ganglia-lgpl")
6464
}
6565
if (Properties.envOrNone("SPARK_HIVE").isDefined) {
66-
println("NOTE: SPARK_HIVE is deprecated, Use the -Phive flag.")
66+
println("NOTE: SPARK_HIVE is deprecated, please use -Phive flag.")
6767
profiles ++= Seq("hive")
6868
}
6969
Properties.envOrNone("SPARK_HADOOP_VERSION") match {
@@ -75,11 +75,11 @@ object SparkBuild extends PomBuild {
7575
}
7676
if (Properties.envOrNone("SPARK_YARN").isDefined) {
7777
if(isAlphaYarn) {
78-
println("NOTE: SPARK_YARN is deprecated, Use the -Pyarn-alpha flag.")
78+
println("NOTE: SPARK_YARN is deprecated, please use -Pyarn-alpha flag.")
7979
profiles ++= Seq("yarn-alpha")
8080
}
8181
else {
82-
println("NOTE: SPARK_YARN is deprecated, Use the -Pyarn flag.")
82+
println("NOTE: SPARK_YARN is deprecated, please use -Pyarn flag.")
8383
profiles ++= Seq("yarn")
8484
}
8585
}

0 commit comments

Comments
 (0)