Repository: cloudstack Updated Branches: refs/heads/master e431538b0 -> c68834635
Fix the developer database simulator 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/c6883463 Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/c6883463 Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/c6883463 Branch: refs/heads/master Commit: c68834635c9bb6c4b4c234a470f179593951a1f5 Parents: e431538 Author: John Kinsella <[email protected]> Authored: Wed Feb 26 09:04:56 2014 -0800 Committer: John Kinsella <[email protected]> Committed: Wed Feb 26 09:04:56 2014 -0800 ---------------------------------------------------------------------- developer/pom.xml | 7 +++++++ 1 file changed, 7 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cloudstack/blob/c6883463/developer/pom.xml ---------------------------------------------------------------------- diff --git a/developer/pom.xml b/developer/pom.xml index a5e2dc8..98478cf 100644 --- a/developer/pom.xml +++ b/developer/pom.xml @@ -185,6 +185,12 @@ <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>exec-maven-plugin</artifactId> + <dependencies> + <dependency> + <groupId>mysql</groupId> + <artifactId>mysql-connector-java</artifactId> + <version>${cs.mysql.version}</version> + </dependency> <version>1.2.1</version> <executions> <execution> @@ -197,6 +203,7 @@ </executions> <configuration> <mainClass>com.cloud.upgrade.DatabaseCreator</mainClass> + <includePluginDependencies>true</includePluginDependencies> <arguments> <!-- db properties file --> <argument>${basedir}/../utils/conf/db.properties</argument>
