Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
spark
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
cs525-sp18-g07
spark
Commits
4b4a36ea
Commit
4b4a36ea
authored
11 years ago
by
Prashant Sharma
Browse files
Options
Downloads
Patches
Plain Diff
Fixed pom.xml with updated dependencies.
parent
bb4102b0
No related branches found
No related tags found
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
README.md
+2
-3
2 additions, 3 deletions
README.md
examples/pom.xml
+1
-1
1 addition, 1 deletion
examples/pom.xml
project/SparkBuild.scala
+2
-2
2 additions, 2 deletions
project/SparkBuild.scala
streaming/pom.xml
+11
-1
11 additions, 1 deletion
streaming/pom.xml
with
16 additions
and
7 deletions
README.md
+
2
−
3
View file @
4b4a36ea
...
...
@@ -12,9 +12,8 @@ This README file only contains basic setup instructions.
## Building
Spark requires Scala 2.9.2 (Scala 2.10 is not yet supported). The project is
built using Simple Build Tool (SBT), which is packaged with it. To build
Spark and its example programs, run:
Spark requires Scala 2.10. The project is built using Simple Build Tool (SBT),
which is packaged with it. To build Spark and its example programs, run:
sbt/sbt package
...
...
This diff is collapsed.
Click to expand it.
examples/pom.xml
+
1
−
1
View file @
4b4a36ea
...
...
@@ -21,7 +21,7 @@
</dependency>
<dependency>
<groupId>
com.twitter
</groupId>
<artifactId>
algebird-core_2.
9.2
</artifactId>
<artifactId>
algebird-core_2.
10
</artifactId>
<version>
0.1.11
</version>
</dependency>
<dependency>
...
...
This diff is collapsed.
Click to expand it.
project/SparkBuild.scala
+
2
−
2
View file @
4b4a36ea
...
...
@@ -170,7 +170,7 @@ object SparkBuild extends Build {
def
examplesSettings
=
sharedSettings
++
Seq
(
name
:=
"spark-examples"
,
libraryDependencies
++=
Seq
(
"com.twitter"
%
"algebird-core
_2.9.2
"
%
"0.1.11"
)
libraryDependencies
++=
Seq
(
"com.twitter"
%
%
"algebird-core"
%
"0.1.11"
)
)
def
bagelSettings
=
sharedSettings
++
Seq
(
name
:=
"spark-bagel"
)
...
...
@@ -178,7 +178,7 @@ object SparkBuild extends Build {
def
streamingSettings
=
sharedSettings
++
Seq
(
name
:=
"spark-streaming"
,
libraryDependencies
++=
Seq
(
"org.apache.flume"
%
"flume-ng-sdk"
%
"1.2.0"
%
"compile"
,
"org.apache.flume"
%
"flume-ng-sdk"
%
"1.2.0"
%
"compile"
,
"com.github.sgroschupf"
%
"zkclient"
%
"0.1"
,
"org.twitter4j"
%
"twitter4j-stream"
%
"3.0.3"
,
"com.typesafe.akka"
%
"akka-zeromq"
%
"2.1-M1"
excludeAll
(
ExclusionRule
(
name
=
"akka-actor"
),
ExclusionRule
(
organization
=
"org.scala-lang"
))
...
...
This diff is collapsed.
Click to expand it.
streaming/pom.xml
+
11
−
1
View file @
4b4a36ea
...
...
@@ -55,7 +55,17 @@
<dependency>
<groupId>
com.typesafe.akka
</groupId>
<artifactId>
akka-zeromq
</artifactId>
<version>
2.0.3
</version>
<version>
2.1-M1
</version>
<exclusions>
<exclusion>
<groupId>
org.scala-lang
</groupId>
<artifactId>
scala-library
</artifactId>
</exclusion>
<exclusion>
<groupId>
com.typesafe.akka
</groupId>
<artifactId>
akka-actor
</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>
org.scalatest
</groupId>
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment