All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.hibernate.tool.maven.GenerateDdlMojo Maven / Gradle / Ivy

Go to download

Maven plugin to provide hibernate-tools reverse engineering and code/schema generation abilities.

There is a newer version: 7.0.0.Beta1
Show newest version
/*
 * Hibernate Tools, Tooling for your Hibernate Projects
 * 
 * Copyright 2016-2020 Red Hat, Inc.
 *
 * Licensed under the GNU Lesser General Public License (LGPL), 
 * version 2.1 or later (the "License").
 * You may not use this file except in compliance with the License.
 * You may read the licence in the 'lgpl.txt' file in the root folder of 
 * project or obtain a copy at
 *
 *     http://www.gnu.org/licenses/lgpl-2.1.html
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" basis,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package org.hibernate.tool.maven;

import org.apache.maven.plugins.annotations.Mojo;
import org.apache.maven.plugins.annotations.Parameter;
import org.hibernate.boot.Metadata;
import org.hibernate.tool.api.metadata.MetadataDescriptor;
import org.hibernate.tool.hbm2ddl.SchemaExport;
import org.hibernate.tool.schema.TargetType;

import java.io.File;
import java.util.EnumSet;
import java.util.Set;

import static org.apache.maven.plugins.annotations.LifecyclePhase.GENERATE_RESOURCES;

/**
 * Mojo to generate DDL Scripts from an existing database.
 * 

* See https://docs.jboss.org/tools/latest/en/hibernatetools/html_single/#d0e4651 */ @Mojo(name = "hbm2ddl", defaultPhase = GENERATE_RESOURCES) public class GenerateDdlMojo extends AbstractGenerationMojo { /** The directory into which the DDLs will be generated. */ @Parameter(defaultValue = "${project.build.directory}/generated-resources/") private File outputDirectory; /** The default filename of the generated DDL script. */ @Parameter(defaultValue = "schema.ddl") private String outputFileName; /** The type of output to produce. *

    *
  • DATABASE: Export to the database.
  • *
  • SCRIPT (default): Write to a script file.
  • *
  • STDOUT: Write to {@link System#out}.
  • *
*/ @Parameter(defaultValue = "SCRIPT") private Set targetTypes; /** * The DDLs statements to create. *
    *
  • NONE: None - duh :P.
  • *
  • CREATE (default): Create only.
  • *
  • DROP: Drop only.
  • *
  • BOTH: Drop and then create.
  • *
*/ @Parameter(defaultValue = "CREATE") private SchemaExport.Action schemaExportAction; /** Set the end of statement delimiter. */ @Parameter(defaultValue = ";") private String delimiter; /** Should we format the sql strings? */ @Parameter(defaultValue = "true") private boolean format; /** Should we stop once an error occurs? */ @Parameter(defaultValue = "true") private boolean haltOnError; @Override protected void executeExporter(MetadataDescriptor metadataDescriptor) { Metadata metadata = metadataDescriptor.createMetadata(); SchemaExport export = new SchemaExport(); export.setOutputFile(new File(outputDirectory, outputFileName).toString()); export.setDelimiter(delimiter); export.setHaltOnError(haltOnError); export.setFormat(format); export.execute(EnumSet.copyOf(this.targetTypes), schemaExportAction, metadata); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy