Fix the developer database simulator deploy procedure so it includes the mysql database driver (cherry picked from commit f5aeac845df8b73b1525442461a8a811e61439d0)
Signed-off-by: Animesh Chaturvedi <[email protected]> Project: http://git-wip-us.apache.org/repos/asf/cloudstack/repo Commit: http://git-wip-us.apache.org/repos/asf/cloudstack/commit/f31ac2a1 Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/f31ac2a1 Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/f31ac2a1 Branch: refs/heads/4.3 Commit: f31ac2a142c417d011fe05fdede7b451a0103fb8 Parents: 3cd33f6 Author: John Kinsella <[email protected]> Authored: Wed Feb 26 09:04:56 2014 -0800 Committer: Animesh Chaturvedi <[email protected]> Committed: Tue Mar 4 23:40:18 2014 -0800 ---------------------------------------------------------------------- developer/pom.xml | 7 +++++++ 1 file changed, 7 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cloudstack/blob/f31ac2a1/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>
