Skip to content

Commit

Permalink
fix: add functional-test dependencies to Docker module (#4586)
Browse files Browse the repository at this point in the history
Dependencies required by ksql-test-runner were not present in the artifacts copied to Docker images. This adds them to the ksql-docker pom. cf. #4584
  • Loading branch information
Colin Hicks authored and colinhicks committed Feb 27, 2020
1 parent bd58b8e commit 04fcf8d
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion ksql-docker/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,18 @@
<scope>compile</scope>
</dependency>

<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-all</artifactId>
<scope>compile</scope>
</dependency>

<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>compile</scope>
</dependency>

</dependencies>


Expand Down Expand Up @@ -103,4 +115,4 @@
</plugin>
</plugins>
</build>
</project>
</project>

0 comments on commit 04fcf8d

Please sign in to comment.