Repository: cayenne Updated Branches: refs/heads/master c2e5d6deb -> a0e324fcc
CAY-2065 Change Hessian dependency scope in ROP tutorials from provided to compile to avoid ClassNotFoundException when running them Project: http://git-wip-us.apache.org/repos/asf/cayenne/repo Commit: http://git-wip-us.apache.org/repos/asf/cayenne/commit/10c07901 Tree: http://git-wip-us.apache.org/repos/asf/cayenne/tree/10c07901 Diff: http://git-wip-us.apache.org/repos/asf/cayenne/diff/10c07901 Branch: refs/heads/master Commit: 10c07901573cccb1922256dc916ae54e5cac4443 Parents: c2e5d6d Author: Dzmitry Kazimirchyk <[email protected]> Authored: Tue Mar 1 18:48:38 2016 +0300 Committer: Dzmitry Kazimirchyk <[email protected]> Committed: Tue Mar 1 19:18:07 2016 +0300 ---------------------------------------------------------------------- tutorials/tutorial-rop-client/pom.xml | 1 + tutorials/tutorial-rop-server/pom.xml | 2 ++ 2 files changed, 3 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cayenne/blob/10c07901/tutorials/tutorial-rop-client/pom.xml ---------------------------------------------------------------------- diff --git a/tutorials/tutorial-rop-client/pom.xml b/tutorials/tutorial-rop-client/pom.xml index ecb6ba9..37f8a33 100644 --- a/tutorials/tutorial-rop-client/pom.xml +++ b/tutorials/tutorial-rop-client/pom.xml @@ -33,6 +33,7 @@ <dependency> <groupId>com.caucho</groupId> <artifactId>hessian</artifactId> + <scope>compile</scope> </dependency> </dependencies> http://git-wip-us.apache.org/repos/asf/cayenne/blob/10c07901/tutorials/tutorial-rop-server/pom.xml ---------------------------------------------------------------------- diff --git a/tutorials/tutorial-rop-server/pom.xml b/tutorials/tutorial-rop-server/pom.xml index ecc7b75..96a6286 100644 --- a/tutorials/tutorial-rop-server/pom.xml +++ b/tutorials/tutorial-rop-server/pom.xml @@ -34,10 +34,12 @@ <dependency> <groupId>org.apache.derby</groupId> <artifactId>derby</artifactId> + <scope>compile</scope> </dependency> <dependency> <groupId>com.caucho</groupId> <artifactId>hessian</artifactId> + <scope>compile</scope> </dependency> </dependencies>
