X-Git-Url: http://juplo.de/gitweb/?p=website;a=blobdiff_plain;f=dist%2Fhibernate-maven-plugin-2.1.0%2Fcpd.html;fp=dist%2Fhibernate-maven-plugin-2.1.0%2Fcpd.html;h=0000000000000000000000000000000000000000;hp=47011653d082d6dd6ace987ca291f67ff92743dd;hb=b293b312d6f0dd8b2dc716375fd442dd295a9942;hpb=9179a67d9952d3b63e95686dbd6cacd3c9e13cb2 diff --git a/dist/hibernate-maven-plugin-2.1.0/cpd.html b/dist/hibernate-maven-plugin-2.1.0/cpd.html deleted file mode 100644 index 47011653..00000000 --- a/dist/hibernate-maven-plugin-2.1.0/cpd.html +++ /dev/null @@ -1,500 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Hibernate Maven Plugin – CPD Results - - - - -

Path

-

-

    -
  1. Hibernate Maven Plugin
  2. Project Reports
  3. CPD
-

-
-
-
-

CPD Results

-

The following document contains the results of PMD's CPD 5.2.3.

-
-

Duplications

- - - - - - - - - - -
FileLine
de/juplo/plugins/hibernate/CreateMojo.java41
de/juplo/plugins/hibernate/DropMojo.java41
-
-
public class CreateMojo extends AbstractSchemaMojo
-{
-  /**
-   * Output file.
-   * <p>
-   * If the specified filename is not absolut, the file will be created
-   * relative to the project build directory
-   * (<code>project.build.directory</code>).
-   *
-   * @parameter property="hibernate.schema.create" default-value="create.sql"
-   * @since 1.0
-   */
-  private String outputFile;
-
-
-  @Override
-  public final void execute()
-    throws
-      MojoFailureException,
-      MojoExecutionException
-  {
-    super.execute(outputFile);
-  }
-
-
-  @Override
-  void build(
-      MetadataImplementor metadata,
-      ExecutionOptions options,
-      TargetDescriptor target
-      )
-      throws
-        MojoExecutionException,
-        MojoFailureException
-  {
-    ServiceRegistry service =
-        metadata.getMetadataBuildingOptions().getServiceRegistry();
-    SchemaManagementTool tool = service.getService(SchemaManagementTool.class);
-
-    Map config = options.getConfigurationValues();
-    SourceDescriptor source = new SourceDescriptor()
-    {
-	  @Override
-      public SourceType getSourceType()
-      {
-        return SourceType.METADATA;
-      }
-
-      @Override
-      public ScriptSourceInput getScriptSourceInput()
-      {
-        return null;
-      }
-    };
-
-    tool.getSchemaCreator(config).doCreation(metadata, options, source, target);
-
-
-

Pages

-

-

-

- -