This is an automated email from the ASF dual-hosted git repository. jgallimore pushed a commit to branch tomee-1.7.x in repository https://gitbox.apache.org/repos/asf/tomee.git
commit 41716a60f48366db4f0a04fb73f7c74485310dd4 Author: Jonathan Gallimore <[email protected]> AuthorDate: Fri Feb 22 14:54:09 2019 +0000 Shift the "App" class to src/test --- examples/ejb-remote-call/pom.xml | 2 +- .../src/{main => test}/java/org/superbiz/remote/App.java | 0 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/ejb-remote-call/pom.xml b/examples/ejb-remote-call/pom.xml index d0d4851..2708914 100644 --- a/examples/ejb-remote-call/pom.xml +++ b/examples/ejb-remote-call/pom.xml @@ -72,7 +72,7 @@ <groupId>org.apache.tomee</groupId> <artifactId>openejb-client</artifactId> <version>${project.version}</version> - <scope>provided</scope> + <scope>test</scope> </dependency> <dependency> <groupId>junit</groupId> diff --git a/examples/ejb-remote-call/src/main/java/org/superbiz/remote/App.java b/examples/ejb-remote-call/src/test/java/org/superbiz/remote/App.java similarity index 100% rename from examples/ejb-remote-call/src/main/java/org/superbiz/remote/App.java rename to examples/ejb-remote-call/src/test/java/org/superbiz/remote/App.java
