pom.xml 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  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-webapp</artifactId>
  28. <version>${jetty.version}</version>
  29. </dependency>
  30. <dependency>
  31. <groupId>org.scalatra</groupId>
  32. <artifactId>scalatra_2.10</artifactId>
  33. <version>${scalatra.version}</version>
  34. </dependency>
  35. <dependency>
  36. <groupId>org.scalatra</groupId>
  37. <artifactId>scalatra-jetty_2.10</artifactId>
  38. <version>${scalatra.version}</version>
  39. </dependency>
  40. <dependency>
  41. <groupId>org.json4s</groupId>
  42. <artifactId>json4s-jackson_2.10</artifactId>
  43. <version>3.2.11</version>
  44. </dependency>
  45. </dependencies>
  46. <build>
  47. <plugins>
  48. <plugin>
  49. <groupId>org.scala-tools</groupId>
  50. <artifactId>maven-scala-plugin</artifactId>
  51. <version>2.15.2</version>
  52. <executions>
  53. <execution>
  54. <goals>
  55. <goal>compile</goal>
  56. <goal>testCompile</goal>
  57. </goals>
  58. </execution>
  59. </executions>
  60. </plugin>
  61. </plugins>
  62. </build>
  63. <reporting>
  64. <plugins>
  65. <plugin>
  66. <groupId>org.scala-tools</groupId>
  67. <artifactId>maven-scala-plugin</artifactId>
  68. <configuration>
  69. <scalaVersion>${scala.version}</scalaVersion>
  70. </configuration>
  71. </plugin>
  72. </plugins>
  73. </reporting>
  74. </project>