pom.xml 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157
  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. <relativePath>../pom.xml</relativePath>
  26. <version>0.8.0-incubating-SNAPSHOT</version>
  27. </parent>
  28. <artifactId>livy-coverage-report</artifactId>
  29. <version>0.8.0-incubating-SNAPSHOT</version>
  30. <packaging>pom</packaging>
  31. <dependencies>
  32. <dependency>
  33. <groupId>${project.groupId}</groupId>
  34. <artifactId>livy-api</artifactId>
  35. <version>${project.version}</version>
  36. </dependency>
  37. <dependency>
  38. <groupId>${project.groupId}</groupId>
  39. <artifactId>livy-client-common</artifactId>
  40. <version>${project.version}</version>
  41. </dependency>
  42. <dependency>
  43. <groupId>${project.groupId}</groupId>
  44. <artifactId>livy-client-http</artifactId>
  45. <version>${project.version}</version>
  46. </dependency>
  47. <dependency>
  48. <groupId>${project.groupId}</groupId>
  49. <artifactId>livy-core_2.11</artifactId>
  50. <version>${project.version}</version>
  51. </dependency>
  52. <dependency>
  53. <groupId>${project.groupId}</groupId>
  54. <artifactId>livy-core_2.12</artifactId>
  55. <version>${project.version}</version>
  56. </dependency>
  57. <dependency>
  58. <groupId>${project.groupId}</groupId>
  59. <artifactId>livy-repl_2.11</artifactId>
  60. <version>${project.version}</version>
  61. </dependency>
  62. <dependency>
  63. <groupId>${project.groupId}</groupId>
  64. <artifactId>livy-repl_2.12</artifactId>
  65. <version>${project.version}</version>
  66. </dependency>
  67. <dependency>
  68. <groupId>${project.groupId}</groupId>
  69. <artifactId>livy-rsc</artifactId>
  70. <version>${project.version}</version>
  71. </dependency>
  72. <dependency>
  73. <groupId>${project.groupId}</groupId>
  74. <artifactId>livy-server</artifactId>
  75. <version>${project.version}</version>
  76. </dependency>
  77. <dependency>
  78. <groupId>${project.groupId}</groupId>
  79. <artifactId>livy-scala-api_2.11</artifactId>
  80. <version>${project.version}</version>
  81. </dependency>
  82. <dependency>
  83. <groupId>${project.groupId}</groupId>
  84. <artifactId>livy-scala-api_2.12</artifactId>
  85. <version>${project.version}</version>
  86. </dependency>
  87. <dependency>
  88. <groupId>${project.groupId}</groupId>
  89. <artifactId>livy-integration-test</artifactId>
  90. <version>${project.version}</version>
  91. <scope>test</scope>
  92. </dependency>
  93. <dependency>
  94. <groupId>${project.groupId}</groupId>
  95. <artifactId>livy-test-lib</artifactId>
  96. <version>${project.version}</version>
  97. <scope>test</scope>
  98. </dependency>
  99. </dependencies>
  100. <build>
  101. <plugins>
  102. <plugin>
  103. <groupId>org.jacoco</groupId>
  104. <artifactId>jacoco-maven-plugin</artifactId>
  105. <executions>
  106. <execution>
  107. <id>jacoco-report</id>
  108. <phase>verify</phase>
  109. <goals>
  110. <goal>report-aggregate</goal>
  111. </goals>
  112. <configuration>
  113. <dataFileIncludes>
  114. <dataFileInclude>target/jacoco/*.exec</dataFileInclude>
  115. </dataFileIncludes>
  116. </configuration>
  117. </execution>
  118. </executions>
  119. </plugin>
  120. <plugin>
  121. <groupId>org.apache.maven.plugins</groupId>
  122. <artifactId>maven-surefire-plugin</artifactId>
  123. <configuration>
  124. <skipTests>true</skipTests>
  125. </configuration>
  126. </plugin>
  127. <plugin>
  128. <groupId>org.scalatest</groupId>
  129. <artifactId>scalatest-maven-plugin</artifactId>
  130. <configuration>
  131. <skipTests>true</skipTests>
  132. </configuration>
  133. </plugin>
  134. </plugins>
  135. </build>
  136. </project>