Repository: reef Updated Branches: refs/heads/master 6ebeff444 -> 8be582f5f
[REEF-1702] Restrict JUnit and Mockito dependencies to test in reef-runtime-local Add `test` scope to JUnit and Mockito dependencies JIRA: [REEF-1702](https://issues.apache.org/jira/browse/REEF-1702) Closes #1218 Project: http://git-wip-us.apache.org/repos/asf/reef/repo Commit: http://git-wip-us.apache.org/repos/asf/reef/commit/8be582f5 Tree: http://git-wip-us.apache.org/repos/asf/reef/tree/8be582f5 Diff: http://git-wip-us.apache.org/repos/asf/reef/diff/8be582f5 Branch: refs/heads/master Commit: 8be582f5fbeb53c80a722a1a545ceb82df991e8b Parents: 6ebeff4 Author: Sergiy Matusevych <[email protected]> Authored: Wed Jan 11 18:08:20 2017 -0800 Committer: Yunseong Lee <[email protected]> Committed: Thu Jan 12 22:10:23 2017 +0900 ---------------------------------------------------------------------- lang/java/reef-runtime-local/pom.xml | 2 ++ 1 file changed, 2 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/reef/blob/8be582f5/lang/java/reef-runtime-local/pom.xml ---------------------------------------------------------------------- diff --git a/lang/java/reef-runtime-local/pom.xml b/lang/java/reef-runtime-local/pom.xml index b228c7a..43ca1ee 100644 --- a/lang/java/reef-runtime-local/pom.xml +++ b/lang/java/reef-runtime-local/pom.xml @@ -45,10 +45,12 @@ under the License. <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> + <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> + <scope>test</scope> </dependency> </dependencies>
