pom.xml 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  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>multi-scala-project-root</artifactId>
  25. <version>0.8.0-incubating-SNAPSHOT</version>
  26. <relativePath>../scala/pom.xml</relativePath>
  27. </parent>
  28. <artifactId>livy-scala-api-parent</artifactId>
  29. <version>0.8.0-incubating-SNAPSHOT</version>
  30. <packaging>pom</packaging>
  31. <dependencies>
  32. <dependency>
  33. <groupId>org.apache.livy</groupId>
  34. <artifactId>livy-api</artifactId>
  35. <version>${project.version}</version>
  36. <scope>provided</scope>
  37. </dependency>
  38. <dependency>
  39. <groupId>org.apache.livy</groupId>
  40. <artifactId>livy-rsc</artifactId>
  41. <version>${project.version}</version>
  42. <exclusions>
  43. <exclusion>
  44. <groupId>io.netty</groupId>
  45. <artifactId>netty-all</artifactId>
  46. </exclusion>
  47. </exclusions>
  48. <scope>test</scope>
  49. </dependency>
  50. <dependency>
  51. <groupId>io.netty</groupId>
  52. <artifactId>netty-all</artifactId>
  53. <scope>test</scope>
  54. </dependency>
  55. <dependency>
  56. <groupId>org.apache.livy</groupId>
  57. <artifactId>livy-core_${scala.binary.version}</artifactId>
  58. <version>${project.version}</version>
  59. <scope>test</scope>
  60. </dependency>
  61. <dependency>
  62. <groupId>org.apache.livy</groupId>
  63. <artifactId>livy-core_${scala.binary.version}</artifactId>
  64. <version>${project.version}</version>
  65. <type>test-jar</type>
  66. <scope>test</scope>
  67. </dependency>
  68. <dependency>
  69. <groupId>org.apache.spark</groupId>
  70. <artifactId>spark-core_${scala.binary.version}</artifactId>
  71. <scope>provided</scope>
  72. </dependency>
  73. <dependency>
  74. <groupId>org.apache.spark</groupId>
  75. <artifactId>spark-sql_${scala.binary.version}</artifactId>
  76. <scope>provided</scope>
  77. </dependency>
  78. <dependency>
  79. <groupId>org.apache.spark</groupId>
  80. <artifactId>spark-hive_${scala.binary.version}</artifactId>
  81. <scope>provided</scope>
  82. </dependency>
  83. <dependency>
  84. <groupId>org.apache.spark</groupId>
  85. <artifactId>spark-streaming_${scala.binary.version}</artifactId>
  86. <scope>provided</scope>
  87. </dependency>
  88. </dependencies>
  89. </project>