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
c2587186
Commit
c2587186
authored
11 years ago
by
Matei Zaharia
Browse files
Options
Downloads
Patches
Plain Diff
Fix Maven build errors after previous commits
parent
52723b99
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
pom.xml
+10
-8
10 additions, 8 deletions
pom.xml
tools/pom.xml
+119
-14
119 additions, 14 deletions
tools/pom.xml
with
129 additions
and
22 deletions
pom.xml
+
10
−
8
View file @
c2587186
...
...
@@ -248,6 +248,16 @@
<artifactId>
lift-json_2.9.2
</artifactId>
<version>
2.5
</version>
</dependency>
<dependency>
<groupId>
com.codahale.metrics
</groupId>
<artifactId>
metrics-core
</artifactId>
<version>
3.0.0
</version>
</dependency>
<dependency>
<groupId>
com.codahale.metrics
</groupId>
<artifactId>
metrics-jvm
</artifactId>
<version>
3.0.0
</version>
</dependency>
<dependency>
<groupId>
org.scala-lang
</groupId>
<artifactId>
scala-compiler
</artifactId>
...
...
@@ -267,14 +277,6 @@
<groupId>
org.scala-lang
</groupId>
<artifactId>
scalap
</artifactId>
<version>
${scala.version}
</version>
<groupId>
com.codahale.metrics
</groupId>
<artifactId>
metrics-core
</artifactId>
<version>
3.0.0
</version>
</dependency>
<dependency>
<groupId>
com.codahale.metrics
</groupId>
<artifactId>
metrics-jvm
</artifactId>
<version>
3.0.0
</version>
</dependency>
<dependency>
...
...
This diff is collapsed.
Click to expand it.
tools/pom.xml
+
119
−
14
View file @
c2587186
...
...
@@ -20,28 +20,16 @@
<parent>
<groupId>
org.spark-project
</groupId>
<artifactId>
spark-parent
</artifactId>
<version>
0.
7.4
-SNAPSHOT
</version>
<version>
0.
8.0
-SNAPSHOT
</version>
<relativePath>
../pom.xml
</relativePath>
</parent>
<groupId>
org.spark-project
</groupId>
<artifactId>
spark-tools
_2.9.3
</artifactId>
<artifactId>
spark-tools
</artifactId>
<packaging>
jar
</packaging>
<name>
Spark Project Tools
</name>
<url>
http://spark-project.org/
</url>
<dependencies>
<dependency>
<groupId>
org.spark-project
</groupId>
<artifactId>
spark-core_2.9.3
</artifactId>
<version>
${project.version}
</version>
</dependency>
<dependency>
<groupId>
org.spark-project
</groupId>
<artifactId>
spark-streaming_2.9.3
</artifactId>
<version>
${project.version}
</version>
</dependency>
</dependencies>
<build>
<outputDirectory>
target/scala-${scala.version}/classes
</outputDirectory>
<testOutputDirectory>
target/scala-${scala.version}/test-classes
</testOutputDirectory>
...
...
@@ -60,4 +48,121 @@
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>
hadoop1
</id>
<dependencies>
<dependency>
<groupId>
org.spark-project
</groupId>
<artifactId>
spark-core
</artifactId>
<version>
${project.version}
</version>
<classifier>
hadoop1
</classifier>
</dependency>
<dependency>
<groupId>
org.spark-project
</groupId>
<artifactId>
spark-streaming
</artifactId>
<version>
${project.version}
</version>
<classifier>
hadoop1
</classifier>
</dependency>
<dependency>
<groupId>
org.apache.hadoop
</groupId>
<artifactId>
hadoop-core
</artifactId>
<scope>
provided
</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>
org.apache.maven.plugins
</groupId>
<artifactId>
maven-jar-plugin
</artifactId>
<configuration>
<classifier>
hadoop1
</classifier>
</configuration>
</plugin>
</plugins>
</build>
</profile>
<profile>
<id>
hadoop2
</id>
<dependencies>
<dependency>
<groupId>
org.spark-project
</groupId>
<artifactId>
spark-core
</artifactId>
<version>
${project.version}
</version>
<classifier>
hadoop2
</classifier>
</dependency>
<dependency>
<groupId>
org.spark-project
</groupId>
<artifactId>
spark-streaming
</artifactId>
<version>
${project.version}
</version>
<classifier>
hadoop2
</classifier>
</dependency>
<dependency>
<groupId>
org.apache.hadoop
</groupId>
<artifactId>
hadoop-core
</artifactId>
<scope>
provided
</scope>
</dependency>
<dependency>
<groupId>
org.apache.hadoop
</groupId>
<artifactId>
hadoop-client
</artifactId>
<scope>
provided
</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>
org.apache.maven.plugins
</groupId>
<artifactId>
maven-jar-plugin
</artifactId>
<configuration>
<classifier>
hadoop2
</classifier>
</configuration>
</plugin>
</plugins>
</build>
</profile>
<profile>
<id>
hadoop2-yarn
</id>
<dependencies>
<dependency>
<groupId>
org.spark-project
</groupId>
<artifactId>
spark-core
</artifactId>
<version>
${project.version}
</version>
<classifier>
hadoop2-yarn
</classifier>
</dependency>
<dependency>
<groupId>
org.spark-project
</groupId>
<artifactId>
spark-streaming
</artifactId>
<version>
${project.version}
</version>
<classifier>
hadoop2-yarn
</classifier>
</dependency>
<dependency>
<groupId>
org.apache.hadoop
</groupId>
<artifactId>
hadoop-client
</artifactId>
<scope>
provided
</scope>
</dependency>
<dependency>
<groupId>
org.apache.hadoop
</groupId>
<artifactId>
hadoop-yarn-api
</artifactId>
<scope>
provided
</scope>
</dependency>
<dependency>
<groupId>
org.apache.hadoop
</groupId>
<artifactId>
hadoop-yarn-common
</artifactId>
<scope>
provided
</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>
org.apache.maven.plugins
</groupId>
<artifactId>
maven-jar-plugin
</artifactId>
<configuration>
<classifier>
hadoop2-yarn
</classifier>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>
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