pom.xml 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!--
  3. ~ Licensed to the Apache Software Foundation (ASF) under one or more
  4. ~ contributor license agreements. See the NOTICE file distributed with
  5. ~ this work for additional information regarding copyright ownership.
  6. ~ The ASF licenses this file to You under the Apache License, Version 2.0
  7. ~ (the "License"); you may not use this file except in compliance with
  8. ~ the License. You may obtain a copy of the License at
  9. ~
  10. ~ http://www.apache.org/licenses/LICENSE-2.0
  11. ~
  12. ~ Unless required by applicable law or agreed to in writing, software
  13. ~ distributed under the License is distributed on an "AS IS" BASIS,
  14. ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  15. ~ See the License for the specific language governing permissions and
  16. ~ limitations under the License.
  17. -->
  18. <project xmlns="http://maven.apache.org/POM/4.0.0"
  19. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  20. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  21. <modelVersion>4.0.0</modelVersion>
  22. <parent>
  23. <groupId>org.apache.livy</groupId>
  24. <artifactId>livy-main</artifactId>
  25. <version>0.8.0-incubating-SNAPSHOT</version>
  26. <relativePath>../pom.xml</relativePath>
  27. </parent>
  28. <groupId>org.apache.livy</groupId>
  29. <artifactId>livy-examples</artifactId>
  30. <version>0.8.0-incubating-SNAPSHOT</version>
  31. <packaging>jar</packaging>
  32. <properties>
  33. <skipTests>true</skipTests>
  34. <skip>true</skip>
  35. <skipDeploy>true</skipDeploy>
  36. </properties>
  37. <dependencies>
  38. <dependency>
  39. <groupId>org.apache.livy</groupId>
  40. <artifactId>livy-api</artifactId>
  41. <version>${project.version}</version>
  42. </dependency>
  43. <dependency>
  44. <groupId>org.apache.livy</groupId>
  45. <artifactId>livy-scala-api_${scala.binary.version}</artifactId>
  46. <version>${project.version}</version>
  47. </dependency>
  48. <dependency>
  49. <groupId>org.apache.livy</groupId>
  50. <artifactId>livy-client-http</artifactId>
  51. <version>${project.version}</version>
  52. </dependency>
  53. <dependency>
  54. <groupId>org.apache.spark</groupId>
  55. <artifactId>spark-core_${scala.binary.version}</artifactId>
  56. </dependency>
  57. <dependency>
  58. <groupId>org.apache.spark</groupId>
  59. <artifactId>spark-sql_${scala.binary.version}</artifactId>
  60. </dependency>
  61. <dependency>
  62. <groupId>org.apache.spark</groupId>
  63. <artifactId>spark-hive_${scala.binary.version}</artifactId>
  64. </dependency>
  65. <dependency>
  66. <groupId>org.apache.spark</groupId>
  67. <artifactId>spark-streaming_${scala.binary.version}</artifactId>
  68. </dependency>
  69. </dependencies>
  70. </project>