Repository: cloudstack Updated Branches: refs/heads/4.3-forward 8cb03ddb2 -> f5aeac845
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/f5aeac84 Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/f5aeac84 Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/f5aeac84 Branch: refs/heads/4.3-forward Commit: f5aeac845df8b73b1525442461a8a811e61439d0 Parents: 8cb03dd Author: John Kinsella <[email protected]> Authored: Wed Feb 26 09:04:56 2014 -0800 Committer: John Kinsella <[email protected]> Committed: Wed Feb 26 09:17:12 2014 -0800 ---------------------------------------------------------------------- developer/pom.xml | 7 +++++++ 1 file changed, 7 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cloudstack/blob/f5aeac84/developer/pom.xml ---------------------------------------------------------------------- diff --git a/developer/pom.xml b/developer/pom.xml index a0b60c6..cf89fd6 100644 --- a/developer/pom.xml +++ b/developer/pom.xml @@ -182,6 +182,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> @@ -194,6 +200,7 @@ </executions> <configuration> <mainClass>com.cloud.upgrade.DatabaseCreator</mainClass> + <includePluginDependencies>true</includePluginDependencies> <arguments> <!-- db properties file --> <argument>${basedir}/../utils/conf/db.properties</argument>
