Advertisement
Guest User

Untitled

a guest
Oct 23rd, 2014
113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.18 KB | None | 0 0
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven- 4.0.0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4.  
  5. <groupId>org.apache.spark</groupId>
  6. <artifactId>spark-core_2.10</artifactId>
  7. <version>1.1.0</version>
  8. <packaging>jar</packaging>
  9.  
  10. <name>spark-core_2.10</name>
  11. <url>http://maven.apache.org</url>
  12.  
  13. <properties>
  14. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  15. </properties>
  16.  
  17. <dependency>
  18. <groupId>junit</groupId>
  19. <artifactId>junit</artifactId>
  20. <version>3.8.1</version>
  21. <scope>test</scope>
  22. </dependency>
  23. <dependency>
  24. <groupId>org.apache.spark</groupId>
  25. <artifactId>spark-core_2.10</artifactId>
  26. </dependency>
  27.  
  28. <repositories>
  29. <repository>
  30. <id>Cloudera repository</id>
  31. <url>https://repository.cloudera.com/artifactory/cloudera-repos/</url>
  32. </repository>
  33. </repositories>
  34.  
  35.  
  36.  
  37. <dependencyManagement>
  38. <dependencies>
  39. <dependency>
  40. <groupId>org.apache.spark</groupId>
  41. <artifactId>spark-core_2.10</artifactId>
  42. <version>1.1.0</version>
  43. </dependency>
  44. </dependencies>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement