You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cloudstack.apache.org by ed...@apache.org on 2014/06/05 01:50:18 UTC

[06/50] git commit: updated refs/heads/4.3 to f304df0

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/24dcf294
Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/24dcf294
Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/24dcf294

Branch: refs/heads/4.3
Commit: 24dcf2948c2d4cdd98fcda0f766d82f40eee8be1
Parents: 2c3cd90
Author: Hugo Trippaers <ht...@schubergphilis.com>
Authored: Tue Feb 25 12:13:29 2014 +0100
Committer: John Kinsella <jl...@stratosec.co>
Committed: Wed Feb 26 18:07:49 2014 -0800

----------------------------------------------------------------------
 client/pom.xml | 8 ++++++++
 1 file changed, 8 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cloudstack/blob/24dcf294/client/pom.xml
----------------------------------------------------------------------
diff --git a/client/pom.xml b/client/pom.xml
index 84df72d..253b358 100644
--- a/client/pom.xml
+++ b/client/pom.xml
@@ -350,6 +350,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>