This is an automated email from the ASF dual-hosted git repository. myui pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/incubator-hivemall.git
commit 527e39bef53be07f16f30f5d90259521c8068a81 Author: Makoto Yui <m...@apache.org> AuthorDate: Thu Oct 31 19:58:20 2019 +0900 add missing junit dependency --- xgboost/pom.xml | 7 +++++++ xgboost/src/test/java/hivemall/xgboost/XGBoostVersionUDFTest.java | 1 - 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/xgboost/pom.xml b/xgboost/pom.xml index 5672c66..f124102 100644 --- a/xgboost/pom.xml +++ b/xgboost/pom.xml @@ -100,6 +100,13 @@ <version>2.21</version> <scope>compile</scope> </dependency> + + <!-- test scope --> + <dependency> + <groupId>junit</groupId> + <artifactId>junit</artifactId> + <scope>test</scope> + </dependency> </dependencies> </project> diff --git a/xgboost/src/test/java/hivemall/xgboost/XGBoostVersionUDFTest.java b/xgboost/src/test/java/hivemall/xgboost/XGBoostVersionUDFTest.java index dbfd5dd..90f061c 100644 --- a/xgboost/src/test/java/hivemall/xgboost/XGBoostVersionUDFTest.java +++ b/xgboost/src/test/java/hivemall/xgboost/XGBoostVersionUDFTest.java @@ -18,7 +18,6 @@ */ package hivemall.xgboost; - import org.apache.hadoop.hive.ql.metadata.HiveException; import org.junit.Assert; import org.junit.Test;