Fix jetty:run startup to include the mysql driver as a dependency for developers
Project: http://git-wip-us.apache.org/repos/asf/cloudstack/repo Commit: http://git-wip-us.apache.org/repos/asf/cloudstack/commit/7aa70fe8 Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/7aa70fe8 Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/7aa70fe8 Branch: refs/heads/acl-item-cidrs Commit: 7aa70fe82a55f0c5b52c5b905af2f123315570b0 Parents: 14689d7 Author: Hugo Trippaers <htrippa...@schubergphilis.com> Authored: Tue Feb 25 12:13:29 2014 +0100 Committer: Hugo Trippaers <htrippa...@schubergphilis.com> Committed: Tue Feb 25 12:30:46 2014 +0100 ---------------------------------------------------------------------- client/pom.xml | 8 ++++++++ 1 file changed, 8 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cloudstack/blob/7aa70fe8/client/pom.xml ---------------------------------------------------------------------- diff --git a/client/pom.xml b/client/pom.xml index 4eb421d..0980b64 100644 --- a/client/pom.xml +++ b/client/pom.xml @@ -365,6 +365,14 @@ <groupId>org.mortbay.jetty</groupId> <artifactId>maven-jetty-plugin</artifactId> <version>6.1.26</version> + <dependencies> + <!-- specify the dependent jdbc driver here --> + <dependency> + <groupId>mysql</groupId> + <artifactId>mysql-connector-java</artifactId> + <version>${cs.mysql.version}</version> + </dependency> + </dependencies> <configuration> <scanIntervalSeconds>0</scanIntervalSeconds> <stopPort>9966</stopPort>