Repository: zeppelin Updated Branches: refs/heads/master 6f4f0ff96 -> cb174ffc6
ZEPPELIN-3202. Added missing test dependencies in the scio module ### What is this PR for? Added missing test dependencies for the **scio** module to prevent test failures when running `mvn clean install`. ### What type of PR is it? Bug Fix ### Todos * [ ] - Task ### What is the Jira issue? * https://issues.apache.org/jira/browse/ZEPPELIN-3202 ### How should this be tested? * CI pass ### Screenshots (if appropriate) ### Questions: * Does the licenses files need update? no * Is there breaking changes for older versions? no * Does this needs documentation? no Author: Jan Hentschel <jan.hentsc...@ultratendency.com> Closes #2759 from HorizonNet/ZEPPELIN-3202 and squashes the following commits: 2d9ffdf [Jan Hentschel] ZEPPELIN-3202. Added missing test dependencies in the scio module Project: http://git-wip-us.apache.org/repos/asf/zeppelin/repo Commit: http://git-wip-us.apache.org/repos/asf/zeppelin/commit/cb174ffc Tree: http://git-wip-us.apache.org/repos/asf/zeppelin/tree/cb174ffc Diff: http://git-wip-us.apache.org/repos/asf/zeppelin/diff/cb174ffc Branch: refs/heads/master Commit: cb174ffc6a4464e75342b809edc59273d3b4af6a Parents: 6f4f0ff Author: Jan Hentschel <jan.hentsc...@ultratendency.com> Authored: Thu Feb 1 15:53:29 2018 +0100 Committer: Felix Cheung <felixche...@apache.org> Committed: Tue Feb 6 21:15:27 2018 -0800 ---------------------------------------------------------------------- scio/pom.xml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/zeppelin/blob/cb174ffc/scio/pom.xml ---------------------------------------------------------------------- diff --git a/scio/pom.xml b/scio/pom.xml index a62ff2b..08d0696 100644 --- a/scio/pom.xml +++ b/scio/pom.xml @@ -43,6 +43,9 @@ <plugin.shade.version>2.3</plugin.shade.version> <plugin.scala.version>2.15.2</plugin.scala.version> <plugin.avro.version>1.7.7</plugin.avro.version> + + <!--test library versions--> + <hamcrest.all.version>1.3</hamcrest.all.version> </properties> <dependencies> @@ -101,6 +104,25 @@ <scope>test</scope> </dependency> + <dependency> + <groupId>org.hamcrest</groupId> + <artifactId>hamcrest-all</artifactId> + <version>${hamcrest.all.version}</version> + <scope>test</scope> + </dependency> + + <dependency> + <groupId>com.google.code.gson</groupId> + <artifactId>gson</artifactId> + <scope>test</scope> + </dependency> + + <dependency> + <groupId>commons-lang</groupId> + <artifactId>commons-lang</artifactId> + <scope>test</scope> + </dependency> + </dependencies> <build>