pom.xml 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6. <parent>
  7. <groupId>com.cloudera.hue.livy</groupId>
  8. <artifactId>livy-main</artifactId>
  9. <relativePath>../pom.xml</relativePath>
  10. <version>3.7.0-SNAPSHOT</version>
  11. </parent>
  12. <artifactId>livy-core</artifactId>
  13. <packaging>jar</packaging>
  14. <dependencies>
  15. <dependency>
  16. <groupId>ch.qos.logback</groupId>
  17. <artifactId>logback-classic</artifactId>
  18. <version>${logback.version}</version>
  19. </dependency>
  20. <dependency>
  21. <groupId>ch.qos.logback</groupId>
  22. <artifactId>logback-access</artifactId>
  23. <version>${logback.version}</version>
  24. </dependency>
  25. <dependency>
  26. <groupId>org.eclipse.jetty</groupId>
  27. <artifactId>jetty-server</artifactId>
  28. <version>${jetty.version}</version>
  29. <scope>container</scope>
  30. </dependency>
  31. <dependency>
  32. <groupId>org.eclipse.jetty</groupId>
  33. <artifactId>jetty-webapp</artifactId>
  34. <version>${jetty.version}</version>
  35. </dependency>
  36. <dependency>
  37. <groupId>org.scalatra</groupId>
  38. <artifactId>scalatra_2.10</artifactId>
  39. <version>${scalatra.version}</version>
  40. </dependency>
  41. <dependency>
  42. <groupId>org.scalatra</groupId>
  43. <artifactId>scalatra-jetty_2.10</artifactId>
  44. <version>${scalatra.version}</version>
  45. </dependency>
  46. <dependency>
  47. <groupId>org.json4s</groupId>
  48. <artifactId>json4s-jackson_2.10</artifactId>
  49. <version>${json4s.version}</version>
  50. </dependency>
  51. <dependency>
  52. <groupId>org.eclipse.jetty</groupId>
  53. <artifactId>jetty-server</artifactId>
  54. <version>${jetty.version}</version>
  55. </dependency>
  56. </dependencies>
  57. <build>
  58. <plugins>
  59. <plugin>
  60. <groupId>org.scala-tools</groupId>
  61. <artifactId>maven-scala-plugin</artifactId>
  62. <version>2.15.2</version>
  63. <executions>
  64. <execution>
  65. <goals>
  66. <goal>compile</goal>
  67. <goal>testCompile</goal>
  68. </goals>
  69. </execution>
  70. </executions>
  71. </plugin>
  72. </plugins>
  73. </build>
  74. <reporting>
  75. <plugins>
  76. <plugin>
  77. <groupId>org.scala-tools</groupId>
  78. <artifactId>maven-scala-plugin</artifactId>
  79. <configuration>
  80. <scalaVersion>${scala.version}</scalaVersion>
  81. </configuration>
  82. </plugin>
  83. </plugins>
  84. </reporting>
  85. </project>