Skip to content

Commit

Permalink
Minor. Fix build error and add some missing dependencies for report a…
Browse files Browse the repository at this point in the history
…ggregation.

Closes #219
  • Loading branch information
jerryshao authored and alex-the-man committed Nov 3, 2016
1 parent 4173598 commit ded5b9a
Showing 1 changed file with 21 additions and 3 deletions.
24 changes: 21 additions & 3 deletions coverage/pom.xml
Expand Up @@ -53,13 +53,25 @@

<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>livy-core_${scala.binary.version}</artifactId>
<artifactId>livy-core_2.10</artifactId>
<version>${project.version}</version>
</dependency>

<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>livy-repl_${scala.binary.version}</artifactId>
<artifactId>livy-core_2.11</artifactId>
<version>${project.version}</version>
</dependency>

<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>livy-repl_2.10</artifactId>
<version>${project.version}</version>
</dependency>

<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>livy-repl_2.11</artifactId>
<version>${project.version}</version>
</dependency>

Expand All @@ -77,7 +89,13 @@

<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>livy-scala-api</artifactId>
<artifactId>livy-scala-api_2.10</artifactId>
<version>${project.version}</version>
</dependency>

<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>livy-scala-api_2.11</artifactId>
<version>${project.version}</version>
</dependency>

Expand Down

0 comments on commit ded5b9a

Please sign in to comment.