public void execute() throws MojoExecutionException, MojoFailureException {
Log logger = new MavenLogger(this);
DbImportParameters parameters = toParameters();
Injector injector = DIBootstrap.createInjector(new ToolsModule(logger), new DbImportModule());
try {
injector.getInstance(DbImportAction.class).execute(parameters);
} catch (Exception ex) {
Throwable th = Util.unwindException(ex);