You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cloudstack.apache.org by da...@apache.org on 2014/02/26 19:50:08 UTC

[21/50] [abbrv] git commit: updated refs/heads/acl-item-cidrs to e90d595

Fix the developer database deploy procedure so it includes the mysql database driver


Project: http://git-wip-us.apache.org/repos/asf/cloudstack/repo
Commit: http://git-wip-us.apache.org/repos/asf/cloudstack/commit/e883877c
Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/e883877c
Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/e883877c

Branch: refs/heads/acl-item-cidrs
Commit: e883877c7a6f9df04b572afd4ee5f10d265bcc3a
Parents: 505da76
Author: Hugo Trippaers <ht...@schubergphilis.com>
Authored: Tue Feb 25 11:58:02 2014 +0100
Committer: Hugo Trippaers <ht...@schubergphilis.com>
Committed: Tue Feb 25 11:58:02 2014 +0100

----------------------------------------------------------------------
 developer/pom.xml | 9 +++++++++
 1 file changed, 9 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cloudstack/blob/e883877c/developer/pom.xml
----------------------------------------------------------------------
diff --git a/developer/pom.xml b/developer/pom.xml
index 4a1733a..a5e2dc8 100644
--- a/developer/pom.xml
+++ b/developer/pom.xml
@@ -108,6 +108,14 @@
             <groupId>org.codehaus.mojo</groupId>
             <artifactId>exec-maven-plugin</artifactId>
             <version>1.2.1</version>
+             <dependencies>
+              <!-- specify the dependent jdbc driver here -->
+              <dependency>
+                <groupId>mysql</groupId>
+                <artifactId>mysql-connector-java</artifactId>
+                <version>${cs.mysql.version}</version>
+              </dependency>
+            </dependencies>
             <executions>
               <execution>
                 <phase>process-resources</phase>
@@ -119,6 +127,7 @@
             </executions>
             <configuration>
               <mainClass>com.cloud.upgrade.DatabaseCreator</mainClass>
+              <includePluginDependencies>true</includePluginDependencies>
               <arguments>
                 <!-- db properties file -->
                 <argument>${basedir}/../utils/conf/db.properties</argument>