Fix ordering of the statements as bare statements are allowed only once
Project: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/commit/fbc82cc9 Tree: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/tree/fbc82cc9 Diff: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/diff/fbc82cc9 Branch: refs/heads/4.0 Commit: fbc82cc9565c6e24c5bad5b27ffd88c8095ab706 Parents: 5c24041 Author: Hugo Trippaers <[email protected]> Authored: Mon Sep 24 14:42:47 2012 -0700 Committer: Edison Su <[email protected]> Committed: Tue Sep 25 15:02:31 2012 -0700 ---------------------------------------------------------------------- developer/pom.xml | 9 +++++++++ 1 files changed, 9 insertions(+), 0 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/blob/fbc82cc9/developer/pom.xml ---------------------------------------------------------------------- diff --git a/developer/pom.xml b/developer/pom.xml index 03f2185..25e56e0 100644 --- a/developer/pom.xml +++ b/developer/pom.xml @@ -152,6 +152,15 @@ </goals> <configuration> <sqlCommand>INSERT INTO `cloud`.`domain` (id, name, parent, path, owner) VALUES (1, 'ROOT', NULL, '/', 2)</sqlCommand> + </configuration> + </execution> + <execution> + <id>prefill-configuration</id> + <phase>process-test-resources</phase> + <goals> + <goal>execute</goal> + </goals> + <configuration> <sqlCommand>INSERT INTO `cloud`.`configuration` (category, instance, component, name, value) VALUES ('Hidden', 'DEFAULT', 'management-server', 'init', 'false')</sqlCommand> </configuration> </execution>
