File tree Expand file tree Collapse file tree 2 files changed +10
-2
lines changed
Expand file tree Collapse file tree 2 files changed +10
-2
lines changed Original file line number Diff line number Diff line change 3939 <artifactId >spark-core_${scala.binary.version}</artifactId >
4040 <version >${project.version} </version >
4141 </dependency >
42+ <dependency >
43+ <groupId >org.apache.spark</groupId >
44+ <artifactId >spark-core_${scala.binary.version}</artifactId >
45+ <version >${project.version} </version >
46+ <type >test-jar</type >
47+ <scope >test</scope >
48+ </dependency >
4249 <dependency >
4350 <groupId >org.apache.spark</groupId >
4451 <artifactId >spark-streaming_${scala.binary.version}</artifactId >
4956 <artifactId >spark-streaming_${scala.binary.version}</artifactId >
5057 <version >${project.version} </version >
5158 <type >test-jar</type >
59+ <scope >test</scope >
5260 </dependency >
5361 <dependency >
5462 <groupId >junit</groupId >
Original file line number Diff line number Diff line change @@ -161,7 +161,7 @@ object SparkBuild extends PomBuild {
161161 // Note ordering of these settings matter.
162162 /* Enable shared settings on all projects */
163163 (allProjects ++ optionallyEnabledProjects ++ assemblyProjects ++ Seq (spark, tools))
164- .foreach(enable(sharedSettings ++ ExludedDependencies .settings ++ Revolver .settings))
164+ .foreach(enable(sharedSettings ++ ExcludedDependencies .settings ++ Revolver .settings))
165165
166166 /* Enable tests settings for all projects except examples, assembly and tools */
167167 (allProjects ++ optionallyEnabledProjects).foreach(enable(TestSettings .settings))
@@ -246,7 +246,7 @@ object Flume {
246246 This excludes library dependencies in sbt, which are specified in maven but are
247247 not needed by sbt build.
248248 */
249- object ExludedDependencies {
249+ object ExcludedDependencies {
250250 lazy val settings = Seq (
251251 libraryDependencies ~= { libs => libs.filterNot(_.name == " groovy-all" ) }
252252 )
You can’t perform that action at this time.
0 commit comments