pom.xml 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!--
  3. ~ Licensed to Cloudera, Inc. under one
  4. ~ or more contributor license agreements. See the NOTICE file
  5. ~ distributed with this work for additional information
  6. ~ regarding copyright ownership. Cloudera, Inc. licenses this file
  7. ~ to you under the Apache License, Version 2.0 (the
  8. ~ "License"); you may not use this file except in compliance
  9. ~ with the License. You may obtain a copy of the License at
  10. ~
  11. ~ http://www.apache.org/licenses/LICENSE-2.0
  12. ~
  13. ~ Unless required by applicable law or agreed to in writing, software
  14. ~ distributed under the License is distributed on an "AS IS" BASIS,
  15. ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  16. ~ See the License for the specific language governing permissions and
  17. ~ limitations under the License.
  18. -->
  19. <project xmlns="http://maven.apache.org/POM/4.0.0"
  20. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  21. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  22. <modelVersion>4.0.0</modelVersion>
  23. <parent>
  24. <groupId>com.cloudera.livy</groupId>
  25. <artifactId>livy-main_2.10</artifactId>
  26. <version>0.2.0-SNAPSHOT</version>
  27. <relativePath>../pom.xml</relativePath>
  28. </parent>
  29. <artifactId>livy-core_2.10</artifactId>
  30. <version>0.2.0-SNAPSHOT</version>
  31. <packaging>jar</packaging>
  32. <dependencies>
  33. <dependency>
  34. <groupId>log4j</groupId>
  35. <artifactId>log4j</artifactId>
  36. </dependency>
  37. <dependency>
  38. <groupId>javax.servlet</groupId>
  39. <artifactId>javax.servlet-api</artifactId>
  40. </dependency>
  41. <dependency>
  42. <groupId>org.eclipse.jetty</groupId>
  43. <artifactId>jetty-server</artifactId>
  44. </dependency>
  45. <dependency>
  46. <groupId>org.eclipse.jetty</groupId>
  47. <artifactId>jetty-servlet</artifactId>
  48. </dependency>
  49. <dependency>
  50. <groupId>org.eclipse.jetty</groupId>
  51. <artifactId>jetty-util</artifactId>
  52. </dependency>
  53. <dependency>
  54. <groupId>org.json4s</groupId>
  55. <artifactId>json4s-ast_${scala.binary.version}</artifactId>
  56. </dependency>
  57. <dependency>
  58. <groupId>org.json4s</groupId>
  59. <artifactId>json4s-core_${scala.binary.version}</artifactId>
  60. </dependency>
  61. <dependency>
  62. <groupId>org.scala-lang</groupId>
  63. <artifactId>scala-library</artifactId>
  64. </dependency>
  65. <dependency>
  66. <groupId>org.scalatra</groupId>
  67. <artifactId>scalatra_${scala.binary.version}</artifactId>
  68. <exclusions>
  69. <exclusion>
  70. <groupId>com.typesafe.akka</groupId>
  71. <artifactId>akka-actor_${scala.binary.version}</artifactId>
  72. </exclusion>
  73. </exclusions>
  74. </dependency>
  75. <dependency>
  76. <groupId>org.slf4j</groupId>
  77. <artifactId>slf4j-api</artifactId>
  78. </dependency>
  79. </dependencies>
  80. <build>
  81. <plugins>
  82. <plugin>
  83. <groupId>org.apache.maven.plugins</groupId>
  84. <artifactId>maven-jar-plugin</artifactId>
  85. <executions>
  86. <execution>
  87. <goals>
  88. <goal>test-jar</goal>
  89. </goals>
  90. </execution>
  91. </executions>
  92. </plugin>
  93. </plugins>
  94. </build>
  95. </project>