From a7dbb85ef6bb9412b0f1715c2ea7ea1c0668ccef Mon Sep 17 00:00:00 2001 From: Kai Moritz Date: Fri, 7 Nov 2025 13:25:06 +0100 Subject: [PATCH] WIP:2.1.1--current --- .../apidocs/allclasses-frame.html | 26 + .../apidocs/allclasses-noframe.html | 26 + .../apidocs/constant-values.html | 202 ++++ .../plugins/hibernate/AbstractSchemaMojo.html | 494 +++++++++ .../juplo/plugins/hibernate/CreateMojo.html | 339 ++++++ .../de/juplo/plugins/hibernate/DropMojo.html | 339 ++++++ .../de/juplo/plugins/hibernate/HelpMojo.html | 318 ++++++ .../hibernate/ModificationTracker.html | 201 ++++ .../plugins/hibernate/MutableClassLoader.html | 435 ++++++++ .../juplo/plugins/hibernate/UpdateMojo.html | 339 ++++++ .../class-use/AbstractSchemaMojo.html | 166 +++ .../hibernate/class-use/CreateMojo.html | 124 +++ .../plugins/hibernate/class-use/DropMojo.html | 124 +++ .../plugins/hibernate/class-use/HelpMojo.html | 124 +++ .../class-use/ModificationTracker.html | 124 +++ .../class-use/MutableClassLoader.html | 149 +++ .../hibernate/class-use/UpdateMojo.html | 124 +++ .../plugins/hibernate/package-frame.html | 27 + .../plugins/hibernate/package-summary.html | 180 ++++ .../juplo/plugins/hibernate/package-tree.html | 150 +++ .../juplo/plugins/hibernate/package-use.html | 147 +++ .../apidocs/deprecated-list.html | 124 +++ hibernate-maven-plugin/apidocs/help-doc.html | 225 ++++ hibernate-maven-plugin/apidocs/index-all.html | 286 +++++ hibernate-maven-plugin/apidocs/index.html | 73 ++ .../apidocs/overview-tree.html | 154 +++ hibernate-maven-plugin/apidocs/package-list | 1 + hibernate-maven-plugin/apidocs/script.js | 30 + hibernate-maven-plugin/apidocs/stylesheet.css | 574 ++++++++++ hibernate-maven-plugin/ci-management.html | 107 +- hibernate-maven-plugin/configuration.html | 150 ++- hibernate-maven-plugin/cpd.html | 159 ++- hibernate-maven-plugin/create-mojo.html | 481 +++++---- hibernate-maven-plugin/debugging.html | 102 +- hibernate-maven-plugin/dependencies.html | 981 ++++++++++-------- hibernate-maven-plugin/dependency-info.html | 98 +- .../distribution-management.html | 97 +- hibernate-maven-plugin/drop-mojo.html | 481 +++++---- hibernate-maven-plugin/force.html | 104 +- hibernate-maven-plugin/help-mojo.html | 165 ++- hibernate-maven-plugin/index.html | 117 ++- hibernate-maven-plugin/issue-tracking.html | 99 +- hibernate-maven-plugin/licenses.html | 98 +- hibernate-maven-plugin/mail-lists.html | 99 +- hibernate-maven-plugin/pitfalls.html | 164 ++- hibernate-maven-plugin/plugin-info.html | 142 ++- hibernate-maven-plugin/plugin-management.html | 93 +- hibernate-maven-plugin/plugins.html | 101 +- hibernate-maven-plugin/pmd.html | 115 +- hibernate-maven-plugin/project-info.html | 95 +- hibernate-maven-plugin/project-reports.html | 95 +- hibernate-maven-plugin/scm.html | 104 +- hibernate-maven-plugin/skip.html | 105 +- hibernate-maven-plugin/summary.html | 105 +- hibernate-maven-plugin/team.html | 133 ++- .../testapidocs/allclasses-frame.html | 20 + .../testapidocs/allclasses-noframe.html | 20 + .../testapidocs/constant-values.html | 124 +++ .../de/juplo/test/FileComparator.html | 280 +++++ .../juplo/test/class-use/FileComparator.html | 124 +++ .../de/juplo/test/package-frame.html | 21 + .../de/juplo/test/package-summary.html | 142 +++ .../de/juplo/test/package-tree.html | 133 +++ .../de/juplo/test/package-use.html | 124 +++ .../testapidocs/deprecated-list.html | 124 +++ .../testapidocs/help-doc.html | 225 ++++ .../testapidocs/index-all.html | 147 +++ hibernate-maven-plugin/testapidocs/index.html | 73 ++ .../testapidocs/overview-tree.html | 137 +++ .../testapidocs/package-list | 1 + hibernate-maven-plugin/testapidocs/script.js | 30 + .../testapidocs/stylesheet.css | 574 ++++++++++ hibernate-maven-plugin/update-mojo.html | 481 +++++---- .../de/juplo/test/FileComparator.html | 2 +- .../plugins/hibernate/AbstractSchemaMojo.html | 2 +- .../juplo/plugins/hibernate/CreateMojo.html | 2 +- .../de/juplo/plugins/hibernate/DropMojo.html | 2 +- .../de/juplo/plugins/hibernate/HelpMojo.html | 2 +- .../hibernate/ModificationTracker.html | 2 +- .../plugins/hibernate/MutableClassLoader.html | 2 +- .../hibernate/SimpleConnectionProvider.html | 2 +- .../juplo/plugins/hibernate/UpdateMojo.html | 2 +- 82 files changed, 11306 insertions(+), 1707 deletions(-) create mode 100644 hibernate-maven-plugin/apidocs/allclasses-frame.html create mode 100644 hibernate-maven-plugin/apidocs/allclasses-noframe.html create mode 100644 hibernate-maven-plugin/apidocs/constant-values.html create mode 100644 hibernate-maven-plugin/apidocs/de/juplo/plugins/hibernate/AbstractSchemaMojo.html create mode 100644 hibernate-maven-plugin/apidocs/de/juplo/plugins/hibernate/CreateMojo.html create mode 100644 hibernate-maven-plugin/apidocs/de/juplo/plugins/hibernate/DropMojo.html create mode 100644 hibernate-maven-plugin/apidocs/de/juplo/plugins/hibernate/HelpMojo.html create mode 100644 hibernate-maven-plugin/apidocs/de/juplo/plugins/hibernate/ModificationTracker.html create mode 100644 hibernate-maven-plugin/apidocs/de/juplo/plugins/hibernate/MutableClassLoader.html create mode 100644 hibernate-maven-plugin/apidocs/de/juplo/plugins/hibernate/UpdateMojo.html create mode 100644 hibernate-maven-plugin/apidocs/de/juplo/plugins/hibernate/class-use/AbstractSchemaMojo.html create mode 100644 hibernate-maven-plugin/apidocs/de/juplo/plugins/hibernate/class-use/CreateMojo.html create mode 100644 hibernate-maven-plugin/apidocs/de/juplo/plugins/hibernate/class-use/DropMojo.html create mode 100644 hibernate-maven-plugin/apidocs/de/juplo/plugins/hibernate/class-use/HelpMojo.html create mode 100644 hibernate-maven-plugin/apidocs/de/juplo/plugins/hibernate/class-use/ModificationTracker.html create mode 100644 hibernate-maven-plugin/apidocs/de/juplo/plugins/hibernate/class-use/MutableClassLoader.html create mode 100644 hibernate-maven-plugin/apidocs/de/juplo/plugins/hibernate/class-use/UpdateMojo.html create mode 100644 hibernate-maven-plugin/apidocs/de/juplo/plugins/hibernate/package-frame.html create mode 100644 hibernate-maven-plugin/apidocs/de/juplo/plugins/hibernate/package-summary.html create mode 100644 hibernate-maven-plugin/apidocs/de/juplo/plugins/hibernate/package-tree.html create mode 100644 hibernate-maven-plugin/apidocs/de/juplo/plugins/hibernate/package-use.html create mode 100644 hibernate-maven-plugin/apidocs/deprecated-list.html create mode 100644 hibernate-maven-plugin/apidocs/help-doc.html create mode 100644 hibernate-maven-plugin/apidocs/index-all.html create mode 100644 hibernate-maven-plugin/apidocs/index.html create mode 100644 hibernate-maven-plugin/apidocs/overview-tree.html create mode 100644 hibernate-maven-plugin/apidocs/package-list create mode 100644 hibernate-maven-plugin/apidocs/script.js create mode 100644 hibernate-maven-plugin/apidocs/stylesheet.css create mode 100644 hibernate-maven-plugin/testapidocs/allclasses-frame.html create mode 100644 hibernate-maven-plugin/testapidocs/allclasses-noframe.html create mode 100644 hibernate-maven-plugin/testapidocs/constant-values.html create mode 100644 hibernate-maven-plugin/testapidocs/de/juplo/test/FileComparator.html create mode 100644 hibernate-maven-plugin/testapidocs/de/juplo/test/class-use/FileComparator.html create mode 100644 hibernate-maven-plugin/testapidocs/de/juplo/test/package-frame.html create mode 100644 hibernate-maven-plugin/testapidocs/de/juplo/test/package-summary.html create mode 100644 hibernate-maven-plugin/testapidocs/de/juplo/test/package-tree.html create mode 100644 hibernate-maven-plugin/testapidocs/de/juplo/test/package-use.html create mode 100644 hibernate-maven-plugin/testapidocs/deprecated-list.html create mode 100644 hibernate-maven-plugin/testapidocs/help-doc.html create mode 100644 hibernate-maven-plugin/testapidocs/index-all.html create mode 100644 hibernate-maven-plugin/testapidocs/index.html create mode 100644 hibernate-maven-plugin/testapidocs/overview-tree.html create mode 100644 hibernate-maven-plugin/testapidocs/package-list create mode 100644 hibernate-maven-plugin/testapidocs/script.js create mode 100644 hibernate-maven-plugin/testapidocs/stylesheet.css diff --git a/hibernate-maven-plugin/apidocs/allclasses-frame.html b/hibernate-maven-plugin/apidocs/allclasses-frame.html new file mode 100644 index 00000000..08c79d35 --- /dev/null +++ b/hibernate-maven-plugin/apidocs/allclasses-frame.html @@ -0,0 +1,26 @@ + + + + + + +All Classes (Hibernate Maven Plugin 2.1.1 API) + + + + + +

All Classes

+
+ +
+ + diff --git a/hibernate-maven-plugin/apidocs/allclasses-noframe.html b/hibernate-maven-plugin/apidocs/allclasses-noframe.html new file mode 100644 index 00000000..8a871570 --- /dev/null +++ b/hibernate-maven-plugin/apidocs/allclasses-noframe.html @@ -0,0 +1,26 @@ + + + + + + +All Classes (Hibernate Maven Plugin 2.1.1 API) + + + + + +

All Classes

+
+ +
+ + diff --git a/hibernate-maven-plugin/apidocs/constant-values.html b/hibernate-maven-plugin/apidocs/constant-values.html new file mode 100644 index 00000000..27258e26 --- /dev/null +++ b/hibernate-maven-plugin/apidocs/constant-values.html @@ -0,0 +1,202 @@ + + + + + + +Constant Field Values (Hibernate Maven Plugin 2.1.1 API) + + + + + + + + +
+ + + + + + + +
+ + +
+

Constant Field Values

+

Contents

+ +
+
+ + +

de.juplo.*

+ +
+ +
+ + + + + + + +
+ + +

Copyright © 2025. All Rights Reserved.

+ + diff --git a/hibernate-maven-plugin/apidocs/de/juplo/plugins/hibernate/AbstractSchemaMojo.html b/hibernate-maven-plugin/apidocs/de/juplo/plugins/hibernate/AbstractSchemaMojo.html new file mode 100644 index 00000000..9156dcbb --- /dev/null +++ b/hibernate-maven-plugin/apidocs/de/juplo/plugins/hibernate/AbstractSchemaMojo.html @@ -0,0 +1,494 @@ + + + + + + +AbstractSchemaMojo (Hibernate Maven Plugin 2.1.1 API) + + + + + + + + +
+ + + + + + + +
+ + + +
+
de.juplo.plugins.hibernate
+

Class AbstractSchemaMojo

+
+
+ +
+
    +
  • +
    +
    All Implemented Interfaces:
    +
    org.apache.maven.plugin.ContextEnabled, org.apache.maven.plugin.Mojo
    +
    +
    +
    Direct Known Subclasses:
    +
    CreateMojo, DropMojo, UpdateMojo
    +
    +
    +
    +
    public abstract class AbstractSchemaMojo
    +extends org.apache.maven.plugin.AbstractMojo
    +
    Baseclass with common attributes and methods.
    +
    +
    Phase:
    +
    process-classes
    +
    Thread Safe:
    +
    Requires Dependency Resolution:
    +
    runtime
    +
    +
  • +
+
+
+
    +
  • + + + +
      +
    • + + +

      Constructor Summary

      + + + + + + + + +
      Constructors 
      Constructor and Description
      AbstractSchemaMojo() 
      +
    • +
    + +
      +
    • + + +

      Method Summary

      + + + + + + + + + + + + + + +
      All Methods Static Methods Instance Methods Concrete Methods 
      Modifier and TypeMethod and Description
      voidexecute(java.lang.String filename) 
      static voidprintStrackTrace(java.lang.StringBuilder builder, + java.lang.Throwable t) 
      +
        +
      • + + +

        Methods inherited from class org.apache.maven.plugin.AbstractMojo

        +getLog, getPluginContext, setLog, setPluginContext
      • +
      +
        +
      • + + +

        Methods inherited from class java.lang.Object

        +clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
      • +
      +
        +
      • + + +

        Methods inherited from interface org.apache.maven.plugin.Mojo

        +execute
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + + + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        AbstractSchemaMojo

        +
        public AbstractSchemaMojo()
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        execute

        +
        public final void execute(java.lang.String filename)
        +                   throws org.apache.maven.plugin.MojoFailureException,
        +                          org.apache.maven.plugin.MojoExecutionException
        +
        +
        Throws:
        +
        org.apache.maven.plugin.MojoFailureException
        +
        org.apache.maven.plugin.MojoExecutionException
        +
        +
      • +
      + + + +
        +
      • +

        printStrackTrace

        +
        public static void printStrackTrace(java.lang.StringBuilder builder,
        +                                    java.lang.Throwable t)
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + + + +
+ + +

Copyright © 2025. All Rights Reserved.

+ + diff --git a/hibernate-maven-plugin/apidocs/de/juplo/plugins/hibernate/CreateMojo.html b/hibernate-maven-plugin/apidocs/de/juplo/plugins/hibernate/CreateMojo.html new file mode 100644 index 00000000..7199ac54 --- /dev/null +++ b/hibernate-maven-plugin/apidocs/de/juplo/plugins/hibernate/CreateMojo.html @@ -0,0 +1,339 @@ + + + + + + +CreateMojo (Hibernate Maven Plugin 2.1.1 API) + + + + + + + + +
+ + + + + + + +
+ + + +
+
de.juplo.plugins.hibernate
+

Class CreateMojo

+
+
+ +
+
    +
  • +
    +
    All Implemented Interfaces:
    +
    org.apache.maven.plugin.ContextEnabled, org.apache.maven.plugin.Mojo
    +
    +
    +
    +
    public class CreateMojo
    +extends AbstractSchemaMojo
    +
    Generate/Execute SQL to create a database-schema that represents the + configured mappings.
    +
    +
    Goal:
    +
    create
    +
    Phase:
    +
    process-classes
    +
    Thread Safe:
    +
    Requires Dependency Resolution:
    +
    runtime
    +
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        CreateMojo

        +
        public CreateMojo()
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        execute

        +
        public final void execute()
        +                   throws org.apache.maven.plugin.MojoFailureException,
        +                          org.apache.maven.plugin.MojoExecutionException
        +
        +
        Throws:
        +
        org.apache.maven.plugin.MojoFailureException
        +
        org.apache.maven.plugin.MojoExecutionException
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + + + +
+ + +

Copyright © 2025. All Rights Reserved.

+ + diff --git a/hibernate-maven-plugin/apidocs/de/juplo/plugins/hibernate/DropMojo.html b/hibernate-maven-plugin/apidocs/de/juplo/plugins/hibernate/DropMojo.html new file mode 100644 index 00000000..820a2036 --- /dev/null +++ b/hibernate-maven-plugin/apidocs/de/juplo/plugins/hibernate/DropMojo.html @@ -0,0 +1,339 @@ + + + + + + +DropMojo (Hibernate Maven Plugin 2.1.1 API) + + + + + + + + +
+ + + + + + + +
+ + + +
+
de.juplo.plugins.hibernate
+

Class DropMojo

+
+
+ +
+
    +
  • +
    +
    All Implemented Interfaces:
    +
    org.apache.maven.plugin.ContextEnabled, org.apache.maven.plugin.Mojo
    +
    +
    +
    +
    public class DropMojo
    +extends AbstractSchemaMojo
    +
    Generate/Execute SQL to drop all tables of a database-schema that represents + the configured mappings.
    +
    +
    Goal:
    +
    drop
    +
    Phase:
    +
    process-classes
    +
    Thread Safe:
    +
    Requires Dependency Resolution:
    +
    runtime
    +
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        DropMojo

        +
        public DropMojo()
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        execute

        +
        public final void execute()
        +                   throws org.apache.maven.plugin.MojoFailureException,
        +                          org.apache.maven.plugin.MojoExecutionException
        +
        +
        Throws:
        +
        org.apache.maven.plugin.MojoFailureException
        +
        org.apache.maven.plugin.MojoExecutionException
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + + + +
+ + +

Copyright © 2025. All Rights Reserved.

+ + diff --git a/hibernate-maven-plugin/apidocs/de/juplo/plugins/hibernate/HelpMojo.html b/hibernate-maven-plugin/apidocs/de/juplo/plugins/hibernate/HelpMojo.html new file mode 100644 index 00000000..b80e98f7 --- /dev/null +++ b/hibernate-maven-plugin/apidocs/de/juplo/plugins/hibernate/HelpMojo.html @@ -0,0 +1,318 @@ + + + + + + +HelpMojo (Hibernate Maven Plugin 2.1.1 API) + + + + + + + + +
+ + + + + + + +
+ + + +
+
de.juplo.plugins.hibernate
+

Class HelpMojo

+
+
+ +
+
    +
  • +
    +
    All Implemented Interfaces:
    +
    org.apache.maven.plugin.ContextEnabled, org.apache.maven.plugin.Mojo
    +
    +
    +
    +
    public class HelpMojo
    +extends org.apache.maven.plugin.AbstractMojo
    +
    Display help information on hibernate-maven-plugin.
    + Call mvn hibernate:help -Ddetail=true -Dgoal=<goal-name> to display parameter details.
    +
    +
    Author:
    +
    maven-plugin-tools
    +
    Goal:
    +
    help
    +
    Thread Safe:
    +
    Requires Project:
    +
    false
    +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + +

      Field Summary

      +
        +
      • + + +

        Fields inherited from interface org.apache.maven.plugin.Mojo

        +ROLE
      • +
      +
    • +
    + +
      +
    • + + +

      Constructor Summary

      + + + + + + + + +
      Constructors 
      Constructor and Description
      HelpMojo() 
      +
    • +
    + +
      +
    • + + +

      Method Summary

      + + + + + + + + + + +
      All Methods Instance Methods Concrete Methods 
      Modifier and TypeMethod and Description
      voidexecute()
      +
        +
      • + + +

        Methods inherited from class org.apache.maven.plugin.AbstractMojo

        +getLog, getPluginContext, setLog, setPluginContext
      • +
      +
        +
      • + + +

        Methods inherited from class java.lang.Object

        +clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        HelpMojo

        +
        public HelpMojo()
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        execute

        +
        public void execute()
        +             throws org.apache.maven.plugin.MojoExecutionException
        +
        +
        Throws:
        +
        org.apache.maven.plugin.MojoExecutionException
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + + + +
+ + +

Copyright © 2025. All Rights Reserved.

+ + diff --git a/hibernate-maven-plugin/apidocs/de/juplo/plugins/hibernate/ModificationTracker.html b/hibernate-maven-plugin/apidocs/de/juplo/plugins/hibernate/ModificationTracker.html new file mode 100644 index 00000000..a396c735 --- /dev/null +++ b/hibernate-maven-plugin/apidocs/de/juplo/plugins/hibernate/ModificationTracker.html @@ -0,0 +1,201 @@ + + + + + + +ModificationTracker (Hibernate Maven Plugin 2.1.1 API) + + + + + + + + +
+ + + + + + + +
+ + + +
+
de.juplo.plugins.hibernate
+

Class ModificationTracker

+
+
+ +
+
    +
  • +
    +
    +
    public class ModificationTracker
    +extends java.lang.Object
    +
    +
    Author:
    +
    Kai Moritz
    +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + +

      Method Summary

      +
        +
      • + + +

        Methods inherited from class java.lang.Object

        +clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + + + +
+ + +

Copyright © 2025. All Rights Reserved.

+ + diff --git a/hibernate-maven-plugin/apidocs/de/juplo/plugins/hibernate/MutableClassLoader.html b/hibernate-maven-plugin/apidocs/de/juplo/plugins/hibernate/MutableClassLoader.html new file mode 100644 index 00000000..e20f7eba --- /dev/null +++ b/hibernate-maven-plugin/apidocs/de/juplo/plugins/hibernate/MutableClassLoader.html @@ -0,0 +1,435 @@ + + + + + + +MutableClassLoader (Hibernate Maven Plugin 2.1.1 API) + + + + + + + + +
+ + + + + + + +
+ + + +
+
de.juplo.plugins.hibernate
+

Class MutableClassLoader

+
+
+ +
+
    +
  • +
    +
    +
    public class MutableClassLoader
    +extends java.lang.ClassLoader
    +
    +
    Author:
    +
    kai
    +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + +

      Constructor Summary

      + + + + + + + + +
      Constructors 
      Constructor and Description
      MutableClassLoader(java.util.LinkedHashSet<java.net.URL> urls, + org.apache.maven.plugin.logging.Log log) 
      +
    • +
    + +
      +
    • + + +

      Method Summary

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      All Methods Instance Methods Concrete Methods 
      Modifier and TypeMethod and Description
      MutableClassLoaderadd(java.util.LinkedHashSet<java.net.URL> urls) 
      voidclearAssertionStatus() 
      java.net.URLgetResource(java.lang.String name) 
      java.io.InputStreamgetResourceAsStream(java.lang.String name) 
      java.util.Enumeration<java.net.URL>getResources(java.lang.String name) 
      java.lang.Class<?>loadClass(java.lang.String name) 
      voidsetClassAssertionStatus(java.lang.String className, + boolean enabled) 
      voidsetDefaultAssertionStatus(boolean enabled) 
      voidsetPackageAssertionStatus(java.lang.String packageName, + boolean enabled) 
      +
        +
      • + + +

        Methods inherited from class java.lang.ClassLoader

        +defineClass, defineClass, defineClass, defineClass, definePackage, findClass, findLibrary, findLoadedClass, findResource, findResources, findSystemClass, getClassLoadingLock, getPackage, getPackages, getParent, getSystemClassLoader, getSystemResource, getSystemResourceAsStream, getSystemResources, loadClass, registerAsParallelCapable, resolveClass, setSigners
      • +
      +
        +
      • + + +

        Methods inherited from class java.lang.Object

        +clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        MutableClassLoader

        +
        public MutableClassLoader(java.util.LinkedHashSet<java.net.URL> urls,
        +                          org.apache.maven.plugin.logging.Log log)
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + + + + + +
        +
      • +

        clearAssertionStatus

        +
        public void clearAssertionStatus()
        +
        +
        Overrides:
        +
        clearAssertionStatus in class java.lang.ClassLoader
        +
        +
      • +
      + + + +
        +
      • +

        setClassAssertionStatus

        +
        public void setClassAssertionStatus(java.lang.String className,
        +                                    boolean enabled)
        +
        +
        Overrides:
        +
        setClassAssertionStatus in class java.lang.ClassLoader
        +
        +
      • +
      + + + +
        +
      • +

        setPackageAssertionStatus

        +
        public void setPackageAssertionStatus(java.lang.String packageName,
        +                                      boolean enabled)
        +
        +
        Overrides:
        +
        setPackageAssertionStatus in class java.lang.ClassLoader
        +
        +
      • +
      + + + +
        +
      • +

        setDefaultAssertionStatus

        +
        public void setDefaultAssertionStatus(boolean enabled)
        +
        +
        Overrides:
        +
        setDefaultAssertionStatus in class java.lang.ClassLoader
        +
        +
      • +
      + + + +
        +
      • +

        getResourceAsStream

        +
        public java.io.InputStream getResourceAsStream(java.lang.String name)
        +
        +
        Overrides:
        +
        getResourceAsStream in class java.lang.ClassLoader
        +
        +
      • +
      + + + +
        +
      • +

        getResources

        +
        public java.util.Enumeration<java.net.URL> getResources(java.lang.String name)
        +                                                 throws java.io.IOException
        +
        +
        Overrides:
        +
        getResources in class java.lang.ClassLoader
        +
        Throws:
        +
        java.io.IOException
        +
        +
      • +
      + + + +
        +
      • +

        getResource

        +
        public java.net.URL getResource(java.lang.String name)
        +
        +
        Overrides:
        +
        getResource in class java.lang.ClassLoader
        +
        +
      • +
      + + + +
        +
      • +

        loadClass

        +
        public java.lang.Class<?> loadClass(java.lang.String name)
        +                             throws java.lang.ClassNotFoundException
        +
        +
        Overrides:
        +
        loadClass in class java.lang.ClassLoader
        +
        Throws:
        +
        java.lang.ClassNotFoundException
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + + + +
+ + +

Copyright © 2025. All Rights Reserved.

+ + diff --git a/hibernate-maven-plugin/apidocs/de/juplo/plugins/hibernate/UpdateMojo.html b/hibernate-maven-plugin/apidocs/de/juplo/plugins/hibernate/UpdateMojo.html new file mode 100644 index 00000000..d0af0eda --- /dev/null +++ b/hibernate-maven-plugin/apidocs/de/juplo/plugins/hibernate/UpdateMojo.html @@ -0,0 +1,339 @@ + + + + + + +UpdateMojo (Hibernate Maven Plugin 2.1.1 API) + + + + + + + + +
+ + + + + + + +
+ + + +
+
de.juplo.plugins.hibernate
+

Class UpdateMojo

+
+
+ +
+
    +
  • +
    +
    All Implemented Interfaces:
    +
    org.apache.maven.plugin.ContextEnabled, org.apache.maven.plugin.Mojo
    +
    +
    +
    +
    public class UpdateMojo
    +extends AbstractSchemaMojo
    +
    Generate/Execute SQL to update the database-schema according to the + configured mappings.
    +
    +
    Goal:
    +
    update
    +
    Phase:
    +
    process-classes
    +
    Thread Safe:
    +
    Requires Dependency Resolution:
    +
    runtime
    +
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        UpdateMojo

        +
        public UpdateMojo()
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        execute

        +
        public final void execute()
        +                   throws org.apache.maven.plugin.MojoFailureException,
        +                          org.apache.maven.plugin.MojoExecutionException
        +
        +
        Throws:
        +
        org.apache.maven.plugin.MojoFailureException
        +
        org.apache.maven.plugin.MojoExecutionException
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + + + +
+ + +

Copyright © 2025. All Rights Reserved.

+ + diff --git a/hibernate-maven-plugin/apidocs/de/juplo/plugins/hibernate/class-use/AbstractSchemaMojo.html b/hibernate-maven-plugin/apidocs/de/juplo/plugins/hibernate/class-use/AbstractSchemaMojo.html new file mode 100644 index 00000000..5fd0135f --- /dev/null +++ b/hibernate-maven-plugin/apidocs/de/juplo/plugins/hibernate/class-use/AbstractSchemaMojo.html @@ -0,0 +1,166 @@ + + + + + + +Uses of Class de.juplo.plugins.hibernate.AbstractSchemaMojo (Hibernate Maven Plugin 2.1.1 API) + + + + + + + + +
+ + + + + + + +
+ + +
+

Uses of Class
de.juplo.plugins.hibernate.AbstractSchemaMojo

+
+
+ +
+ +
+ + + + + + + +
+ + +

Copyright © 2025. All Rights Reserved.

+ + diff --git a/hibernate-maven-plugin/apidocs/de/juplo/plugins/hibernate/class-use/CreateMojo.html b/hibernate-maven-plugin/apidocs/de/juplo/plugins/hibernate/class-use/CreateMojo.html new file mode 100644 index 00000000..04f28441 --- /dev/null +++ b/hibernate-maven-plugin/apidocs/de/juplo/plugins/hibernate/class-use/CreateMojo.html @@ -0,0 +1,124 @@ + + + + + + +Uses of Class de.juplo.plugins.hibernate.CreateMojo (Hibernate Maven Plugin 2.1.1 API) + + + + + + + + +
+ + + + + + + +
+ + +
+

Uses of Class
de.juplo.plugins.hibernate.CreateMojo

+
+
No usage of de.juplo.plugins.hibernate.CreateMojo
+ +
+ + + + + + + +
+ + +

Copyright © 2025. All Rights Reserved.

+ + diff --git a/hibernate-maven-plugin/apidocs/de/juplo/plugins/hibernate/class-use/DropMojo.html b/hibernate-maven-plugin/apidocs/de/juplo/plugins/hibernate/class-use/DropMojo.html new file mode 100644 index 00000000..e43a1242 --- /dev/null +++ b/hibernate-maven-plugin/apidocs/de/juplo/plugins/hibernate/class-use/DropMojo.html @@ -0,0 +1,124 @@ + + + + + + +Uses of Class de.juplo.plugins.hibernate.DropMojo (Hibernate Maven Plugin 2.1.1 API) + + + + + + + + +
+ + + + + + + +
+ + +
+

Uses of Class
de.juplo.plugins.hibernate.DropMojo

+
+
No usage of de.juplo.plugins.hibernate.DropMojo
+ +
+ + + + + + + +
+ + +

Copyright © 2025. All Rights Reserved.

+ + diff --git a/hibernate-maven-plugin/apidocs/de/juplo/plugins/hibernate/class-use/HelpMojo.html b/hibernate-maven-plugin/apidocs/de/juplo/plugins/hibernate/class-use/HelpMojo.html new file mode 100644 index 00000000..dba9c34b --- /dev/null +++ b/hibernate-maven-plugin/apidocs/de/juplo/plugins/hibernate/class-use/HelpMojo.html @@ -0,0 +1,124 @@ + + + + + + +Uses of Class de.juplo.plugins.hibernate.HelpMojo (Hibernate Maven Plugin 2.1.1 API) + + + + + + + + +
+ + + + + + + +
+ + +
+

Uses of Class
de.juplo.plugins.hibernate.HelpMojo

+
+
No usage of de.juplo.plugins.hibernate.HelpMojo
+ +
+ + + + + + + +
+ + +

Copyright © 2025. All Rights Reserved.

+ + diff --git a/hibernate-maven-plugin/apidocs/de/juplo/plugins/hibernate/class-use/ModificationTracker.html b/hibernate-maven-plugin/apidocs/de/juplo/plugins/hibernate/class-use/ModificationTracker.html new file mode 100644 index 00000000..cac523aa --- /dev/null +++ b/hibernate-maven-plugin/apidocs/de/juplo/plugins/hibernate/class-use/ModificationTracker.html @@ -0,0 +1,124 @@ + + + + + + +Uses of Class de.juplo.plugins.hibernate.ModificationTracker (Hibernate Maven Plugin 2.1.1 API) + + + + + + + + +
+ + + + + + + +
+ + +
+

Uses of Class
de.juplo.plugins.hibernate.ModificationTracker

+
+
No usage of de.juplo.plugins.hibernate.ModificationTracker
+ +
+ + + + + + + +
+ + +

Copyright © 2025. All Rights Reserved.

+ + diff --git a/hibernate-maven-plugin/apidocs/de/juplo/plugins/hibernate/class-use/MutableClassLoader.html b/hibernate-maven-plugin/apidocs/de/juplo/plugins/hibernate/class-use/MutableClassLoader.html new file mode 100644 index 00000000..bc54443e --- /dev/null +++ b/hibernate-maven-plugin/apidocs/de/juplo/plugins/hibernate/class-use/MutableClassLoader.html @@ -0,0 +1,149 @@ + + + + + + +Uses of Class de.juplo.plugins.hibernate.MutableClassLoader (Hibernate Maven Plugin 2.1.1 API) + + + + + + + + +
+ + + + + + + +
+ + +
+

Uses of Class
de.juplo.plugins.hibernate.MutableClassLoader

+
+
+ +
+ +
+ + + + + + + +
+ + +

Copyright © 2025. All Rights Reserved.

+ + diff --git a/hibernate-maven-plugin/apidocs/de/juplo/plugins/hibernate/class-use/UpdateMojo.html b/hibernate-maven-plugin/apidocs/de/juplo/plugins/hibernate/class-use/UpdateMojo.html new file mode 100644 index 00000000..eb2cf987 --- /dev/null +++ b/hibernate-maven-plugin/apidocs/de/juplo/plugins/hibernate/class-use/UpdateMojo.html @@ -0,0 +1,124 @@ + + + + + + +Uses of Class de.juplo.plugins.hibernate.UpdateMojo (Hibernate Maven Plugin 2.1.1 API) + + + + + + + + +
+ + + + + + + +
+ + +
+

Uses of Class
de.juplo.plugins.hibernate.UpdateMojo

+
+
No usage of de.juplo.plugins.hibernate.UpdateMojo
+ +
+ + + + + + + +
+ + +

Copyright © 2025. All Rights Reserved.

+ + diff --git a/hibernate-maven-plugin/apidocs/de/juplo/plugins/hibernate/package-frame.html b/hibernate-maven-plugin/apidocs/de/juplo/plugins/hibernate/package-frame.html new file mode 100644 index 00000000..b1708849 --- /dev/null +++ b/hibernate-maven-plugin/apidocs/de/juplo/plugins/hibernate/package-frame.html @@ -0,0 +1,27 @@ + + + + + + +de.juplo.plugins.hibernate (Hibernate Maven Plugin 2.1.1 API) + + + + + +

de.juplo.plugins.hibernate

+
+

Classes

+ +
+ + diff --git a/hibernate-maven-plugin/apidocs/de/juplo/plugins/hibernate/package-summary.html b/hibernate-maven-plugin/apidocs/de/juplo/plugins/hibernate/package-summary.html new file mode 100644 index 00000000..057c42cc --- /dev/null +++ b/hibernate-maven-plugin/apidocs/de/juplo/plugins/hibernate/package-summary.html @@ -0,0 +1,180 @@ + + + + + + +de.juplo.plugins.hibernate (Hibernate Maven Plugin 2.1.1 API) + + + + + + + + +
+ + + + + + + +
+ + +
+

Package de.juplo.plugins.hibernate

+
+
+ +
+ +
+ + + + + + + +
+ + +

Copyright © 2025. All Rights Reserved.

+ + diff --git a/hibernate-maven-plugin/apidocs/de/juplo/plugins/hibernate/package-tree.html b/hibernate-maven-plugin/apidocs/de/juplo/plugins/hibernate/package-tree.html new file mode 100644 index 00000000..f14dfe5c --- /dev/null +++ b/hibernate-maven-plugin/apidocs/de/juplo/plugins/hibernate/package-tree.html @@ -0,0 +1,150 @@ + + + + + + +de.juplo.plugins.hibernate Class Hierarchy (Hibernate Maven Plugin 2.1.1 API) + + + + + + + + +
+ + + + + + + +
+ + +
+

Hierarchy For Package de.juplo.plugins.hibernate

+
+
+

Class Hierarchy

+ +
+ +
+ + + + + + + +
+ + +

Copyright © 2025. All Rights Reserved.

+ + diff --git a/hibernate-maven-plugin/apidocs/de/juplo/plugins/hibernate/package-use.html b/hibernate-maven-plugin/apidocs/de/juplo/plugins/hibernate/package-use.html new file mode 100644 index 00000000..b823533d --- /dev/null +++ b/hibernate-maven-plugin/apidocs/de/juplo/plugins/hibernate/package-use.html @@ -0,0 +1,147 @@ + + + + + + +Uses of Package de.juplo.plugins.hibernate (Hibernate Maven Plugin 2.1.1 API) + + + + + + + + +
+ + + + + + + +
+ + +
+

Uses of Package
de.juplo.plugins.hibernate

+
+
+ +
+ +
+ + + + + + + +
+ + +

Copyright © 2025. All Rights Reserved.

+ + diff --git a/hibernate-maven-plugin/apidocs/deprecated-list.html b/hibernate-maven-plugin/apidocs/deprecated-list.html new file mode 100644 index 00000000..45cdae46 --- /dev/null +++ b/hibernate-maven-plugin/apidocs/deprecated-list.html @@ -0,0 +1,124 @@ + + + + + + +Deprecated List (Hibernate Maven Plugin 2.1.1 API) + + + + + + + + +
+ + + + + + + +
+ + +
+

Deprecated API

+

Contents

+
+ +
+ + + + + + + +
+ + +

Copyright © 2025. All Rights Reserved.

+ + diff --git a/hibernate-maven-plugin/apidocs/help-doc.html b/hibernate-maven-plugin/apidocs/help-doc.html new file mode 100644 index 00000000..9bed02c9 --- /dev/null +++ b/hibernate-maven-plugin/apidocs/help-doc.html @@ -0,0 +1,225 @@ + + + + + + +API Help (Hibernate Maven Plugin 2.1.1 API) + + + + + + + + +
+ + + + + + + +
+ + +
+

How This API Document Is Organized

+
This API (Application Programming Interface) document has pages corresponding to the items in the navigation bar, described as follows.
+
+
+ +This help file applies to API documentation generated using the standard doclet.
+ +
+ + + + + + + +
+ + +

Copyright © 2025. All Rights Reserved.

+ + diff --git a/hibernate-maven-plugin/apidocs/index-all.html b/hibernate-maven-plugin/apidocs/index-all.html new file mode 100644 index 00000000..a952b159 --- /dev/null +++ b/hibernate-maven-plugin/apidocs/index-all.html @@ -0,0 +1,286 @@ + + + + + + +Index (Hibernate Maven Plugin 2.1.1 API) + + + + + + + + +
+ + + + + + + +
+ + +
A C D E G H L M O P S T U  + + +

A

+
+
AbstractSchemaMojo - Class in de.juplo.plugins.hibernate
+
+
Baseclass with common attributes and methods.
+
+
AbstractSchemaMojo() - Constructor for class de.juplo.plugins.hibernate.AbstractSchemaMojo
+
 
+
add(LinkedHashSet<URL>) - Method in class de.juplo.plugins.hibernate.MutableClassLoader
+
 
+
+ + + +

C

+
+
clearAssertionStatus() - Method in class de.juplo.plugins.hibernate.MutableClassLoader
+
 
+
CreateMojo - Class in de.juplo.plugins.hibernate
+
+
Generate/Execute SQL to create a database-schema that represents the + configured mappings.
+
+
CreateMojo() - Constructor for class de.juplo.plugins.hibernate.CreateMojo
+
 
+
+ + + +

D

+
+
de.juplo.plugins.hibernate - package de.juplo.plugins.hibernate
+
 
+
DropMojo - Class in de.juplo.plugins.hibernate
+
+
Generate/Execute SQL to drop all tables of a database-schema that represents + the configured mappings.
+
+
DropMojo() - Constructor for class de.juplo.plugins.hibernate.DropMojo
+
 
+
+ + + +

E

+
+
EXECUTE - Static variable in class de.juplo.plugins.hibernate.AbstractSchemaMojo
+
 
+
execute(String) - Method in class de.juplo.plugins.hibernate.AbstractSchemaMojo
+
 
+
execute() - Method in class de.juplo.plugins.hibernate.CreateMojo
+
 
+
execute() - Method in class de.juplo.plugins.hibernate.DropMojo
+
 
+
execute() - Method in class de.juplo.plugins.hibernate.HelpMojo
+
execute() - Method in class de.juplo.plugins.hibernate.UpdateMojo
+
 
+
+ + + +

G

+
+
getResource(String) - Method in class de.juplo.plugins.hibernate.MutableClassLoader
+
 
+
getResourceAsStream(String) - Method in class de.juplo.plugins.hibernate.MutableClassLoader
+
 
+
getResources(String) - Method in class de.juplo.plugins.hibernate.MutableClassLoader
+
 
+
+ + + +

H

+
+
HelpMojo - Class in de.juplo.plugins.hibernate
+
+
Display help information on hibernate-maven-plugin.
+ Call mvn hibernate:help -Ddetail=true -Dgoal=<goal-name> to display parameter details.
+
+
HelpMojo() - Constructor for class de.juplo.plugins.hibernate.HelpMojo
+
 
+
+ + + +

L

+
+
loadClass(String) - Method in class de.juplo.plugins.hibernate.MutableClassLoader
+
 
+
+ + + +

M

+
+
ModificationTracker - Class in de.juplo.plugins.hibernate
+
 
+
MutableClassLoader - Class in de.juplo.plugins.hibernate
+
 
+
MutableClassLoader(LinkedHashSet<URL>, Log) - Constructor for class de.juplo.plugins.hibernate.MutableClassLoader
+
 
+
+ + + +

O

+
+
OUTPUTDIRECTORY - Static variable in class de.juplo.plugins.hibernate.AbstractSchemaMojo
+
 
+
+ + + +

P

+
+
printStrackTrace(StringBuilder, Throwable) - Static method in class de.juplo.plugins.hibernate.AbstractSchemaMojo
+
 
+
+ + + +

S

+
+
SCAN_CLASSES - Static variable in class de.juplo.plugins.hibernate.AbstractSchemaMojo
+
 
+
SCAN_DEPENDENCIES - Static variable in class de.juplo.plugins.hibernate.AbstractSchemaMojo
+
 
+
SCAN_TESTCLASSES - Static variable in class de.juplo.plugins.hibernate.AbstractSchemaMojo
+
 
+
SCRIPT - Static variable in class de.juplo.plugins.hibernate.AbstractSchemaMojo
+
 
+
setClassAssertionStatus(String, boolean) - Method in class de.juplo.plugins.hibernate.MutableClassLoader
+
 
+
setDefaultAssertionStatus(boolean) - Method in class de.juplo.plugins.hibernate.MutableClassLoader
+
 
+
setPackageAssertionStatus(String, boolean) - Method in class de.juplo.plugins.hibernate.MutableClassLoader
+
 
+
SKIPPED - Static variable in class de.juplo.plugins.hibernate.AbstractSchemaMojo
+
 
+
+ + + +

T

+
+
TEST_OUTPUTDIRECTORY - Static variable in class de.juplo.plugins.hibernate.AbstractSchemaMojo
+
 
+
+ + + +

U

+
+
UpdateMojo - Class in de.juplo.plugins.hibernate
+
+
Generate/Execute SQL to update the database-schema according to the + configured mappings.
+
+
UpdateMojo() - Constructor for class de.juplo.plugins.hibernate.UpdateMojo
+
 
+
+A C D E G H L M O P S T U 
+ +
+ + + + + + + +
+ + +

Copyright © 2025. All Rights Reserved.

+ + diff --git a/hibernate-maven-plugin/apidocs/index.html b/hibernate-maven-plugin/apidocs/index.html new file mode 100644 index 00000000..1fe5bfce --- /dev/null +++ b/hibernate-maven-plugin/apidocs/index.html @@ -0,0 +1,73 @@ + + + + + + +Hibernate Maven Plugin 2.1.1 API + + + + + + +<noscript> +<div>JavaScript is disabled on your browser.</div> +</noscript> +<h2>Frame Alert</h2> +<p>This document is designed to be viewed using the frames feature. If you see this message, you are using a non-frame-capable web client. Link to <a href="de/juplo/plugins/hibernate/package-summary.html">Non-frame version</a>.</p> + + + diff --git a/hibernate-maven-plugin/apidocs/overview-tree.html b/hibernate-maven-plugin/apidocs/overview-tree.html new file mode 100644 index 00000000..d6a7c883 --- /dev/null +++ b/hibernate-maven-plugin/apidocs/overview-tree.html @@ -0,0 +1,154 @@ + + + + + + +Class Hierarchy (Hibernate Maven Plugin 2.1.1 API) + + + + + + + + +
+ + + + + + + +
+ + +
+

Hierarchy For All Packages

+Package Hierarchies: + +
+
+

Class Hierarchy

+ +
+ +
+ + + + + + + +
+ + +

Copyright © 2025. All Rights Reserved.

+ + diff --git a/hibernate-maven-plugin/apidocs/package-list b/hibernate-maven-plugin/apidocs/package-list new file mode 100644 index 00000000..4e11658e --- /dev/null +++ b/hibernate-maven-plugin/apidocs/package-list @@ -0,0 +1 @@ +de.juplo.plugins.hibernate diff --git a/hibernate-maven-plugin/apidocs/script.js b/hibernate-maven-plugin/apidocs/script.js new file mode 100644 index 00000000..b3463569 --- /dev/null +++ b/hibernate-maven-plugin/apidocs/script.js @@ -0,0 +1,30 @@ +function show(type) +{ + count = 0; + for (var key in methods) { + var row = document.getElementById(key); + if ((methods[key] & type) != 0) { + row.style.display = ''; + row.className = (count++ % 2) ? rowColor : altColor; + } + else + row.style.display = 'none'; + } + updateTabs(type); +} + +function updateTabs(type) +{ + for (var value in tabs) { + var sNode = document.getElementById(tabs[value][0]); + var spanNode = sNode.firstChild; + if (value == type) { + sNode.className = activeTableTab; + spanNode.innerHTML = tabs[value][1]; + } + else { + sNode.className = tableTab; + spanNode.innerHTML = "" + tabs[value][1] + ""; + } + } +} diff --git a/hibernate-maven-plugin/apidocs/stylesheet.css b/hibernate-maven-plugin/apidocs/stylesheet.css new file mode 100644 index 00000000..98055b22 --- /dev/null +++ b/hibernate-maven-plugin/apidocs/stylesheet.css @@ -0,0 +1,574 @@ +/* Javadoc style sheet */ +/* +Overall document style +*/ + +@import url('resources/fonts/dejavu.css'); + +body { + background-color:#ffffff; + color:#353833; + font-family:'DejaVu Sans', Arial, Helvetica, sans-serif; + font-size:14px; + margin:0; +} +a:link, a:visited { + text-decoration:none; + color:#4A6782; +} +a:hover, a:focus { + text-decoration:none; + color:#bb7a2a; +} +a:active { + text-decoration:none; + color:#4A6782; +} +a[name] { + color:#353833; +} +a[name]:hover { + text-decoration:none; + color:#353833; +} +pre { + font-family:'DejaVu Sans Mono', monospace; + font-size:14px; +} +h1 { + font-size:20px; +} +h2 { + font-size:18px; +} +h3 { + font-size:16px; + font-style:italic; +} +h4 { + font-size:13px; +} +h5 { + font-size:12px; +} +h6 { + font-size:11px; +} +ul { + list-style-type:disc; +} +code, tt { + font-family:'DejaVu Sans Mono', monospace; + font-size:14px; + padding-top:4px; + margin-top:8px; + line-height:1.4em; +} +dt code { + font-family:'DejaVu Sans Mono', monospace; + font-size:14px; + padding-top:4px; +} +table tr td dt code { + font-family:'DejaVu Sans Mono', monospace; + font-size:14px; + vertical-align:top; + padding-top:4px; +} +sup { + font-size:8px; +} +/* +Document title and Copyright styles +*/ +.clear { + clear:both; + height:0px; + overflow:hidden; +} +.aboutLanguage { + float:right; + padding:0px 21px; + font-size:11px; + z-index:200; + margin-top:-9px; +} +.legalCopy { + margin-left:.5em; +} +.bar a, .bar a:link, .bar a:visited, .bar a:active { + color:#FFFFFF; + text-decoration:none; +} +.bar a:hover, .bar a:focus { + color:#bb7a2a; +} +.tab { + background-color:#0066FF; + color:#ffffff; + padding:8px; + width:5em; + font-weight:bold; +} +/* +Navigation bar styles +*/ +.bar { + background-color:#4D7A97; + color:#FFFFFF; + padding:.8em .5em .4em .8em; + height:auto;/*height:1.8em;*/ + font-size:11px; + margin:0; +} +.topNav { + background-color:#4D7A97; + color:#FFFFFF; + float:left; + padding:0; + width:100%; + clear:right; + height:2.8em; + padding-top:10px; + overflow:hidden; + font-size:12px; +} +.bottomNav { + margin-top:10px; + background-color:#4D7A97; + color:#FFFFFF; + float:left; + padding:0; + width:100%; + clear:right; + height:2.8em; + padding-top:10px; + overflow:hidden; + font-size:12px; +} +.subNav { + background-color:#dee3e9; + float:left; + width:100%; + overflow:hidden; + font-size:12px; +} +.subNav div { + clear:left; + float:left; + padding:0 0 5px 6px; + text-transform:uppercase; +} +ul.navList, ul.subNavList { + float:left; + margin:0 25px 0 0; + padding:0; +} +ul.navList li{ + list-style:none; + float:left; + padding: 5px 6px; + text-transform:uppercase; +} +ul.subNavList li{ + list-style:none; + float:left; +} +.topNav a:link, .topNav a:active, .topNav a:visited, .bottomNav a:link, .bottomNav a:active, .bottomNav a:visited { + color:#FFFFFF; + text-decoration:none; + text-transform:uppercase; +} +.topNav a:hover, .bottomNav a:hover { + text-decoration:none; + color:#bb7a2a; + text-transform:uppercase; +} +.navBarCell1Rev { + background-color:#F8981D; + color:#253441; + margin: auto 5px; +} +.skipNav { + position:absolute; + top:auto; + left:-9999px; + overflow:hidden; +} +/* +Page header and footer styles +*/ +.header, .footer { + clear:both; + margin:0 20px; + padding:5px 0 0 0; +} +.indexHeader { + margin:10px; + position:relative; +} +.indexHeader span{ + margin-right:15px; +} +.indexHeader h1 { + font-size:13px; +} +.title { + color:#2c4557; + margin:10px 0; +} +.subTitle { + margin:5px 0 0 0; +} +.header ul { + margin:0 0 15px 0; + padding:0; +} +.footer ul { + margin:20px 0 5px 0; +} +.header ul li, .footer ul li { + list-style:none; + font-size:13px; +} +/* +Heading styles +*/ +div.details ul.blockList ul.blockList ul.blockList li.blockList h4, div.details ul.blockList ul.blockList ul.blockListLast li.blockList h4 { + background-color:#dee3e9; + border:1px solid #d0d9e0; + margin:0 0 6px -8px; + padding:7px 5px; +} +ul.blockList ul.blockList ul.blockList li.blockList h3 { + background-color:#dee3e9; + border:1px solid #d0d9e0; + margin:0 0 6px -8px; + padding:7px 5px; +} +ul.blockList ul.blockList li.blockList h3 { + padding:0; + margin:15px 0; +} +ul.blockList li.blockList h2 { + padding:0px 0 20px 0; +} +/* +Page layout container styles +*/ +.contentContainer, .sourceContainer, .classUseContainer, .serializedFormContainer, .constantValuesContainer { + clear:both; + padding:10px 20px; + position:relative; +} +.indexContainer { + margin:10px; + position:relative; + font-size:12px; +} +.indexContainer h2 { + font-size:13px; + padding:0 0 3px 0; +} +.indexContainer ul { + margin:0; + padding:0; +} +.indexContainer ul li { + list-style:none; + padding-top:2px; +} +.contentContainer .description dl dt, .contentContainer .details dl dt, .serializedFormContainer dl dt { + font-size:12px; + font-weight:bold; + margin:10px 0 0 0; + color:#4E4E4E; +} +.contentContainer .description dl dd, .contentContainer .details dl dd, .serializedFormContainer dl dd { + margin:5px 0 10px 0px; + font-size:14px; + font-family:'DejaVu Sans Mono',monospace; +} +.serializedFormContainer dl.nameValue dt { + margin-left:1px; + font-size:1.1em; + display:inline; + font-weight:bold; +} +.serializedFormContainer dl.nameValue dd { + margin:0 0 0 1px; + font-size:1.1em; + display:inline; +} +/* +List styles +*/ +ul.horizontal li { + display:inline; + font-size:0.9em; +} +ul.inheritance { + margin:0; + padding:0; +} +ul.inheritance li { + display:inline; + list-style:none; +} +ul.inheritance li ul.inheritance { + margin-left:15px; + padding-left:15px; + padding-top:1px; +} +ul.blockList, ul.blockListLast { + margin:10px 0 10px 0; + padding:0; +} +ul.blockList li.blockList, ul.blockListLast li.blockList { + list-style:none; + margin-bottom:15px; + line-height:1.4; +} +ul.blockList ul.blockList li.blockList, ul.blockList ul.blockListLast li.blockList { + padding:0px 20px 5px 10px; + border:1px solid #ededed; + background-color:#f8f8f8; +} +ul.blockList ul.blockList ul.blockList li.blockList, ul.blockList ul.blockList ul.blockListLast li.blockList { + padding:0 0 5px 8px; + background-color:#ffffff; + border:none; +} +ul.blockList ul.blockList ul.blockList ul.blockList li.blockList { + margin-left:0; + padding-left:0; + padding-bottom:15px; + border:none; +} +ul.blockList ul.blockList ul.blockList ul.blockList li.blockListLast { + list-style:none; + border-bottom:none; + padding-bottom:0; +} +table tr td dl, table tr td dl dt, table tr td dl dd { + margin-top:0; + margin-bottom:1px; +} +/* +Table styles +*/ +.overviewSummary, .memberSummary, .typeSummary, .useSummary, .constantsSummary, .deprecatedSummary { + width:100%; + border-left:1px solid #EEE; + border-right:1px solid #EEE; + border-bottom:1px solid #EEE; +} +.overviewSummary, .memberSummary { + padding:0px; +} +.overviewSummary caption, .memberSummary caption, .typeSummary caption, +.useSummary caption, .constantsSummary caption, .deprecatedSummary caption { + position:relative; + text-align:left; + background-repeat:no-repeat; + color:#253441; + font-weight:bold; + clear:none; + overflow:hidden; + padding:0px; + padding-top:10px; + padding-left:1px; + margin:0px; + white-space:pre; +} +.overviewSummary caption a:link, .memberSummary caption a:link, .typeSummary caption a:link, +.useSummary caption a:link, .constantsSummary caption a:link, .deprecatedSummary caption a:link, +.overviewSummary caption a:hover, .memberSummary caption a:hover, .typeSummary caption a:hover, +.useSummary caption a:hover, .constantsSummary caption a:hover, .deprecatedSummary caption a:hover, +.overviewSummary caption a:active, .memberSummary caption a:active, .typeSummary caption a:active, +.useSummary caption a:active, .constantsSummary caption a:active, .deprecatedSummary caption a:active, +.overviewSummary caption a:visited, .memberSummary caption a:visited, .typeSummary caption a:visited, +.useSummary caption a:visited, .constantsSummary caption a:visited, .deprecatedSummary caption a:visited { + color:#FFFFFF; +} +.overviewSummary caption span, .memberSummary caption span, .typeSummary caption span, +.useSummary caption span, .constantsSummary caption span, .deprecatedSummary caption span { + white-space:nowrap; + padding-top:5px; + padding-left:12px; + padding-right:12px; + padding-bottom:7px; + display:inline-block; + float:left; + background-color:#F8981D; + border: none; + height:16px; +} +.memberSummary caption span.activeTableTab span { + white-space:nowrap; + padding-top:5px; + padding-left:12px; + padding-right:12px; + margin-right:3px; + display:inline-block; + float:left; + background-color:#F8981D; + height:16px; +} +.memberSummary caption span.tableTab span { + white-space:nowrap; + padding-top:5px; + padding-left:12px; + padding-right:12px; + margin-right:3px; + display:inline-block; + float:left; + background-color:#4D7A97; + height:16px; +} +.memberSummary caption span.tableTab, .memberSummary caption span.activeTableTab { + padding-top:0px; + padding-left:0px; + padding-right:0px; + background-image:none; + float:none; + display:inline; +} +.overviewSummary .tabEnd, .memberSummary .tabEnd, .typeSummary .tabEnd, +.useSummary .tabEnd, .constantsSummary .tabEnd, .deprecatedSummary .tabEnd { + display:none; + width:5px; + position:relative; + float:left; + background-color:#F8981D; +} +.memberSummary .activeTableTab .tabEnd { + display:none; + width:5px; + margin-right:3px; + position:relative; + float:left; + background-color:#F8981D; +} +.memberSummary .tableTab .tabEnd { + display:none; + width:5px; + margin-right:3px; + position:relative; + background-color:#4D7A97; + float:left; + +} +.overviewSummary td, .memberSummary td, .typeSummary td, +.useSummary td, .constantsSummary td, .deprecatedSummary td { + text-align:left; + padding:0px 0px 12px 10px; +} +th.colOne, th.colFirst, th.colLast, .useSummary th, .constantsSummary th, +td.colOne, td.colFirst, td.colLast, .useSummary td, .constantsSummary td{ + vertical-align:top; + padding-right:0px; + padding-top:8px; + padding-bottom:3px; +} +th.colFirst, th.colLast, th.colOne, .constantsSummary th { + background:#dee3e9; + text-align:left; + padding:8px 3px 3px 7px; +} +td.colFirst, th.colFirst { + white-space:nowrap; + font-size:13px; +} +td.colLast, th.colLast { + font-size:13px; +} +td.colOne, th.colOne { + font-size:13px; +} +.overviewSummary td.colFirst, .overviewSummary th.colFirst, +.useSummary td.colFirst, .useSummary th.colFirst, +.overviewSummary td.colOne, .overviewSummary th.colOne, +.memberSummary td.colFirst, .memberSummary th.colFirst, +.memberSummary td.colOne, .memberSummary th.colOne, +.typeSummary td.colFirst{ + width:25%; + vertical-align:top; +} +td.colOne a:link, td.colOne a:active, td.colOne a:visited, td.colOne a:hover, td.colFirst a:link, td.colFirst a:active, td.colFirst a:visited, td.colFirst a:hover, td.colLast a:link, td.colLast a:active, td.colLast a:visited, td.colLast a:hover, .constantValuesContainer td a:link, .constantValuesContainer td a:active, .constantValuesContainer td a:visited, .constantValuesContainer td a:hover { + font-weight:bold; +} +.tableSubHeadingColor { + background-color:#EEEEFF; +} +.altColor { + background-color:#FFFFFF; +} +.rowColor { + background-color:#EEEEEF; +} +/* +Content styles +*/ +.description pre { + margin-top:0; +} +.deprecatedContent { + margin:0; + padding:10px 0; +} +.docSummary { + padding:0; +} + +ul.blockList ul.blockList ul.blockList li.blockList h3 { + font-style:normal; +} + +div.block { + font-size:14px; + font-family:'DejaVu Serif', Georgia, "Times New Roman", Times, serif; +} + +td.colLast div { + padding-top:0px; +} + + +td.colLast a { + padding-bottom:3px; +} +/* +Formatting effect styles +*/ +.sourceLineNo { + color:green; + padding:0 30px 0 0; +} +h1.hidden { + visibility:hidden; + overflow:hidden; + font-size:10px; +} +.block { + display:block; + margin:3px 10px 2px 0px; + color:#474747; +} +.deprecatedLabel, .descfrmTypeLabel, .memberNameLabel, .memberNameLink, +.overrideSpecifyLabel, .packageHierarchyLabel, .paramLabel, .returnLabel, +.seeLabel, .simpleTagLabel, .throwsLabel, .typeNameLabel, .typeNameLink { + font-weight:bold; +} +.deprecationComment, .emphasizedPhrase, .interfaceName { + font-style:italic; +} + +div.block div.block span.deprecationComment, div.block div.block span.emphasizedPhrase, +div.block div.block span.interfaceName { + font-style:normal; +} + +div.contentContainer ul.blockList li.blockList h2{ + padding-bottom:0px; +} diff --git a/hibernate-maven-plugin/ci-management.html b/hibernate-maven-plugin/ci-management.html index b839728a..88699ad6 100644 --- a/hibernate-maven-plugin/ci-management.html +++ b/hibernate-maven-plugin/ci-management.html @@ -1,6 +1,6 @@ - + @@ -8,7 +8,7 @@ - + @@ -264,19 +264,28 @@ - + - + - - + + + + + + + + + + + @@ -298,7 +307,7 @@ - + @@ -311,7 +320,33 @@ - + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -400,18 +435,18 @@ - + - + - CI Management – Hibernate Maven Plugin + Hibernate Maven Plugin – CI Management @@ -430,23 +465,11 @@


-
-

Overview

-

This project uses Continuum.

-

Access

+
+

Overview

+

This project uses Continuum.

+

Access

The following is a link to the continuous integration system used by the project:

-
http://juplo.de/continuum/
-

Notifiers

-

Configuration for notifying developers/users when a build is unsuccessful, including user information and notification mode.

- - - - - - - - -
TypeAddressConfiguration
mailkai@juplo.de-

Page Structure as JSON

@@ -473,9 +496,12 @@ "/hibernate-maven-plugin/pmd.html": "PMD", "/hibernate-maven-plugin/plugin-info.html": "Plugin Documentation", "/hibernate-maven-plugin/project-reports.html": "Project Reports", + "/hibernate-maven-plugin/index.html?about": "Overview", "/hibernate-maven-plugin/configuration.html": "Configuration Examples", - "/hibernate-maven-plugin/create-mojo.html": "Goal: CREATE", - "/hibernate-maven-plugin/drop-mojo.html": "Goal: DROP", + "/hibernate-maven-plugin/create-mojo.html": "Goal — hibernate:create", + "/hibernate-maven-plugin/update-mojo.html": "Goal — hibernate:update", + "/hibernate-maven-plugin/drop-mojo.html": "Goal — hibernate:drop", + "/hibernate-maven-plugin/help-mojo.html": "Goal — hibernate:help", "/hibernate-maven-plugin/debugging.html": "Enable Debugging-Output", "/hibernate-maven-plugin/skip.html": "Skipping Execution", "/hibernate-maven-plugin/force.html": "Force Exceution", @@ -483,9 +509,12 @@ }, "_childs": { "/hibernate-maven-plugin/index.html": [ + "/hibernate-maven-plugin/index.html?about", "/hibernate-maven-plugin/configuration.html", "/hibernate-maven-plugin/create-mojo.html", + "/hibernate-maven-plugin/update-mojo.html", "/hibernate-maven-plugin/drop-mojo.html", + "/hibernate-maven-plugin/help-mojo.html", "/hibernate-maven-plugin/debugging.html", "/hibernate-maven-plugin/skip.html", "/hibernate-maven-plugin/force.html", @@ -632,6 +661,11 @@ "/hibernate-maven-plugin/index.html", "/hibernate-maven-plugin/project-reports.html" ], + "/hibernate-maven-plugin/index.html?about": [ + "/index.html","/projects.html", + "/hibernate-maven-plugin/index.html", + "/hibernate-maven-plugin/index.html?about" + ], "/hibernate-maven-plugin/configuration.html": [ "/index.html","/projects.html", "/hibernate-maven-plugin/index.html", @@ -642,11 +676,21 @@ "/hibernate-maven-plugin/index.html", "/hibernate-maven-plugin/create-mojo.html" ], + "/hibernate-maven-plugin/update-mojo.html": [ + "/index.html","/projects.html", + "/hibernate-maven-plugin/index.html", + "/hibernate-maven-plugin/update-mojo.html" + ], "/hibernate-maven-plugin/drop-mojo.html": [ "/index.html","/projects.html", "/hibernate-maven-plugin/index.html", "/hibernate-maven-plugin/drop-mojo.html" ], + "/hibernate-maven-plugin/help-mojo.html": [ + "/index.html","/projects.html", + "/hibernate-maven-plugin/index.html", + "/hibernate-maven-plugin/help-mojo.html" + ], "/hibernate-maven-plugin/debugging.html": [ "/index.html","/projects.html", "/hibernate-maven-plugin/index.html", @@ -689,9 +733,12 @@ "/hibernate-maven-plugin/pmd.html": "/hibernate-maven-plugin/pmd.html", "/hibernate-maven-plugin/plugin-info.html": "/hibernate-maven-plugin/plugin-info.html", "/hibernate-maven-plugin/project-reports.html": "/hibernate-maven-plugin/project-reports.html", + "/hibernate-maven-plugin/index.html?about": "/hibernate-maven-plugin/index.html?about", "/hibernate-maven-plugin/configuration.html": "/hibernate-maven-plugin/configuration.html", "/hibernate-maven-plugin/create-mojo.html": "/hibernate-maven-plugin/create-mojo.html", + "/hibernate-maven-plugin/update-mojo.html": "/hibernate-maven-plugin/update-mojo.html", "/hibernate-maven-plugin/drop-mojo.html": "/hibernate-maven-plugin/drop-mojo.html", + "/hibernate-maven-plugin/help-mojo.html": "/hibernate-maven-plugin/help-mojo.html", "/hibernate-maven-plugin/debugging.html": "/hibernate-maven-plugin/debugging.html", "/hibernate-maven-plugin/skip.html": "/hibernate-maven-plugin/skip.html", "/hibernate-maven-plugin/force.html": "/hibernate-maven-plugin/force.html", @@ -702,7 +749,7 @@

All Pages

+
  • Hibernate Maven Plugin
  • CI Management
  • Dependencies
  • Maven Coordinates
  • Distribution Management
  • Licenses
  • Plugin Management
  • Plugins
  • Source Code Management
  • Summary
  • Team
  • Project Information
  • Test JavaDocs
  • JavaDocs
  • Source Xref
  • Test Source Xref
  • CPD
  • PMD
  • Plugin Documentation
  • Project Reports
  • Overview
  • Configuration Examples
  • Goal — hibernate:create
  • Goal — hibernate:update
  • Goal — hibernate:drop
  • Goal — hibernate:help
  • Enable Debugging-Output
  • Skipping Execution
  • Force Exceution
  • Known Pitfalls (FAQ)
  • diff --git a/hibernate-maven-plugin/configuration.html b/hibernate-maven-plugin/configuration.html index 8cb0d9b3..1bad7273 100644 --- a/hibernate-maven-plugin/configuration.html +++ b/hibernate-maven-plugin/configuration.html @@ -1,6 +1,6 @@ - + @@ -8,7 +8,7 @@ - + @@ -264,19 +264,28 @@ - + - + - - + + + + + + + + + + + @@ -298,7 +307,33 @@ - + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -311,7 +346,7 @@ - + @@ -400,23 +435,23 @@ - - + + - + - Hibernate Maven Plugin + Hibernate Maven Plugin – -

    $shortTitle

    +

    URI

    diff --git a/hibernate-maven-plugin/cpd.html b/hibernate-maven-plugin/cpd.html index 1b79d89f..05e84c9d 100644 --- a/hibernate-maven-plugin/cpd.html +++ b/hibernate-maven-plugin/cpd.html @@ -1,6 +1,6 @@ - + @@ -8,7 +8,7 @@ - + @@ -264,19 +264,28 @@ - + - + - - + + + + + + + + + + + @@ -298,7 +307,33 @@ - + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -311,7 +346,7 @@ - + @@ -400,18 +435,18 @@ - + - + - CPD Results – Hibernate Maven Plugin + Hibernate Maven Plugin – CPD Results @@ -431,9 +466,77 @@
    -

    CPD Results

    +

    CPD Results

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

    -

    Duplications

    +

    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);

    Page Structure as JSON

    @@ -460,9 +563,12 @@ "/hibernate-maven-plugin/pmd.html": "PMD", "/hibernate-maven-plugin/plugin-info.html": "Plugin Documentation", "/hibernate-maven-plugin/project-reports.html": "Project Reports", + "/hibernate-maven-plugin/index.html?about": "Overview", "/hibernate-maven-plugin/configuration.html": "Configuration Examples", - "/hibernate-maven-plugin/create-mojo.html": "Goal: CREATE", - "/hibernate-maven-plugin/drop-mojo.html": "Goal: DROP", + "/hibernate-maven-plugin/create-mojo.html": "Goal — hibernate:create", + "/hibernate-maven-plugin/update-mojo.html": "Goal — hibernate:update", + "/hibernate-maven-plugin/drop-mojo.html": "Goal — hibernate:drop", + "/hibernate-maven-plugin/help-mojo.html": "Goal — hibernate:help", "/hibernate-maven-plugin/debugging.html": "Enable Debugging-Output", "/hibernate-maven-plugin/skip.html": "Skipping Execution", "/hibernate-maven-plugin/force.html": "Force Exceution", @@ -470,9 +576,12 @@ }, "_childs": { "/hibernate-maven-plugin/index.html": [ + "/hibernate-maven-plugin/index.html?about", "/hibernate-maven-plugin/configuration.html", "/hibernate-maven-plugin/create-mojo.html", + "/hibernate-maven-plugin/update-mojo.html", "/hibernate-maven-plugin/drop-mojo.html", + "/hibernate-maven-plugin/help-mojo.html", "/hibernate-maven-plugin/debugging.html", "/hibernate-maven-plugin/skip.html", "/hibernate-maven-plugin/force.html", @@ -619,6 +728,11 @@ "/hibernate-maven-plugin/index.html", "/hibernate-maven-plugin/project-reports.html" ], + "/hibernate-maven-plugin/index.html?about": [ + "/index.html","/projects.html", + "/hibernate-maven-plugin/index.html", + "/hibernate-maven-plugin/index.html?about" + ], "/hibernate-maven-plugin/configuration.html": [ "/index.html","/projects.html", "/hibernate-maven-plugin/index.html", @@ -629,11 +743,21 @@ "/hibernate-maven-plugin/index.html", "/hibernate-maven-plugin/create-mojo.html" ], + "/hibernate-maven-plugin/update-mojo.html": [ + "/index.html","/projects.html", + "/hibernate-maven-plugin/index.html", + "/hibernate-maven-plugin/update-mojo.html" + ], "/hibernate-maven-plugin/drop-mojo.html": [ "/index.html","/projects.html", "/hibernate-maven-plugin/index.html", "/hibernate-maven-plugin/drop-mojo.html" ], + "/hibernate-maven-plugin/help-mojo.html": [ + "/index.html","/projects.html", + "/hibernate-maven-plugin/index.html", + "/hibernate-maven-plugin/help-mojo.html" + ], "/hibernate-maven-plugin/debugging.html": [ "/index.html","/projects.html", "/hibernate-maven-plugin/index.html", @@ -676,9 +800,12 @@ "/hibernate-maven-plugin/pmd.html": "/hibernate-maven-plugin/pmd.html", "/hibernate-maven-plugin/plugin-info.html": "/hibernate-maven-plugin/plugin-info.html", "/hibernate-maven-plugin/project-reports.html": "/hibernate-maven-plugin/project-reports.html", + "/hibernate-maven-plugin/index.html?about": "/hibernate-maven-plugin/index.html?about", "/hibernate-maven-plugin/configuration.html": "/hibernate-maven-plugin/configuration.html", "/hibernate-maven-plugin/create-mojo.html": "/hibernate-maven-plugin/create-mojo.html", + "/hibernate-maven-plugin/update-mojo.html": "/hibernate-maven-plugin/update-mojo.html", "/hibernate-maven-plugin/drop-mojo.html": "/hibernate-maven-plugin/drop-mojo.html", + "/hibernate-maven-plugin/help-mojo.html": "/hibernate-maven-plugin/help-mojo.html", "/hibernate-maven-plugin/debugging.html": "/hibernate-maven-plugin/debugging.html", "/hibernate-maven-plugin/skip.html": "/hibernate-maven-plugin/skip.html", "/hibernate-maven-plugin/force.html": "/hibernate-maven-plugin/force.html", @@ -689,7 +816,7 @@

    All Pages

    +
  • Hibernate Maven Plugin
  • CI Management
  • Dependencies
  • Maven Coordinates
  • Distribution Management
  • Licenses
  • Plugin Management
  • Plugins
  • Source Code Management
  • Summary
  • Team
  • Project Information
  • Test JavaDocs
  • JavaDocs
  • Source Xref
  • Test Source Xref
  • CPD
  • PMD
  • Plugin Documentation
  • Project Reports
  • Overview
  • Configuration Examples
  • Goal — hibernate:create
  • Goal — hibernate:update
  • Goal — hibernate:drop
  • Goal — hibernate:help
  • Enable Debugging-Output
  • Skipping Execution
  • Force Exceution
  • Known Pitfalls (FAQ)
  • diff --git a/hibernate-maven-plugin/create-mojo.html b/hibernate-maven-plugin/create-mojo.html index 470c52d7..6c01de0b 100644 --- a/hibernate-maven-plugin/create-mojo.html +++ b/hibernate-maven-plugin/create-mojo.html @@ -1,6 +1,6 @@ - + @@ -8,7 +8,7 @@ - + @@ -264,19 +264,28 @@ - + - + - - + + + + + + + + + + + @@ -298,7 +307,7 @@ - + @@ -311,7 +320,33 @@ - + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -399,19 +434,19 @@ - - + + - + - hibernate:create – Hibernate Maven Plugin + Hibernate Maven Plugin – hibernate:create @@ -426,25 +461,25 @@

    Path

      -
    1. Hibernate Maven Plugin
    2. Goal: CREATE
    +
  • Hibernate Maven Plugin
  • Goal — hibernate:create

  • -
    -

    hibernate:create

    +
    +

    hibernate:create

    -

    Full name:

    +

    Full name:

    de.juplo:hibernate-maven-plugin:2.1.1:create

    -

    Description:

    +

    Description:

    Generate/Execute SQL to create a database-schema that represents the configured mappings.
    -

    Attributes:

    +

    Attributes:

      @@ -454,12 +489,12 @@ the configured mappings.
    • The goal is thread-safe and supports parallel builds.
    • -
    • Binds by default to the lifecycle phase: process-classes.
    • +
    • Binds by default to the lifecycle phase: process-classes.
    -
    -

    Optional Parameters

    +
    +

    Optional Parameters

    - +
    @@ -474,19 +509,19 @@ the configured mappings. - + +schema/catalog.
    Default value is: false.
    User property is: hibernate.hbm2dll.create_namespaces. - + @@ -494,37 +529,37 @@ schema/catalog.
    Default value is: false.
    Delimiter in output-file. -

    Important: This configuration value can only be +

    Important: This configuration value can only be configured through the pom.xml, or by the definition of a system-property, because it is not known by Hibernate nor JPA -and, hence, not picked up from their configuration!


    Default value is: ;.
    User property is: hibernate.hbm2ddl.delimiter. +and, hence, not picked up from their configuration!


    Default value is: ;.
    User property is: hibernate.hbm2ddl.delimiter. - + - + - + - + - + @@ -533,15 +568,15 @@ and, hence, not picked up from their configuration!


    Default val +and, hence, not picked up from their configuration!


    Default value is: true.
    User property is: hibernate.schema.execute.
    - + @@ -555,26 +590,26 @@ found and the configuration was not changed.

    skip takes precedence over force.

    -

    Important: This configuration value can only be +

    Important: This configuration value can only be configured through the pom.xml, or by the definition of a system-property, because it is not known by Hibernate nor JPA -and, hence, not picked up from their configuration!


    Default value is: false.
    User property is: hibernate.schema.force. +and, hence, not picked up from their configuration!


    Default value is: false.
    User property is: hibernate.schema.force.
    - + - + - + @@ -599,7 +634,7 @@ file.


    - + @@ -622,30 +657,30 @@ precedence.


    - + - + - + +separated with white-spaces and/or commas.
    User property is: hibernate.mapping.
    - + @@ -657,15 +692,15 @@ separated with white-spaces and/or commas.
    User property is -

    Important: This configuration value can only be +

    Important: This configuration value can only be configured through the pom.xml, or by the definition of a system-property, because it is not known by Hibernate nor JPA -and, hence, not picked up from their configuration!


    User property is: project.build.outputDirectory. +and, hence, not picked up from their configuration!


    User property is: project.build.outputDirectory.
    - + @@ -675,23 +710,23 @@ and, hence, not picked up from their configuration!


    User proper

    If the specified filename is not absolut, the file will be created relative to the project build directory -(project.build.directory).


    Default value is: create.sql.
    User property is: hibernate.schema.create. +(project.build.directory).


    Default value is: create.sql.
    User property is: hibernate.schema.create.
    - + - + - + @@ -714,18 +749,18 @@ or the configuration file.


    - + - + - + @@ -736,12 +771,12 @@ or the configuration file.


    This parameter is intended to allow overwriting of the parameter exclude-unlisted-classes of a persistence-unit. If not specified, it defaults to -true


    User property is: hibernate.schema.scan.classes. +true


    User property is: hibernate.schema.scan.classes.
    - + @@ -759,12 +794,12 @@ classes, set this parameter to none.

    The plugin does not scan for annotated classes in transitive dependencies. If some of your annotated classes are hidden in a transitive dependency, you can simply add that dependency -explicitly.


    Default value is: compile.
    User property is: hibernate.schema.scan.dependencies. +explicitly.


    Default value is: compile.
    User property is: hibernate.schema.scan.dependencies.
    - + @@ -777,26 +812,26 @@ classes, or not. of the artifact will be scanned for hibernate-annotated classes additionally.

    -

    Important: This configuration value can only be +

    Important: This configuration value can only be configured through the pom.xml, or by the definition of a system-property, because it is not known by Hibernate nor JPA -and, hence, not picked up from their configuration!


    Default value is: false.
    User property is: hibernate.schema.scan.test_classes. +and, hence, not picked up from their configuration!


    Default value is: false.
    User property is: hibernate.schema.scan.test_classes.
    - + - + - + @@ -813,15 +848,15 @@ and, hence, not picked up from their configuration!


    Default val added annotated classes are found and the dialect was not changed.

    -

    Important: This configuration value can only be +

    Important: This configuration value can only be configured through the pom.xml, or by the definition of a system-property, because it is not known by Hibernate nor JPA -and, hence, not picked up from their configuration!


    Default value is: ${maven.test.skip}.
    User property is: hibernate.schema.skip. +and, hence, not picked up from their configuration!


    Default value is: ${maven.test.skip}.
    User property is: hibernate.schema.skip.
    - + @@ -835,127 +870,127 @@ test-classes.

    This parameter is only used, when scanTestClasses is set to true!

    -

    Important: This configuration value can only be +

    Important: This configuration value can only be configured through the pom.xml, or by the definition of a system-property, because it is not known by Hibernate nor JPA -and, hence, not picked up from their configuration!


    User property is: project.build.testOutputDirectory. +and, hence, not picked up from their configuration!


    User property is: project.build.testOutputDirectory.
    - + - + - + - +
    createNamespacescreateNamespaces Boolean 2.0 Specifies whether to automatically create also the database -schema/catalog.
    Default value is: false.
    User property is: hibernate.hbm2dll.create_namespaces.
    delimiterdelimiter String
    dialectdialect String 1.0Hibernate dialect.
    User property is: hibernate.dialect.
    Hibernate dialect.
    User property is: hibernate.dialect.
    driverdriver String 1.0SQL-Driver name.
    User property is: hibernate.connection.driver_class.
    SQL-Driver name.
    User property is: hibernate.connection.driver_class.
    executeexecute BooleanExcecute the generated SQL. If set to false, only the SQL-script is created and the database is not touched. -

    Important: This configuration value can only be +

    Important: This configuration value can only be configured through the pom.xml, or by the definition of a system-property, because it is not known by Hibernate nor JPA -and, hence, not picked up from their configuration!


    Default value is: true.
    User property is: hibernate.schema.execute.
    forceforce boolean
    formatformat Boolean 1.0Format output-file.
    User property is: hibernate.format_sql.
    Format output-file.
    User property is: hibernate.format_sql.
    hibernateConfighibernateConfig String
    hibernatePropertieshibernateProperties String
    implicitNamingStrategyimplicitNamingStrategy String 2.0Implicit naming strategy
    User property is: hibernate.implicit_naming_strategy.
    Implicit naming strategy
    User property is: hibernate.implicit_naming_strategy.
    mappingsmappings String 1.0.2 List of Hibernate-Mapping-Files (XML). Multiple files can be -separated with white-spaces and/or commas.
    User property is: hibernate.mapping.
    outputDirectoryoutputDirectory String
    outputFileoutputFile String
    passwordpassword String 1.0Database password
    User property is: hibernate.connection.password.
    Database password
    User property is: hibernate.connection.password.
    persistenceUnitpersistenceUnit String
    physicalNamingStrategyphysicalNamingStrategy String 2.0Physical naming strategy
    User property is: hibernate.physical_naming_strategy.
    Physical naming strategy
    User property is: hibernate.physical_naming_strategy.
    scanClassesscanClasses Boolean
    scanDependenciesscanDependencies String
    scanTestClassesscanTestClasses Boolean
    showshow Boolean 1.0Show the generated SQL in the command-line output.
    User property is: hibernate.show_sql.
    Show the generated SQL in the command-line output.
    User property is: hibernate.show_sql.
    skipskip boolean
    testOutputDirectorytestOutputDirectory String
    urlurl String 1.0Database URL.
    User property is: hibernate.connection.url.
    Database URL.
    User property is: hibernate.connection.url.
    usernameusername String 1.0Database username
    User property is: hibernate.connection.username.
    Database username
    User property is: hibernate.connection.username.
    -
    -

    Parameter Details

    +
    +

    Parameter Details

    -

    createNamespaces:

    +

    createNamespaces:

    Specifies whether to automatically create also the database schema/catalog.
      -
    • Type: java.lang.Boolean
    • +
    • Type: java.lang.Boolean
    • -
    • Since: 2.0
    • +
    • Since: 2.0
    • -
    • Required: No
    • +
    • Required: No
    • -
    • User Property: hibernate.hbm2dll.create_namespaces
    • +
    • User Property: hibernate.hbm2dll.create_namespaces
    • -
    • Default: false
    • +
    • Default: false

    -

    delimiter:

    +

    delimiter:

    Delimiter in output-file. -

    Important: This configuration value can only be +

    Important: This configuration value can only be configured through the pom.xml, or by the definition of a system-property, because it is not known by Hibernate nor JPA and, hence, not picked up from their configuration!

      -
    • Type: java.lang.String
    • +
    • Type: java.lang.String
    • -
    • Since: 1.0
    • +
    • Since: 1.0
    • -
    • Required: No
    • +
    • Required: No
    • -
    • User Property: hibernate.hbm2ddl.delimiter
    • +
    • User Property: hibernate.hbm2ddl.delimiter
    • -
    • Default: ;
    • +
    • Default: ;

    -

    dialect:

    +

    dialect:

    Hibernate dialect.
      -
    • Type: java.lang.String
    • +
    • Type: java.lang.String
    • -
    • Since: 1.0
    • +
    • Since: 1.0
    • -
    • Required: No
    • +
    • Required: No
    • -
    • User Property: hibernate.dialect
    • +
    • User Property: hibernate.dialect

    -

    driver:

    +

    driver:

    SQL-Driver name.
      -
    • Type: java.lang.String
    • +
    • Type: java.lang.String
    • -
    • Since: 1.0
    • +
    • Since: 1.0
    • -
    • Required: No
    • +
    • Required: No
    • -
    • User Property: hibernate.connection.driver_class
    • +
    • User Property: hibernate.connection.driver_class

    -

    execute:

    +

    execute:

    Excecute the generated SQL. If set to false, only the SQL-script is created and the database is not touched. -

    Important: This configuration value can only be +

    Important: This configuration value can only be configured through the pom.xml, or by the definition of a system-property, because it is not known by Hibernate nor JPA and, hence, not picked up from their configuration!

      -
    • Type: java.lang.Boolean
    • +
    • Type: java.lang.Boolean
    • -
    • Since: 2.0
    • +
    • Since: 2.0
    • -
    • Required: No
    • +
    • Required: No
    • -
    • User Property: hibernate.schema.execute
    • +
    • User Property: hibernate.schema.execute
    • -
    • Default: true
    • +
    • Default: true

    -

    force:

    +

    force:

    Force generation/execution @@ -965,38 +1000,38 @@ found and the configuration was not changed.

    skip takes precedence over force.

    -

    Important: This configuration value can only be +

    Important: This configuration value can only be configured through the pom.xml, or by the definition of a system-property, because it is not known by Hibernate nor JPA and, hence, not picked up from their configuration!

      -
    • Type: boolean
    • +
    • Type: boolean
    • -
    • Since: 1.0
    • +
    • Since: 1.0
    • -
    • Required: No
    • +
    • Required: No
    • -
    • User Property: hibernate.schema.force
    • +
    • User Property: hibernate.schema.force
    • -
    • Default: false
    • +
    • Default: false

    -

    format:

    +

    format:

    Format output-file.
      -
    • Type: java.lang.Boolean
    • +
    • Type: java.lang.Boolean
    • -
    • Since: 1.0
    • +
    • Since: 1.0
    • -
    • Required: No
    • +
    • Required: No
    • -
    • User Property: hibernate.format_sql
    • +
    • User Property: hibernate.format_sql

    -

    hibernateConfig:

    +

    hibernateConfig:

    Path to Hibernate configuration file (.cfg.xml). If this parameter is specified, the plugin will try to load configuration values from @@ -1016,13 +1051,13 @@ file.

      -
    • Type: java.lang.String
    • +
    • Type: java.lang.String
    • -
    • Since: 1.1.0
    • +
    • Since: 1.1.0
    • -
    • Required: No
    • +
    • Required: No

    -

    hibernateProperties:

    +

    hibernateProperties:

    Path to a file or name of a ressource with hibernate properties. If this parameter is specified, the plugin will try to load @@ -1040,42 +1075,42 @@ precedence.

      -
    • Type: java.lang.String
    • +
    • Type: java.lang.String
    • -
    • Since: 1.0
    • +
    • Since: 1.0
    • -
    • Required: No
    • +
    • Required: No

    -

    implicitNamingStrategy:

    +

    implicitNamingStrategy:

    Implicit naming strategy
      -
    • Type: java.lang.String
    • +
    • Type: java.lang.String
    • -
    • Since: 2.0
    • +
    • Since: 2.0
    • -
    • Required: No
    • +
    • Required: No
    • -
    • User Property: hibernate.implicit_naming_strategy
    • +
    • User Property: hibernate.implicit_naming_strategy

    -

    mappings:

    +

    mappings:

    List of Hibernate-Mapping-Files (XML). Multiple files can be separated with white-spaces and/or commas.
      -
    • Type: java.lang.String
    • +
    • Type: java.lang.String
    • -
    • Since: 1.0.2
    • +
    • Since: 1.0.2
    • -
    • Required: No
    • +
    • Required: No
    • -
    • User Property: hibernate.mapping
    • +
    • User Property: hibernate.mapping

    -

    outputDirectory:

    +

    outputDirectory:

    Classes-Directory to scan. @@ -1083,22 +1118,22 @@ separated with white-spaces and/or commas.
    classes. Additionally, all dependencies are scanned for annotated classes.

    -

    Important: This configuration value can only be +

    Important: This configuration value can only be configured through the pom.xml, or by the definition of a system-property, because it is not known by Hibernate nor JPA and, hence, not picked up from their configuration!

      -
    • Type: java.lang.String
    • +
    • Type: java.lang.String
    • -
    • Since: 1.0
    • +
    • Since: 1.0
    • -
    • Required: No
    • +
    • Required: No
    • -
    • User Property: project.build.outputDirectory
    • +
    • User Property: project.build.outputDirectory

    -

    outputFile:

    +

    outputFile:

    Output file. @@ -1108,31 +1143,31 @@ created relative to the project build directory
      -
    • Type: java.lang.String
    • +
    • Type: java.lang.String
    • -
    • Since: 1.0
    • +
    • Since: 1.0
    • -
    • Required: No
    • +
    • Required: No
    • -
    • User Property: hibernate.schema.create
    • +
    • User Property: hibernate.schema.create
    • -
    • Default: create.sql
    • +
    • Default: create.sql

    -

    password:

    +

    password:

    Database password
      -
    • Type: java.lang.String
    • +
    • Type: java.lang.String
    • -
    • Since: 1.0
    • +
    • Since: 1.0
    • -
    • Required: No
    • +
    • Required: No
    • -
    • User Property: hibernate.connection.password
    • +
    • User Property: hibernate.connection.password

    -

    persistenceUnit:

    +

    persistenceUnit:

    Name of the persistence-unit. If this parameter is specified, the plugin will try to load configuration values from a @@ -1150,27 +1185,27 @@ or the configuration file.

      -
    • Type: java.lang.String
    • +
    • Type: java.lang.String
    • -
    • Since: 1.1.0
    • +
    • Since: 1.1.0
    • -
    • Required: No
    • +
    • Required: No

    -

    physicalNamingStrategy:

    +

    physicalNamingStrategy:

    Physical naming strategy
      -
    • Type: java.lang.String
    • +
    • Type: java.lang.String
    • -
    • Since: 2.0
    • +
    • Since: 2.0
    • -
    • Required: No
    • +
    • Required: No
    • -
    • User Property: hibernate.physical_naming_strategy
    • +
    • User Property: hibernate.physical_naming_strategy

    -

    scanClasses:

    +

    scanClasses:

    Wether the project should be scanned for annotated-classes, or not @@ -1181,15 +1216,15 @@ or the configuration file.

      -
    • Type: java.lang.Boolean
    • +
    • Type: java.lang.Boolean
    • -
    • Since: 2.0
    • +
    • Since: 2.0
    • -
    • Required: No
    • +
    • Required: No
    • -
    • User Property: hibernate.schema.scan.classes
    • +
    • User Property: hibernate.schema.scan.classes

    -

    scanDependencies:

    +

    scanDependencies:

    Dependency-Scopes, that should be scanned for annotated classes. @@ -1207,17 +1242,17 @@ explicitly.

      -
    • Type: java.lang.String
    • +
    • Type: java.lang.String
    • -
    • Since: 1.0.3
    • +
    • Since: 1.0.3
    • -
    • Required: No
    • +
    • Required: No
    • -
    • User Property: hibernate.schema.scan.dependencies
    • +
    • User Property: hibernate.schema.scan.dependencies
    • -
    • Default: compile
    • +
    • Default: compile

    -

    scanTestClasses:

    +

    scanTestClasses:

    Whether to scan the test-branch of the project for annotated classes, or not. @@ -1226,38 +1261,38 @@ classes, or not. of the artifact will be scanned for hibernate-annotated classes additionally.

    -

    Important: This configuration value can only be +

    Important: This configuration value can only be configured through the pom.xml, or by the definition of a system-property, because it is not known by Hibernate nor JPA and, hence, not picked up from their configuration!

      -
    • Type: java.lang.Boolean
    • +
    • Type: java.lang.Boolean
    • -
    • Since: 1.0.1
    • +
    • Since: 1.0.1
    • -
    • Required: No
    • +
    • Required: No
    • -
    • User Property: hibernate.schema.scan.test_classes
    • +
    • User Property: hibernate.schema.scan.test_classes
    • -
    • Default: false
    • +
    • Default: false

    -

    show:

    +

    show:

    Show the generated SQL in the command-line output.
      -
    • Type: java.lang.Boolean
    • +
    • Type: java.lang.Boolean
    • -
    • Since: 1.0
    • +
    • Since: 1.0
    • -
    • Required: No
    • +
    • Required: No
    • -
    • User Property: hibernate.show_sql
    • +
    • User Property: hibernate.show_sql

    -

    :

    +

    skip:

    Skip execution @@ -1270,24 +1305,24 @@ and, hence, not picked up from their configuration!

    added annotated classes are found and the dialect was not changed.

    -

    Important: This configuration value can only be +

    Important: This configuration value can only be configured through the pom.xml, or by the definition of a system-property, because it is not known by Hibernate nor JPA and, hence, not picked up from their configuration!

      -
    • Type: boolean
    • +
    • Type: boolean
    • -
    • Since: 1.0
    • +
    • Since: 1.0
    • -
    • Required: No
    • +
    • Required: No
    • -
    • User Property: hibernate.schema.skip
    • +
    • User Property: hibernate.schema.skip
    • -
    • Default: ${maven.test.skip}
    • +
    • Default: ${maven.test.skip}

    -

    testOutputDirectory:

    +

    testOutputDirectory:

    Test-Classes-Directory to scan. @@ -1297,48 +1332,48 @@ test-classes.

    This parameter is only used, when scanTestClasses is set to true!

    -

    Important: This configuration value can only be +

    Important: This configuration value can only be configured through the pom.xml, or by the definition of a system-property, because it is not known by Hibernate nor JPA and, hence, not picked up from their configuration!

      -
    • Type: java.lang.String
    • +
    • Type: java.lang.String
    • -
    • Since: 1.0.2
    • +
    • Since: 1.0.2
    • -
    • Required: No
    • +
    • Required: No
    • -
    • User Property: project.build.testOutputDirectory
    • +
    • User Property: project.build.testOutputDirectory

    -

    url:

    +

    url:

    Database URL.
      -
    • Type: java.lang.String
    • +
    • Type: java.lang.String
    • -
    • Since: 1.0
    • +
    • Since: 1.0
    • -
    • Required: No
    • +
    • Required: No
    • -
    • User Property: hibernate.connection.url
    • +
    • User Property: hibernate.connection.url

    -

    username:

    +

    username:

    Database username
      -
    • Type: java.lang.String
    • +
    • Type: java.lang.String
    • -
    • Since: 1.0
    • +
    • Since: 1.0
    • -
    • Required: No
    • +
    • Required: No
    • -
    • User Property: hibernate.connection.username
    • +
    • User Property: hibernate.connection.username
    @@ -1370,9 +1405,12 @@ and, hence, not picked up from their configuration!

    "/hibernate-maven-plugin/pmd.html": "PMD", "/hibernate-maven-plugin/plugin-info.html": "Plugin Documentation", "/hibernate-maven-plugin/project-reports.html": "Project Reports", + "/hibernate-maven-plugin/index.html?about": "Overview", "/hibernate-maven-plugin/configuration.html": "Configuration Examples", - "/hibernate-maven-plugin/create-mojo.html": "Goal: CREATE", - "/hibernate-maven-plugin/drop-mojo.html": "Goal: DROP", + "/hibernate-maven-plugin/create-mojo.html": "Goal — hibernate:create", + "/hibernate-maven-plugin/update-mojo.html": "Goal — hibernate:update", + "/hibernate-maven-plugin/drop-mojo.html": "Goal — hibernate:drop", + "/hibernate-maven-plugin/help-mojo.html": "Goal — hibernate:help", "/hibernate-maven-plugin/debugging.html": "Enable Debugging-Output", "/hibernate-maven-plugin/skip.html": "Skipping Execution", "/hibernate-maven-plugin/force.html": "Force Exceution", @@ -1380,9 +1418,12 @@ and, hence, not picked up from their configuration!

    }, "_childs": { "/hibernate-maven-plugin/index.html": [ + "/hibernate-maven-plugin/index.html?about", "/hibernate-maven-plugin/configuration.html", "/hibernate-maven-plugin/create-mojo.html", + "/hibernate-maven-plugin/update-mojo.html", "/hibernate-maven-plugin/drop-mojo.html", + "/hibernate-maven-plugin/help-mojo.html", "/hibernate-maven-plugin/debugging.html", "/hibernate-maven-plugin/skip.html", "/hibernate-maven-plugin/force.html", @@ -1529,6 +1570,11 @@ and, hence, not picked up from their configuration!

    "/hibernate-maven-plugin/index.html", "/hibernate-maven-plugin/project-reports.html" ], + "/hibernate-maven-plugin/index.html?about": [ + "/index.html","/projects.html", + "/hibernate-maven-plugin/index.html", + "/hibernate-maven-plugin/index.html?about" + ], "/hibernate-maven-plugin/configuration.html": [ "/index.html","/projects.html", "/hibernate-maven-plugin/index.html", @@ -1539,11 +1585,21 @@ and, hence, not picked up from their configuration!

    "/hibernate-maven-plugin/index.html", "/hibernate-maven-plugin/create-mojo.html" ], + "/hibernate-maven-plugin/update-mojo.html": [ + "/index.html","/projects.html", + "/hibernate-maven-plugin/index.html", + "/hibernate-maven-plugin/update-mojo.html" + ], "/hibernate-maven-plugin/drop-mojo.html": [ "/index.html","/projects.html", "/hibernate-maven-plugin/index.html", "/hibernate-maven-plugin/drop-mojo.html" ], + "/hibernate-maven-plugin/help-mojo.html": [ + "/index.html","/projects.html", + "/hibernate-maven-plugin/index.html", + "/hibernate-maven-plugin/help-mojo.html" + ], "/hibernate-maven-plugin/debugging.html": [ "/index.html","/projects.html", "/hibernate-maven-plugin/index.html", @@ -1586,9 +1642,12 @@ and, hence, not picked up from their configuration!

    "/hibernate-maven-plugin/pmd.html": "/hibernate-maven-plugin/pmd.html", "/hibernate-maven-plugin/plugin-info.html": "/hibernate-maven-plugin/plugin-info.html", "/hibernate-maven-plugin/project-reports.html": "/hibernate-maven-plugin/project-reports.html", + "/hibernate-maven-plugin/index.html?about": "/hibernate-maven-plugin/index.html?about", "/hibernate-maven-plugin/configuration.html": "/hibernate-maven-plugin/configuration.html", "/hibernate-maven-plugin/create-mojo.html": "/hibernate-maven-plugin/create-mojo.html", + "/hibernate-maven-plugin/update-mojo.html": "/hibernate-maven-plugin/update-mojo.html", "/hibernate-maven-plugin/drop-mojo.html": "/hibernate-maven-plugin/drop-mojo.html", + "/hibernate-maven-plugin/help-mojo.html": "/hibernate-maven-plugin/help-mojo.html", "/hibernate-maven-plugin/debugging.html": "/hibernate-maven-plugin/debugging.html", "/hibernate-maven-plugin/skip.html": "/hibernate-maven-plugin/skip.html", "/hibernate-maven-plugin/force.html": "/hibernate-maven-plugin/force.html", @@ -1599,7 +1658,7 @@ and, hence, not picked up from their configuration!

    All Pages

    +
  • Hibernate Maven Plugin
  • CI Management
  • Dependencies
  • Maven Coordinates
  • Distribution Management
  • Licenses
  • Plugin Management
  • Plugins
  • Source Code Management
  • Summary
  • Team
  • Project Information
  • Test JavaDocs
  • JavaDocs
  • Source Xref
  • Test Source Xref
  • CPD
  • PMD
  • Plugin Documentation
  • Project Reports
  • Overview
  • Configuration Examples
  • Goal — hibernate:create
  • Goal — hibernate:update
  • Goal — hibernate:drop
  • Goal — hibernate:help
  • Enable Debugging-Output
  • Skipping Execution
  • Force Exceution
  • Known Pitfalls (FAQ)
  • diff --git a/hibernate-maven-plugin/debugging.html b/hibernate-maven-plugin/debugging.html index 025831f5..d23a6d47 100644 --- a/hibernate-maven-plugin/debugging.html +++ b/hibernate-maven-plugin/debugging.html @@ -1,6 +1,6 @@ - + @@ -8,7 +8,7 @@ - + @@ -264,19 +264,28 @@ - + - + - - + + + + + + + + + + + @@ -298,7 +307,7 @@ - + @@ -311,7 +320,33 @@ - + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -400,23 +435,23 @@ - - + + - + - Hibernate Maven Plugin + Hibernate Maven Plugin – -

    $shortTitle

    +

    URI

    • site: /hibernate-maven-plugin/debugging.html
    • @@ -433,8 +468,8 @@ -
      -

      Enable Debugging-Output

      + +

      Enable Debugging-Output

      If you are new to hibernate-maven-plugin, in many cases, the @@ -445,8 +480,9 @@ For example, by executing:

      +
      -mvn -X compile hibernate:create
      +mvn -X compile hibernate:create

      (The compile might be necessary, because hibernate-maven-plugin @@ -460,9 +496,9 @@ mvn -X compile hibernate:create

      - But be warned: hibernate-maven-plugin tends to be very chatty ;) + But be warned: hibernate-maven-plugin tends to be very chatty ;)

      -
    +

    @@ -490,9 +526,12 @@ mvn -X compile hibernate:create "/hibernate-maven-plugin/pmd.html": "PMD", "/hibernate-maven-plugin/plugin-info.html": "Plugin Documentation", "/hibernate-maven-plugin/project-reports.html": "Project Reports", + "/hibernate-maven-plugin/index.html?about": "Overview", "/hibernate-maven-plugin/configuration.html": "Configuration Examples", - "/hibernate-maven-plugin/create-mojo.html": "Goal: CREATE", - "/hibernate-maven-plugin/drop-mojo.html": "Goal: DROP", + "/hibernate-maven-plugin/create-mojo.html": "Goal — hibernate:create", + "/hibernate-maven-plugin/update-mojo.html": "Goal — hibernate:update", + "/hibernate-maven-plugin/drop-mojo.html": "Goal — hibernate:drop", + "/hibernate-maven-plugin/help-mojo.html": "Goal — hibernate:help", "/hibernate-maven-plugin/debugging.html": "Enable Debugging-Output", "/hibernate-maven-plugin/skip.html": "Skipping Execution", "/hibernate-maven-plugin/force.html": "Force Exceution", @@ -500,9 +539,12 @@ mvn -X compile hibernate:create }, "_childs": { "/hibernate-maven-plugin/index.html": [ + "/hibernate-maven-plugin/index.html?about", "/hibernate-maven-plugin/configuration.html", "/hibernate-maven-plugin/create-mojo.html", + "/hibernate-maven-plugin/update-mojo.html", "/hibernate-maven-plugin/drop-mojo.html", + "/hibernate-maven-plugin/help-mojo.html", "/hibernate-maven-plugin/debugging.html", "/hibernate-maven-plugin/skip.html", "/hibernate-maven-plugin/force.html", @@ -649,6 +691,11 @@ mvn -X compile hibernate:create "/hibernate-maven-plugin/index.html", "/hibernate-maven-plugin/project-reports.html" ], + "/hibernate-maven-plugin/index.html?about": [ + "/index.html","/projects.html", + "/hibernate-maven-plugin/index.html", + "/hibernate-maven-plugin/index.html?about" + ], "/hibernate-maven-plugin/configuration.html": [ "/index.html","/projects.html", "/hibernate-maven-plugin/index.html", @@ -659,11 +706,21 @@ mvn -X compile hibernate:create "/hibernate-maven-plugin/index.html", "/hibernate-maven-plugin/create-mojo.html" ], + "/hibernate-maven-plugin/update-mojo.html": [ + "/index.html","/projects.html", + "/hibernate-maven-plugin/index.html", + "/hibernate-maven-plugin/update-mojo.html" + ], "/hibernate-maven-plugin/drop-mojo.html": [ "/index.html","/projects.html", "/hibernate-maven-plugin/index.html", "/hibernate-maven-plugin/drop-mojo.html" ], + "/hibernate-maven-plugin/help-mojo.html": [ + "/index.html","/projects.html", + "/hibernate-maven-plugin/index.html", + "/hibernate-maven-plugin/help-mojo.html" + ], "/hibernate-maven-plugin/debugging.html": [ "/index.html","/projects.html", "/hibernate-maven-plugin/index.html", @@ -706,9 +763,12 @@ mvn -X compile hibernate:create "/hibernate-maven-plugin/pmd.html": "/hibernate-maven-plugin/pmd.html", "/hibernate-maven-plugin/plugin-info.html": "/hibernate-maven-plugin/plugin-info.html", "/hibernate-maven-plugin/project-reports.html": "/hibernate-maven-plugin/project-reports.html", + "/hibernate-maven-plugin/index.html?about": "/hibernate-maven-plugin/index.html?about", "/hibernate-maven-plugin/configuration.html": "/hibernate-maven-plugin/configuration.html", "/hibernate-maven-plugin/create-mojo.html": "/hibernate-maven-plugin/create-mojo.html", + "/hibernate-maven-plugin/update-mojo.html": "/hibernate-maven-plugin/update-mojo.html", "/hibernate-maven-plugin/drop-mojo.html": "/hibernate-maven-plugin/drop-mojo.html", + "/hibernate-maven-plugin/help-mojo.html": "/hibernate-maven-plugin/help-mojo.html", "/hibernate-maven-plugin/debugging.html": "/hibernate-maven-plugin/debugging.html", "/hibernate-maven-plugin/skip.html": "/hibernate-maven-plugin/skip.html", "/hibernate-maven-plugin/force.html": "/hibernate-maven-plugin/force.html", @@ -719,7 +779,7 @@ mvn -X compile hibernate:create

    All Pages

    +
  • Hibernate Maven Plugin
  • CI Management
  • Dependencies
  • Maven Coordinates
  • Distribution Management
  • Licenses
  • Plugin Management
  • Plugins
  • Source Code Management
  • Summary
  • Team
  • Project Information
  • Test JavaDocs
  • JavaDocs
  • Source Xref
  • Test Source Xref
  • CPD
  • PMD
  • Plugin Documentation
  • Project Reports
  • Overview
  • Configuration Examples
  • Goal — hibernate:create
  • Goal — hibernate:update
  • Goal — hibernate:drop
  • Goal — hibernate:help
  • Enable Debugging-Output
  • Skipping Execution
  • Force Exceution
  • Known Pitfalls (FAQ)
  • diff --git a/hibernate-maven-plugin/dependencies.html b/hibernate-maven-plugin/dependencies.html index 765aa779..92fe0fc2 100644 --- a/hibernate-maven-plugin/dependencies.html +++ b/hibernate-maven-plugin/dependencies.html @@ -1,6 +1,6 @@ - + @@ -8,7 +8,7 @@ - + @@ -264,19 +264,28 @@ - + - + - - + + + + + + + + + + + @@ -298,7 +307,20 @@ - + + + + + + + + + + + + + + @@ -311,7 +333,20 @@ - + + + + + + + + + + + + + + @@ -400,18 +435,18 @@ - + - + - Project Dependencies – Hibernate Maven Plugin + Hibernate Maven Plugin – Project Dependencies @@ -430,11 +465,11 @@


    -
    -

    Project Dependencies

    -

    compile

    +
    +

    Project Dependencies

    +

    compile

    The following is a list of compile dependencies for this project. These dependencies are required to compile and run the application:

    - +
    @@ -488,12 +523,12 @@ -
    GroupId ArtifactIdhibernate-validator 5.3.1.Final jarApache License, Version 2.0
    -

    Project Transitive Dependencies

    -

    The following is a list of transitive dependencies for this project. Transitive dependencies are the dependencies of the project dependencies.

    -

    compile

    +Apache License, Version 2.0
    +

    Project Transitive Dependencies

    +

    The following is a list of transitive dependencies for this project. Transitive dependencies are the dependencies of the project dependencies.

    +

    compile

    The following is a list of compile dependencies for this project. These dependencies are required to compile and run the application:

    - +
    @@ -766,8 +801,8 @@ -
    GroupId ArtifactId3.2.5 no_aop jarThe Apache Software License, Version 2.0
    -

    Project Dependency Graph

    +The Apache Software License, Version 2.0
    +

    Project Dependency Graph

    -
    -

    Dependency Tree

    +
    +

    Dependency Tree

    -

    Licenses

    +

    Project Licenses: The Apache Software License, Version 2.0

    +

    Licenses

    Apache License, version 2.0: JBoss Logging 3

    Eclipse Public License (EPL), Version 1.0: Java Persistence API, Version 2.1

    Apache Public License 2.0: Plexus Cipher: encryption/decryption Component, Plexus Security Dispatcher Component

    @@ -1258,9 +1293,9 @@

    LGPL 2.1: Javassist

    CDDL + GPLv2 with classpath exception: Expression Language 3.0 API

    MPL 1.1: Javassist

    -

    The Apache Software License, Version 2.0: Bean Validation API, ClassMate, Guava: Google Core Libraries for Java, Hibernate Maven Plugin, JTA 1.1, Log4j, Plexus :: Component Annotations, Plexus Classworlds, Plexus Interpolation API, Sisu Guice - Core Library, javax.inject, maven-plugin-log4j

    -

    Dependency File Details

    - +

    The Apache Software License, Version 2.0: Bean Validation API, ClassMate, Guava: Google Core Libraries for Java, Hibernate Maven Plugin, JTA 1.1, Log4j, Plexus :: Component Annotations, Plexus Classworlds, Plexus Interpolation API, Sisu Guice - Core Library, javax.inject, maven-plugin-log4j

    +

    Dependency File Details

    +
    @@ -1270,373 +1305,373 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -1646,21 +1681,21 @@ - - - - - - - - - - - - - - -
    Filename SizeJava Version Debug Information
    antlr-2.7.7.jar445.3 kB239224121.2Yes
    aopalliance-1.0.jar4.5 kB15921.3Yes
    classmate-1.3.0.jar64.1 kB523741.6Yes
    guava-18.0.jar2.3 MB17191690171.6Yes
    maven-plugin-log4j-1.0.1.jar3.7 kB12111.4Yes
    scannotation-1.0.4.jar20.3 kB231321.6Yes
    dom4j-1.6.1.jar313.9 kB208190141.3Yes
    jsr250-api-1.0.jar5.8 kB161121.5Yes
    el-api-2.2.jar33.9 kB382811.5Yes
    javax.el-api-3.0.0.jar73.1 kB574611.7Yes
    cdi-api-1.1.jar70.7 kB1189871.6Yes
    javax.inject-1.jar2.5 kB8611.5No
    validation-api-1.1.0.Final.jar63.8 kB12210681.6Yes
    log4j-1.2.14.jar367.4 kB288256191.1Yes
    geronimo-jta_1.1_spec-1.1.1.jar16 kB301821.5Yes
    maven-aether-provider-3.3.3.jar66.3 kB432611.7Yes
    maven-artifact-3.3.3.jar55.1 kB5732111.7Yes
    maven-builder-support-3.3.3.jar15 kB241011.7Yes
    maven-core-3.3.3.jar631.9 kB489390561.7Yes
    maven-model-3.3.3.jar160.8 kB675031.7Yes
    maven-model-builder-3.3.3.jar176.4 kB154121161.7Yes
    maven-plugin-api-3.3.3.jar46.1 kB462561.7Yes
    maven-repository-metadata-3.3.3.jar26 kB25721.7Yes
    maven-settings-3.3.3.jar43 kB331721.7Yes
    maven-settings-builder-3.3.3.jar43.2 kB533251.7Yes
    plexus-classworlds-2.5.2.jar52.7 kB523751.6Yes
    plexus-component-annotations-1.5.5.jar4.2 kB15311.5No
    plexus-interpolation-1.21.jar62.5 kB604461.5Yes
    aether-api-1.0.2.v20150114.jar136.3 kB149128111.5Yes
    aether-impl-1.0.2.v20150114.jar173 kB1149641.5Yes
    aether-spi-1.0.2.v20150114.jar30.7 kB543481.5Yes
    aether-util-1.0.2.v20150114.jar146.9 kB126101131.5Yes
    org.eclipse.sisu.inject-0.3.0.jar375.3 kB28726991.6Yes
    org.eclipse.sisu.plexus-0.3.0.jar205.4 kB196164201.6Yes
    hibernate-core-5.2.4.Final.jar6.4 MB464543172491.8Yes
    hibernate-envers-5.2.4.Final.jar436.6 kB333278371.8Yes
    hibernate-validator-5.3.1.Final.jar723.4 kB548458541.6Yes
    hibernate-commons-annotations-5.0.1.Final.jar75.3 kB806771.6Yes
    hibernate-jpa-2.1-api-1.0.0.Final.jar113.4 kB20720041.6Yes
    javassist-3.20.0-GA.jar750.6 kB423399171.6Yes
    jandex-2.0.0.Final.jar187.8 kB11210211.6Yes
    jboss-logging-3.3.0.Final.jar66.8 kB604811.6Yes
    jboss-interceptors-api_1.1_spec-1.0.0.Beta1.jar5.6 kB17811.5No
    plexus-cipher-1.4.jar13.5 kB20611.4Yes
    plexus-sec-dispatcher-1.3.jar28.6 kB311331.4Yes
    sisu-guice-3.2.5-no_aop.jar399.7 kB33131681.6Yes
    antlr-2.7.7.jar445.3 kB239224121.2Yes
    aopalliance-1.0.jar4.5 kB15921.3Yes
    classmate-1.3.0.jar64.1 kB523741.6Yes
    guava-18.0.jar2.3 MB17191690171.6Yes
    maven-plugin-log4j-1.0.1.jar3.7 kB12111.4Yes
    scannotation-1.0.4.jar20.3 kB231321.6Yes
    dom4j-1.6.1.jar313.9 kB208190141.3Yes
    jsr250-api-1.0.jar5.8 kB161121.5Yes
    el-api-2.2.jar33.9 kB382811.5Yes
    javax.el-api-3.0.0.jar73.1 kB574611.7Yes
    cdi-api-1.1.jar70.7 kB1189871.6Yes
    javax.inject-1.jar2.5 kB8611.5No
    validation-api-1.1.0.Final.jar63.8 kB12210681.6Yes
    log4j-1.2.14.jar367.4 kB288256191.1Yes
    geronimo-jta_1.1_spec-1.1.1.jar16 kB301821.5Yes
    maven-aether-provider-3.3.3.jar66.3 kB432611.7Yes
    maven-artifact-3.3.3.jar55.1 kB5732111.7Yes
    maven-builder-support-3.3.3.jar15 kB241011.7Yes
    maven-core-3.3.3.jar631.9 kB489390561.7Yes
    maven-model-3.3.3.jar160.8 kB675031.7Yes
    maven-model-builder-3.3.3.jar176.4 kB154121161.7Yes
    maven-plugin-api-3.3.3.jar46.1 kB462561.7Yes
    maven-repository-metadata-3.3.3.jar26 kB25721.7Yes
    maven-settings-3.3.3.jar43 kB331721.7Yes
    maven-settings-builder-3.3.3.jar43.2 kB533251.7Yes
    plexus-classworlds-2.5.2.jar52.7 kB523751.6Yes
    plexus-component-annotations-1.5.5.jar4.2 kB15311.5No
    plexus-interpolation-1.21.jar62.5 kB604461.5Yes
    aether-api-1.0.2.v20150114.jar136.3 kB149128111.5Yes
    aether-impl-1.0.2.v20150114.jar173 kB1149641.5Yes
    aether-spi-1.0.2.v20150114.jar30.7 kB543481.5Yes
    aether-util-1.0.2.v20150114.jar146.9 kB126101131.5Yes
    org.eclipse.sisu.inject-0.3.0.jar375.3 kB28726991.6Yes
    org.eclipse.sisu.plexus-0.3.0.jar205.4 kB196164201.6Yes
    hibernate-core-5.2.4.Final.jar6.4 MB464543172491.8Yes
    hibernate-envers-5.2.4.Final.jar436.6 kB333278371.8Yes
    hibernate-validator-5.3.1.Final.jar723.4 kB548458541.6Yes
    hibernate-commons-annotations-5.0.1.Final.jar75.3 kB806771.6Yes
    hibernate-jpa-2.1-api-1.0.0.Final.jar113.4 kB20720041.6Yes
    javassist-3.20.0-GA.jar750.6 kB423399171.6Yes
    jandex-2.0.0.Final.jar187.8 kB11210211.6Yes
    jboss-logging-3.3.0.Final.jar66.8 kB604811.6Yes
    jboss-interceptors-api_1.1_spec-1.0.0.Beta1.jar5.6 kB17811.5No
    plexus-cipher-1.4.jar13.5 kB20611.4Yes
    plexus-sec-dispatcher-1.3.jar28.6 kB311331.4Yes
    sisu-guice-3.2.5-no_aop.jar399.7 kB33131681.6Yes
    Total SizeJava Version Debug Information
    4615.4 MB11796105316561.843
    compile: 46compile: 15.4 MBcompile: 11796compile: 10531compile: 6561.8compile: 43
    +46 +15.4 MB +11796 +10531 +656 +1.8 +43 + +compile: 46 +compile: 15.4 MB +compile: 11796 +compile: 10531 +compile: 656 +1.8 +compile: 43

    Page Structure as JSON

    @@ -1687,9 +1722,12 @@ "/hibernate-maven-plugin/pmd.html": "PMD", "/hibernate-maven-plugin/plugin-info.html": "Plugin Documentation", "/hibernate-maven-plugin/project-reports.html": "Project Reports", + "/hibernate-maven-plugin/index.html?about": "Overview", "/hibernate-maven-plugin/configuration.html": "Configuration Examples", - "/hibernate-maven-plugin/create-mojo.html": "Goal: CREATE", - "/hibernate-maven-plugin/drop-mojo.html": "Goal: DROP", + "/hibernate-maven-plugin/create-mojo.html": "Goal — hibernate:create", + "/hibernate-maven-plugin/update-mojo.html": "Goal — hibernate:update", + "/hibernate-maven-plugin/drop-mojo.html": "Goal — hibernate:drop", + "/hibernate-maven-plugin/help-mojo.html": "Goal — hibernate:help", "/hibernate-maven-plugin/debugging.html": "Enable Debugging-Output", "/hibernate-maven-plugin/skip.html": "Skipping Execution", "/hibernate-maven-plugin/force.html": "Force Exceution", @@ -1697,9 +1735,12 @@ }, "_childs": { "/hibernate-maven-plugin/index.html": [ + "/hibernate-maven-plugin/index.html?about", "/hibernate-maven-plugin/configuration.html", "/hibernate-maven-plugin/create-mojo.html", + "/hibernate-maven-plugin/update-mojo.html", "/hibernate-maven-plugin/drop-mojo.html", + "/hibernate-maven-plugin/help-mojo.html", "/hibernate-maven-plugin/debugging.html", "/hibernate-maven-plugin/skip.html", "/hibernate-maven-plugin/force.html", @@ -1846,6 +1887,11 @@ "/hibernate-maven-plugin/index.html", "/hibernate-maven-plugin/project-reports.html" ], + "/hibernate-maven-plugin/index.html?about": [ + "/index.html","/projects.html", + "/hibernate-maven-plugin/index.html", + "/hibernate-maven-plugin/index.html?about" + ], "/hibernate-maven-plugin/configuration.html": [ "/index.html","/projects.html", "/hibernate-maven-plugin/index.html", @@ -1856,11 +1902,21 @@ "/hibernate-maven-plugin/index.html", "/hibernate-maven-plugin/create-mojo.html" ], + "/hibernate-maven-plugin/update-mojo.html": [ + "/index.html","/projects.html", + "/hibernate-maven-plugin/index.html", + "/hibernate-maven-plugin/update-mojo.html" + ], "/hibernate-maven-plugin/drop-mojo.html": [ "/index.html","/projects.html", "/hibernate-maven-plugin/index.html", "/hibernate-maven-plugin/drop-mojo.html" ], + "/hibernate-maven-plugin/help-mojo.html": [ + "/index.html","/projects.html", + "/hibernate-maven-plugin/index.html", + "/hibernate-maven-plugin/help-mojo.html" + ], "/hibernate-maven-plugin/debugging.html": [ "/index.html","/projects.html", "/hibernate-maven-plugin/index.html", @@ -1903,9 +1959,12 @@ "/hibernate-maven-plugin/pmd.html": "/hibernate-maven-plugin/pmd.html", "/hibernate-maven-plugin/plugin-info.html": "/hibernate-maven-plugin/plugin-info.html", "/hibernate-maven-plugin/project-reports.html": "/hibernate-maven-plugin/project-reports.html", + "/hibernate-maven-plugin/index.html?about": "/hibernate-maven-plugin/index.html?about", "/hibernate-maven-plugin/configuration.html": "/hibernate-maven-plugin/configuration.html", "/hibernate-maven-plugin/create-mojo.html": "/hibernate-maven-plugin/create-mojo.html", + "/hibernate-maven-plugin/update-mojo.html": "/hibernate-maven-plugin/update-mojo.html", "/hibernate-maven-plugin/drop-mojo.html": "/hibernate-maven-plugin/drop-mojo.html", + "/hibernate-maven-plugin/help-mojo.html": "/hibernate-maven-plugin/help-mojo.html", "/hibernate-maven-plugin/debugging.html": "/hibernate-maven-plugin/debugging.html", "/hibernate-maven-plugin/skip.html": "/hibernate-maven-plugin/skip.html", "/hibernate-maven-plugin/force.html": "/hibernate-maven-plugin/force.html", @@ -1916,7 +1975,7 @@

    All Pages

    +
  • Hibernate Maven Plugin
  • CI Management
  • Dependencies
  • Maven Coordinates
  • Distribution Management
  • Licenses
  • Plugin Management
  • Plugins
  • Source Code Management
  • Summary
  • Team
  • Project Information
  • Test JavaDocs
  • JavaDocs
  • Source Xref
  • Test Source Xref
  • CPD
  • PMD
  • Plugin Documentation
  • Project Reports
  • Overview
  • Configuration Examples
  • Goal — hibernate:create
  • Goal — hibernate:update
  • Goal — hibernate:drop
  • Goal — hibernate:help
  • Enable Debugging-Output
  • Skipping Execution
  • Force Exceution
  • Known Pitfalls (FAQ)
  • diff --git a/hibernate-maven-plugin/dependency-info.html b/hibernate-maven-plugin/dependency-info.html index b18cce70..1ea66c07 100644 --- a/hibernate-maven-plugin/dependency-info.html +++ b/hibernate-maven-plugin/dependency-info.html @@ -1,6 +1,6 @@ - + @@ -8,7 +8,7 @@ - + @@ -264,19 +264,28 @@ - + - + - - + + + + + + + + + + + @@ -298,7 +307,7 @@ - + @@ -311,7 +320,33 @@ - + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -400,18 +435,18 @@ - + - + - Maven Coordinates – Hibernate Maven Plugin + Hibernate Maven Plugin – Maven Coordinates @@ -430,14 +465,9 @@


    -
    -

    Maven Coordinates

    -

    Apache Maven

    -
    <plugin>
    -  <groupId>de.juplo</groupId>
    -  <artifactId>hibernate-maven-plugin</artifactId>
    -  <version>2.1.1</version>
    -</plugin>
    +
    +

    Maven Coordinates

    +

    Apache Maven


    Page Structure as JSON

    @@ -464,9 +494,12 @@ "/hibernate-maven-plugin/pmd.html": "PMD", "/hibernate-maven-plugin/plugin-info.html": "Plugin Documentation", "/hibernate-maven-plugin/project-reports.html": "Project Reports", + "/hibernate-maven-plugin/index.html?about": "Overview", "/hibernate-maven-plugin/configuration.html": "Configuration Examples", - "/hibernate-maven-plugin/create-mojo.html": "Goal: CREATE", - "/hibernate-maven-plugin/drop-mojo.html": "Goal: DROP", + "/hibernate-maven-plugin/create-mojo.html": "Goal — hibernate:create", + "/hibernate-maven-plugin/update-mojo.html": "Goal — hibernate:update", + "/hibernate-maven-plugin/drop-mojo.html": "Goal — hibernate:drop", + "/hibernate-maven-plugin/help-mojo.html": "Goal — hibernate:help", "/hibernate-maven-plugin/debugging.html": "Enable Debugging-Output", "/hibernate-maven-plugin/skip.html": "Skipping Execution", "/hibernate-maven-plugin/force.html": "Force Exceution", @@ -474,9 +507,12 @@ }, "_childs": { "/hibernate-maven-plugin/index.html": [ + "/hibernate-maven-plugin/index.html?about", "/hibernate-maven-plugin/configuration.html", "/hibernate-maven-plugin/create-mojo.html", + "/hibernate-maven-plugin/update-mojo.html", "/hibernate-maven-plugin/drop-mojo.html", + "/hibernate-maven-plugin/help-mojo.html", "/hibernate-maven-plugin/debugging.html", "/hibernate-maven-plugin/skip.html", "/hibernate-maven-plugin/force.html", @@ -623,6 +659,11 @@ "/hibernate-maven-plugin/index.html", "/hibernate-maven-plugin/project-reports.html" ], + "/hibernate-maven-plugin/index.html?about": [ + "/index.html","/projects.html", + "/hibernate-maven-plugin/index.html", + "/hibernate-maven-plugin/index.html?about" + ], "/hibernate-maven-plugin/configuration.html": [ "/index.html","/projects.html", "/hibernate-maven-plugin/index.html", @@ -633,11 +674,21 @@ "/hibernate-maven-plugin/index.html", "/hibernate-maven-plugin/create-mojo.html" ], + "/hibernate-maven-plugin/update-mojo.html": [ + "/index.html","/projects.html", + "/hibernate-maven-plugin/index.html", + "/hibernate-maven-plugin/update-mojo.html" + ], "/hibernate-maven-plugin/drop-mojo.html": [ "/index.html","/projects.html", "/hibernate-maven-plugin/index.html", "/hibernate-maven-plugin/drop-mojo.html" ], + "/hibernate-maven-plugin/help-mojo.html": [ + "/index.html","/projects.html", + "/hibernate-maven-plugin/index.html", + "/hibernate-maven-plugin/help-mojo.html" + ], "/hibernate-maven-plugin/debugging.html": [ "/index.html","/projects.html", "/hibernate-maven-plugin/index.html", @@ -680,9 +731,12 @@ "/hibernate-maven-plugin/pmd.html": "/hibernate-maven-plugin/pmd.html", "/hibernate-maven-plugin/plugin-info.html": "/hibernate-maven-plugin/plugin-info.html", "/hibernate-maven-plugin/project-reports.html": "/hibernate-maven-plugin/project-reports.html", + "/hibernate-maven-plugin/index.html?about": "/hibernate-maven-plugin/index.html?about", "/hibernate-maven-plugin/configuration.html": "/hibernate-maven-plugin/configuration.html", "/hibernate-maven-plugin/create-mojo.html": "/hibernate-maven-plugin/create-mojo.html", + "/hibernate-maven-plugin/update-mojo.html": "/hibernate-maven-plugin/update-mojo.html", "/hibernate-maven-plugin/drop-mojo.html": "/hibernate-maven-plugin/drop-mojo.html", + "/hibernate-maven-plugin/help-mojo.html": "/hibernate-maven-plugin/help-mojo.html", "/hibernate-maven-plugin/debugging.html": "/hibernate-maven-plugin/debugging.html", "/hibernate-maven-plugin/skip.html": "/hibernate-maven-plugin/skip.html", "/hibernate-maven-plugin/force.html": "/hibernate-maven-plugin/force.html", @@ -693,7 +747,7 @@

    All Pages

    +
  • Hibernate Maven Plugin
  • CI Management
  • Dependencies
  • Maven Coordinates
  • Distribution Management
  • Licenses
  • Plugin Management
  • Plugins
  • Source Code Management
  • Summary
  • Team
  • Project Information
  • Test JavaDocs
  • JavaDocs
  • Source Xref
  • Test Source Xref
  • CPD
  • PMD
  • Plugin Documentation
  • Project Reports
  • Overview
  • Configuration Examples
  • Goal — hibernate:create
  • Goal — hibernate:update
  • Goal — hibernate:drop
  • Goal — hibernate:help
  • Enable Debugging-Output
  • Skipping Execution
  • Force Exceution
  • Known Pitfalls (FAQ)
  • diff --git a/hibernate-maven-plugin/distribution-management.html b/hibernate-maven-plugin/distribution-management.html index 030f38c7..d13e2e54 100644 --- a/hibernate-maven-plugin/distribution-management.html +++ b/hibernate-maven-plugin/distribution-management.html @@ -1,6 +1,6 @@ - + @@ -8,7 +8,7 @@ - + @@ -264,19 +264,28 @@ - + - + - - + + + + + + + + + + + @@ -298,7 +307,7 @@ - + @@ -311,7 +320,33 @@ - + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -400,18 +435,18 @@ - + - + - Project Distribution Management – Hibernate Maven Plugin + Hibernate Maven Plugin – Project Distribution Management @@ -430,11 +465,11 @@


    -
    -

    Overview

    -

    The following is the distribution management information used by this project.

    -

    Repository - ossrh

    https://oss.sonatype.org/service/local/staging/deploy/maven2/
    -

    Snapshot Repository - ossrh

    https://oss.sonatype.org/content/repositories/snapshots
    +
    +

    Overview

    +

    The following is the distribution management information used by this project.

    +

    Repository - ossrh

    https://oss.sonatype.org/service/local/staging/deploy/maven2/
    +

    Snapshot Repository - ossrh

    https://oss.sonatype.org/content/repositories/snapshots

    Page Structure as JSON

    @@ -461,9 +496,12 @@ "/hibernate-maven-plugin/pmd.html": "PMD", "/hibernate-maven-plugin/plugin-info.html": "Plugin Documentation", "/hibernate-maven-plugin/project-reports.html": "Project Reports", + "/hibernate-maven-plugin/index.html?about": "Overview", "/hibernate-maven-plugin/configuration.html": "Configuration Examples", - "/hibernate-maven-plugin/create-mojo.html": "Goal: CREATE", - "/hibernate-maven-plugin/drop-mojo.html": "Goal: DROP", + "/hibernate-maven-plugin/create-mojo.html": "Goal — hibernate:create", + "/hibernate-maven-plugin/update-mojo.html": "Goal — hibernate:update", + "/hibernate-maven-plugin/drop-mojo.html": "Goal — hibernate:drop", + "/hibernate-maven-plugin/help-mojo.html": "Goal — hibernate:help", "/hibernate-maven-plugin/debugging.html": "Enable Debugging-Output", "/hibernate-maven-plugin/skip.html": "Skipping Execution", "/hibernate-maven-plugin/force.html": "Force Exceution", @@ -471,9 +509,12 @@ }, "_childs": { "/hibernate-maven-plugin/index.html": [ + "/hibernate-maven-plugin/index.html?about", "/hibernate-maven-plugin/configuration.html", "/hibernate-maven-plugin/create-mojo.html", + "/hibernate-maven-plugin/update-mojo.html", "/hibernate-maven-plugin/drop-mojo.html", + "/hibernate-maven-plugin/help-mojo.html", "/hibernate-maven-plugin/debugging.html", "/hibernate-maven-plugin/skip.html", "/hibernate-maven-plugin/force.html", @@ -620,6 +661,11 @@ "/hibernate-maven-plugin/index.html", "/hibernate-maven-plugin/project-reports.html" ], + "/hibernate-maven-plugin/index.html?about": [ + "/index.html","/projects.html", + "/hibernate-maven-plugin/index.html", + "/hibernate-maven-plugin/index.html?about" + ], "/hibernate-maven-plugin/configuration.html": [ "/index.html","/projects.html", "/hibernate-maven-plugin/index.html", @@ -630,11 +676,21 @@ "/hibernate-maven-plugin/index.html", "/hibernate-maven-plugin/create-mojo.html" ], + "/hibernate-maven-plugin/update-mojo.html": [ + "/index.html","/projects.html", + "/hibernate-maven-plugin/index.html", + "/hibernate-maven-plugin/update-mojo.html" + ], "/hibernate-maven-plugin/drop-mojo.html": [ "/index.html","/projects.html", "/hibernate-maven-plugin/index.html", "/hibernate-maven-plugin/drop-mojo.html" ], + "/hibernate-maven-plugin/help-mojo.html": [ + "/index.html","/projects.html", + "/hibernate-maven-plugin/index.html", + "/hibernate-maven-plugin/help-mojo.html" + ], "/hibernate-maven-plugin/debugging.html": [ "/index.html","/projects.html", "/hibernate-maven-plugin/index.html", @@ -677,9 +733,12 @@ "/hibernate-maven-plugin/pmd.html": "/hibernate-maven-plugin/pmd.html", "/hibernate-maven-plugin/plugin-info.html": "/hibernate-maven-plugin/plugin-info.html", "/hibernate-maven-plugin/project-reports.html": "/hibernate-maven-plugin/project-reports.html", + "/hibernate-maven-plugin/index.html?about": "/hibernate-maven-plugin/index.html?about", "/hibernate-maven-plugin/configuration.html": "/hibernate-maven-plugin/configuration.html", "/hibernate-maven-plugin/create-mojo.html": "/hibernate-maven-plugin/create-mojo.html", + "/hibernate-maven-plugin/update-mojo.html": "/hibernate-maven-plugin/update-mojo.html", "/hibernate-maven-plugin/drop-mojo.html": "/hibernate-maven-plugin/drop-mojo.html", + "/hibernate-maven-plugin/help-mojo.html": "/hibernate-maven-plugin/help-mojo.html", "/hibernate-maven-plugin/debugging.html": "/hibernate-maven-plugin/debugging.html", "/hibernate-maven-plugin/skip.html": "/hibernate-maven-plugin/skip.html", "/hibernate-maven-plugin/force.html": "/hibernate-maven-plugin/force.html", @@ -690,7 +749,7 @@

    All Pages

    +
  • Hibernate Maven Plugin
  • CI Management
  • Dependencies
  • Maven Coordinates
  • Distribution Management
  • Licenses
  • Plugin Management
  • Plugins
  • Source Code Management
  • Summary
  • Team
  • Project Information
  • Test JavaDocs
  • JavaDocs
  • Source Xref
  • Test Source Xref
  • CPD
  • PMD
  • Plugin Documentation
  • Project Reports
  • Overview
  • Configuration Examples
  • Goal — hibernate:create
  • Goal — hibernate:update
  • Goal — hibernate:drop
  • Goal — hibernate:help
  • Enable Debugging-Output
  • Skipping Execution
  • Force Exceution
  • Known Pitfalls (FAQ)
  • diff --git a/hibernate-maven-plugin/drop-mojo.html b/hibernate-maven-plugin/drop-mojo.html index d18bb83e..28c2ec12 100644 --- a/hibernate-maven-plugin/drop-mojo.html +++ b/hibernate-maven-plugin/drop-mojo.html @@ -1,6 +1,6 @@ - + @@ -8,7 +8,7 @@ - + @@ -264,19 +264,28 @@ - + - + - - + + + + + + + + + + + @@ -298,7 +307,7 @@ - + @@ -311,7 +320,33 @@ - + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -399,19 +434,19 @@ - - + + - + - hibernate:drop – Hibernate Maven Plugin + Hibernate Maven Plugin – hibernate:drop @@ -426,25 +461,25 @@

    Path

      -
    1. Hibernate Maven Plugin
    2. Goal: DROP
    +
  • Hibernate Maven Plugin
  • Goal — hibernate:drop

  • -
    -

    hibernate:drop

    +
    +

    hibernate:drop

    -

    Full name:

    +

    Full name:

    de.juplo:hibernate-maven-plugin:2.1.1:drop

    -

    Description:

    +

    Description:

    Generate/Execute SQL to drop all tables of a database-schema that represents the configured mappings.
    -

    Attributes:

    +

    Attributes:

      @@ -454,12 +489,12 @@ represents the configured mappings.
    • The goal is thread-safe and supports parallel builds.
    • -
    • Binds by default to the lifecycle phase: process-classes.
    • +
    • Binds by default to the lifecycle phase: process-classes.
    -
    -

    Optional Parameters

    +
    +

    Optional Parameters

    - +
    @@ -474,19 +509,19 @@ represents the configured mappings. - + +schema/catalog.
    Default value is: false.
    User property is: hibernate.hbm2dll.create_namespaces. - + @@ -494,37 +529,37 @@ schema/catalog.
    Default value is: false.
    Delimiter in output-file. -

    Important: This configuration value can only be +

    Important: This configuration value can only be configured through the pom.xml, or by the definition of a system-property, because it is not known by Hibernate nor JPA -and, hence, not picked up from their configuration!


    Default value is: ;.
    User property is: hibernate.hbm2ddl.delimiter. +and, hence, not picked up from their configuration!


    Default value is: ;.
    User property is: hibernate.hbm2ddl.delimiter. - + - + - + - + - + @@ -533,15 +568,15 @@ and, hence, not picked up from their configuration!


    Default val +and, hence, not picked up from their configuration!


    Default value is: true.
    User property is: hibernate.schema.execute.
    - + @@ -555,26 +590,26 @@ found and the configuration was not changed.

    skip takes precedence over force.

    -

    Important: This configuration value can only be +

    Important: This configuration value can only be configured through the pom.xml, or by the definition of a system-property, because it is not known by Hibernate nor JPA -and, hence, not picked up from their configuration!


    Default value is: false.
    User property is: hibernate.schema.force. +and, hence, not picked up from their configuration!


    Default value is: false.
    User property is: hibernate.schema.force.
    - + - + - + @@ -599,7 +634,7 @@ file.


    - + @@ -622,30 +657,30 @@ precedence.


    - + - + - + +separated with white-spaces and/or commas.
    User property is: hibernate.mapping.
    - + @@ -657,15 +692,15 @@ separated with white-spaces and/or commas.
    User property is -

    Important: This configuration value can only be +

    Important: This configuration value can only be configured through the pom.xml, or by the definition of a system-property, because it is not known by Hibernate nor JPA -and, hence, not picked up from their configuration!


    User property is: project.build.outputDirectory. +and, hence, not picked up from their configuration!


    User property is: project.build.outputDirectory.
    - + @@ -675,23 +710,23 @@ and, hence, not picked up from their configuration!


    User proper

    If the specified filename is not absolut, the file will be created relative to the project build directory -(project.build.directory).


    Default value is: drop.sql.
    User property is: hibernate.schema.drop. +(project.build.directory).


    Default value is: drop.sql.
    User property is: hibernate.schema.drop.
    - + - + - + @@ -714,18 +749,18 @@ or the configuration file.


    - + - + - + @@ -736,12 +771,12 @@ or the configuration file.


    This parameter is intended to allow overwriting of the parameter exclude-unlisted-classes of a persistence-unit. If not specified, it defaults to -true


    User property is: hibernate.schema.scan.classes. +true


    User property is: hibernate.schema.scan.classes.
    - + @@ -759,12 +794,12 @@ classes, set this parameter to none.

    The plugin does not scan for annotated classes in transitive dependencies. If some of your annotated classes are hidden in a transitive dependency, you can simply add that dependency -explicitly.


    Default value is: compile.
    User property is: hibernate.schema.scan.dependencies. +explicitly.


    Default value is: compile.
    User property is: hibernate.schema.scan.dependencies.
    - + @@ -777,26 +812,26 @@ classes, or not. of the artifact will be scanned for hibernate-annotated classes additionally.

    -

    Important: This configuration value can only be +

    Important: This configuration value can only be configured through the pom.xml, or by the definition of a system-property, because it is not known by Hibernate nor JPA -and, hence, not picked up from their configuration!


    Default value is: false.
    User property is: hibernate.schema.scan.test_classes. +and, hence, not picked up from their configuration!


    Default value is: false.
    User property is: hibernate.schema.scan.test_classes.
    - + - + - + @@ -813,15 +848,15 @@ and, hence, not picked up from their configuration!


    Default val added annotated classes are found and the dialect was not changed.

    -

    Important: This configuration value can only be +

    Important: This configuration value can only be configured through the pom.xml, or by the definition of a system-property, because it is not known by Hibernate nor JPA -and, hence, not picked up from their configuration!


    Default value is: ${maven.test.skip}.
    User property is: hibernate.schema.skip. +and, hence, not picked up from their configuration!


    Default value is: ${maven.test.skip}.
    User property is: hibernate.schema.skip.
    - + @@ -835,127 +870,127 @@ test-classes.

    This parameter is only used, when scanTestClasses is set to true!

    -

    Important: This configuration value can only be +

    Important: This configuration value can only be configured through the pom.xml, or by the definition of a system-property, because it is not known by Hibernate nor JPA -and, hence, not picked up from their configuration!


    User property is: project.build.testOutputDirectory. +and, hence, not picked up from their configuration!


    User property is: project.build.testOutputDirectory.
    - + - + - + - +
    createNamespacescreateNamespaces Boolean 2.0 Specifies whether to automatically create also the database -schema/catalog.
    Default value is: false.
    User property is: hibernate.hbm2dll.create_namespaces.
    delimiterdelimiter String
    dialectdialect String 1.0Hibernate dialect.
    User property is: hibernate.dialect.
    Hibernate dialect.
    User property is: hibernate.dialect.
    driverdriver String 1.0SQL-Driver name.
    User property is: hibernate.connection.driver_class.
    SQL-Driver name.
    User property is: hibernate.connection.driver_class.
    executeexecute BooleanExcecute the generated SQL. If set to false, only the SQL-script is created and the database is not touched. -

    Important: This configuration value can only be +

    Important: This configuration value can only be configured through the pom.xml, or by the definition of a system-property, because it is not known by Hibernate nor JPA -and, hence, not picked up from their configuration!


    Default value is: true.
    User property is: hibernate.schema.execute.
    forceforce boolean
    formatformat Boolean 1.0Format output-file.
    User property is: hibernate.format_sql.
    Format output-file.
    User property is: hibernate.format_sql.
    hibernateConfighibernateConfig String
    hibernatePropertieshibernateProperties String
    implicitNamingStrategyimplicitNamingStrategy String 2.0Implicit naming strategy
    User property is: hibernate.implicit_naming_strategy.
    Implicit naming strategy
    User property is: hibernate.implicit_naming_strategy.
    mappingsmappings String 1.0.2 List of Hibernate-Mapping-Files (XML). Multiple files can be -separated with white-spaces and/or commas.
    User property is: hibernate.mapping.
    outputDirectoryoutputDirectory String
    outputFileoutputFile String
    passwordpassword String 1.0Database password
    User property is: hibernate.connection.password.
    Database password
    User property is: hibernate.connection.password.
    persistenceUnitpersistenceUnit String
    physicalNamingStrategyphysicalNamingStrategy String 2.0Physical naming strategy
    User property is: hibernate.physical_naming_strategy.
    Physical naming strategy
    User property is: hibernate.physical_naming_strategy.
    scanClassesscanClasses Boolean
    scanDependenciesscanDependencies String
    scanTestClassesscanTestClasses Boolean
    showshow Boolean 1.0Show the generated SQL in the command-line output.
    User property is: hibernate.show_sql.
    Show the generated SQL in the command-line output.
    User property is: hibernate.show_sql.
    skipskip boolean
    testOutputDirectorytestOutputDirectory String
    urlurl String 1.0Database URL.
    User property is: hibernate.connection.url.
    Database URL.
    User property is: hibernate.connection.url.
    usernameusername String 1.0Database username
    User property is: hibernate.connection.username.
    Database username
    User property is: hibernate.connection.username.
    -
    -

    Parameter Details

    +
    +

    Parameter Details

    -

    createNamespaces:

    +

    createNamespaces:

    Specifies whether to automatically create also the database schema/catalog.
      -
    • Type: java.lang.Boolean
    • +
    • Type: java.lang.Boolean
    • -
    • Since: 2.0
    • +
    • Since: 2.0
    • -
    • Required: No
    • +
    • Required: No
    • -
    • User Property: hibernate.hbm2dll.create_namespaces
    • +
    • User Property: hibernate.hbm2dll.create_namespaces
    • -
    • Default: false
    • +
    • Default: false

    -

    delimiter:

    +

    delimiter:

    Delimiter in output-file. -

    Important: This configuration value can only be +

    Important: This configuration value can only be configured through the pom.xml, or by the definition of a system-property, because it is not known by Hibernate nor JPA and, hence, not picked up from their configuration!

      -
    • Type: java.lang.String
    • +
    • Type: java.lang.String
    • -
    • Since: 1.0
    • +
    • Since: 1.0
    • -
    • Required: No
    • +
    • Required: No
    • -
    • User Property: hibernate.hbm2ddl.delimiter
    • +
    • User Property: hibernate.hbm2ddl.delimiter
    • -
    • Default: ;
    • +
    • Default: ;

    -

    dialect:

    +

    dialect:

    Hibernate dialect.
      -
    • Type: java.lang.String
    • +
    • Type: java.lang.String
    • -
    • Since: 1.0
    • +
    • Since: 1.0
    • -
    • Required: No
    • +
    • Required: No
    • -
    • User Property: hibernate.dialect
    • +
    • User Property: hibernate.dialect

    -

    driver:

    +

    driver:

    SQL-Driver name.
      -
    • Type: java.lang.String
    • +
    • Type: java.lang.String
    • -
    • Since: 1.0
    • +
    • Since: 1.0
    • -
    • Required: No
    • +
    • Required: No
    • -
    • User Property: hibernate.connection.driver_class
    • +
    • User Property: hibernate.connection.driver_class

    -

    execute:

    +

    execute:

    Excecute the generated SQL. If set to false, only the SQL-script is created and the database is not touched. -

    Important: This configuration value can only be +

    Important: This configuration value can only be configured through the pom.xml, or by the definition of a system-property, because it is not known by Hibernate nor JPA and, hence, not picked up from their configuration!

      -
    • Type: java.lang.Boolean
    • +
    • Type: java.lang.Boolean
    • -
    • Since: 2.0
    • +
    • Since: 2.0
    • -
    • Required: No
    • +
    • Required: No
    • -
    • User Property: hibernate.schema.execute
    • +
    • User Property: hibernate.schema.execute
    • -
    • Default: true
    • +
    • Default: true

    -

    force:

    +

    force:

    Force generation/execution @@ -965,38 +1000,38 @@ found and the configuration was not changed.

    skip takes precedence over force.

    -

    Important: This configuration value can only be +

    Important: This configuration value can only be configured through the pom.xml, or by the definition of a system-property, because it is not known by Hibernate nor JPA and, hence, not picked up from their configuration!

      -
    • Type: boolean
    • +
    • Type: boolean
    • -
    • Since: 1.0
    • +
    • Since: 1.0
    • -
    • Required: No
    • +
    • Required: No
    • -
    • User Property: hibernate.schema.force
    • +
    • User Property: hibernate.schema.force
    • -
    • Default: false
    • +
    • Default: false

    -

    format:

    +

    format:

    Format output-file.
      -
    • Type: java.lang.Boolean
    • +
    • Type: java.lang.Boolean
    • -
    • Since: 1.0
    • +
    • Since: 1.0
    • -
    • Required: No
    • +
    • Required: No
    • -
    • User Property: hibernate.format_sql
    • +
    • User Property: hibernate.format_sql

    -

    hibernateConfig:

    +

    hibernateConfig:

    Path to Hibernate configuration file (.cfg.xml). If this parameter is specified, the plugin will try to load configuration values from @@ -1016,13 +1051,13 @@ file.

      -
    • Type: java.lang.String
    • +
    • Type: java.lang.String
    • -
    • Since: 1.1.0
    • +
    • Since: 1.1.0
    • -
    • Required: No
    • +
    • Required: No

    -

    hibernateProperties:

    +

    hibernateProperties:

    Path to a file or name of a ressource with hibernate properties. If this parameter is specified, the plugin will try to load @@ -1040,42 +1075,42 @@ precedence.

      -
    • Type: java.lang.String
    • +
    • Type: java.lang.String
    • -
    • Since: 1.0
    • +
    • Since: 1.0
    • -
    • Required: No
    • +
    • Required: No

    -

    implicitNamingStrategy:

    +

    implicitNamingStrategy:

    Implicit naming strategy
      -
    • Type: java.lang.String
    • +
    • Type: java.lang.String
    • -
    • Since: 2.0
    • +
    • Since: 2.0
    • -
    • Required: No
    • +
    • Required: No
    • -
    • User Property: hibernate.implicit_naming_strategy
    • +
    • User Property: hibernate.implicit_naming_strategy

    -

    mappings:

    +

    mappings:

    List of Hibernate-Mapping-Files (XML). Multiple files can be separated with white-spaces and/or commas.
      -
    • Type: java.lang.String
    • +
    • Type: java.lang.String
    • -
    • Since: 1.0.2
    • +
    • Since: 1.0.2
    • -
    • Required: No
    • +
    • Required: No
    • -
    • User Property: hibernate.mapping
    • +
    • User Property: hibernate.mapping

    -

    outputDirectory:

    +

    outputDirectory:

    Classes-Directory to scan. @@ -1083,22 +1118,22 @@ separated with white-spaces and/or commas.
    classes. Additionally, all dependencies are scanned for annotated classes.

    -

    Important: This configuration value can only be +

    Important: This configuration value can only be configured through the pom.xml, or by the definition of a system-property, because it is not known by Hibernate nor JPA and, hence, not picked up from their configuration!

      -
    • Type: java.lang.String
    • +
    • Type: java.lang.String
    • -
    • Since: 1.0
    • +
    • Since: 1.0
    • -
    • Required: No
    • +
    • Required: No
    • -
    • User Property: project.build.outputDirectory
    • +
    • User Property: project.build.outputDirectory

    -

    outputFile:

    +

    outputFile:

    Output file. @@ -1108,31 +1143,31 @@ created relative to the project build directory
      -
    • Type: java.lang.String
    • +
    • Type: java.lang.String
    • -
    • Since: 1.0
    • +
    • Since: 1.0
    • -
    • Required: No
    • +
    • Required: No
    • -
    • User Property: hibernate.schema.drop
    • +
    • User Property: hibernate.schema.drop
    • -
    • Default: drop.sql
    • +
    • Default: drop.sql

    -

    password:

    +

    password:

    Database password
      -
    • Type: java.lang.String
    • +
    • Type: java.lang.String
    • -
    • Since: 1.0
    • +
    • Since: 1.0
    • -
    • Required: No
    • +
    • Required: No
    • -
    • User Property: hibernate.connection.password
    • +
    • User Property: hibernate.connection.password

    -

    persistenceUnit:

    +

    persistenceUnit:

    Name of the persistence-unit. If this parameter is specified, the plugin will try to load configuration values from a @@ -1150,27 +1185,27 @@ or the configuration file.

      -
    • Type: java.lang.String
    • +
    • Type: java.lang.String
    • -
    • Since: 1.1.0
    • +
    • Since: 1.1.0
    • -
    • Required: No
    • +
    • Required: No

    -

    physicalNamingStrategy:

    +

    physicalNamingStrategy:

    Physical naming strategy
      -
    • Type: java.lang.String
    • +
    • Type: java.lang.String
    • -
    • Since: 2.0
    • +
    • Since: 2.0
    • -
    • Required: No
    • +
    • Required: No
    • -
    • User Property: hibernate.physical_naming_strategy
    • +
    • User Property: hibernate.physical_naming_strategy

    -

    scanClasses:

    +

    scanClasses:

    Wether the project should be scanned for annotated-classes, or not @@ -1181,15 +1216,15 @@ or the configuration file.

      -
    • Type: java.lang.Boolean
    • +
    • Type: java.lang.Boolean
    • -
    • Since: 2.0
    • +
    • Since: 2.0
    • -
    • Required: No
    • +
    • Required: No
    • -
    • User Property: hibernate.schema.scan.classes
    • +
    • User Property: hibernate.schema.scan.classes

    -

    scanDependencies:

    +

    scanDependencies:

    Dependency-Scopes, that should be scanned for annotated classes. @@ -1207,17 +1242,17 @@ explicitly.

      -
    • Type: java.lang.String
    • +
    • Type: java.lang.String
    • -
    • Since: 1.0.3
    • +
    • Since: 1.0.3
    • -
    • Required: No
    • +
    • Required: No
    • -
    • User Property: hibernate.schema.scan.dependencies
    • +
    • User Property: hibernate.schema.scan.dependencies
    • -
    • Default: compile
    • +
    • Default: compile

    -

    scanTestClasses:

    +

    scanTestClasses:

    Whether to scan the test-branch of the project for annotated classes, or not. @@ -1226,38 +1261,38 @@ classes, or not. of the artifact will be scanned for hibernate-annotated classes additionally.

    -

    Important: This configuration value can only be +

    Important: This configuration value can only be configured through the pom.xml, or by the definition of a system-property, because it is not known by Hibernate nor JPA and, hence, not picked up from their configuration!

      -
    • Type: java.lang.Boolean
    • +
    • Type: java.lang.Boolean
    • -
    • Since: 1.0.1
    • +
    • Since: 1.0.1
    • -
    • Required: No
    • +
    • Required: No
    • -
    • User Property: hibernate.schema.scan.test_classes
    • +
    • User Property: hibernate.schema.scan.test_classes
    • -
    • Default: false
    • +
    • Default: false

    -

    show:

    +

    show:

    Show the generated SQL in the command-line output.
      -
    • Type: java.lang.Boolean
    • +
    • Type: java.lang.Boolean
    • -
    • Since: 1.0
    • +
    • Since: 1.0
    • -
    • Required: No
    • +
    • Required: No
    • -
    • User Property: hibernate.show_sql
    • +
    • User Property: hibernate.show_sql

    -

    :

    +

    skip:

    Skip execution @@ -1270,24 +1305,24 @@ and, hence, not picked up from their configuration!

    added annotated classes are found and the dialect was not changed.

    -

    Important: This configuration value can only be +

    Important: This configuration value can only be configured through the pom.xml, or by the definition of a system-property, because it is not known by Hibernate nor JPA and, hence, not picked up from their configuration!

      -
    • Type: boolean
    • +
    • Type: boolean
    • -
    • Since: 1.0
    • +
    • Since: 1.0
    • -
    • Required: No
    • +
    • Required: No
    • -
    • User Property: hibernate.schema.skip
    • +
    • User Property: hibernate.schema.skip
    • -
    • Default: ${maven.test.skip}
    • +
    • Default: ${maven.test.skip}

    -

    testOutputDirectory:

    +

    testOutputDirectory:

    Test-Classes-Directory to scan. @@ -1297,48 +1332,48 @@ test-classes.

    This parameter is only used, when scanTestClasses is set to true!

    -

    Important: This configuration value can only be +

    Important: This configuration value can only be configured through the pom.xml, or by the definition of a system-property, because it is not known by Hibernate nor JPA and, hence, not picked up from their configuration!

      -
    • Type: java.lang.String
    • +
    • Type: java.lang.String
    • -
    • Since: 1.0.2
    • +
    • Since: 1.0.2
    • -
    • Required: No
    • +
    • Required: No
    • -
    • User Property: project.build.testOutputDirectory
    • +
    • User Property: project.build.testOutputDirectory

    -

    url:

    +

    url:

    Database URL.
      -
    • Type: java.lang.String
    • +
    • Type: java.lang.String
    • -
    • Since: 1.0
    • +
    • Since: 1.0
    • -
    • Required: No
    • +
    • Required: No
    • -
    • User Property: hibernate.connection.url
    • +
    • User Property: hibernate.connection.url

    -

    username:

    +

    username:

    Database username
      -
    • Type: java.lang.String
    • +
    • Type: java.lang.String
    • -
    • Since: 1.0
    • +
    • Since: 1.0
    • -
    • Required: No
    • +
    • Required: No
    • -
    • User Property: hibernate.connection.username
    • +
    • User Property: hibernate.connection.username
    @@ -1370,9 +1405,12 @@ and, hence, not picked up from their configuration!

    "/hibernate-maven-plugin/pmd.html": "PMD", "/hibernate-maven-plugin/plugin-info.html": "Plugin Documentation", "/hibernate-maven-plugin/project-reports.html": "Project Reports", + "/hibernate-maven-plugin/index.html?about": "Overview", "/hibernate-maven-plugin/configuration.html": "Configuration Examples", - "/hibernate-maven-plugin/create-mojo.html": "Goal: CREATE", - "/hibernate-maven-plugin/drop-mojo.html": "Goal: DROP", + "/hibernate-maven-plugin/create-mojo.html": "Goal — hibernate:create", + "/hibernate-maven-plugin/update-mojo.html": "Goal — hibernate:update", + "/hibernate-maven-plugin/drop-mojo.html": "Goal — hibernate:drop", + "/hibernate-maven-plugin/help-mojo.html": "Goal — hibernate:help", "/hibernate-maven-plugin/debugging.html": "Enable Debugging-Output", "/hibernate-maven-plugin/skip.html": "Skipping Execution", "/hibernate-maven-plugin/force.html": "Force Exceution", @@ -1380,9 +1418,12 @@ and, hence, not picked up from their configuration!

    }, "_childs": { "/hibernate-maven-plugin/index.html": [ + "/hibernate-maven-plugin/index.html?about", "/hibernate-maven-plugin/configuration.html", "/hibernate-maven-plugin/create-mojo.html", + "/hibernate-maven-plugin/update-mojo.html", "/hibernate-maven-plugin/drop-mojo.html", + "/hibernate-maven-plugin/help-mojo.html", "/hibernate-maven-plugin/debugging.html", "/hibernate-maven-plugin/skip.html", "/hibernate-maven-plugin/force.html", @@ -1529,6 +1570,11 @@ and, hence, not picked up from their configuration!

    "/hibernate-maven-plugin/index.html", "/hibernate-maven-plugin/project-reports.html" ], + "/hibernate-maven-plugin/index.html?about": [ + "/index.html","/projects.html", + "/hibernate-maven-plugin/index.html", + "/hibernate-maven-plugin/index.html?about" + ], "/hibernate-maven-plugin/configuration.html": [ "/index.html","/projects.html", "/hibernate-maven-plugin/index.html", @@ -1539,11 +1585,21 @@ and, hence, not picked up from their configuration!

    "/hibernate-maven-plugin/index.html", "/hibernate-maven-plugin/create-mojo.html" ], + "/hibernate-maven-plugin/update-mojo.html": [ + "/index.html","/projects.html", + "/hibernate-maven-plugin/index.html", + "/hibernate-maven-plugin/update-mojo.html" + ], "/hibernate-maven-plugin/drop-mojo.html": [ "/index.html","/projects.html", "/hibernate-maven-plugin/index.html", "/hibernate-maven-plugin/drop-mojo.html" ], + "/hibernate-maven-plugin/help-mojo.html": [ + "/index.html","/projects.html", + "/hibernate-maven-plugin/index.html", + "/hibernate-maven-plugin/help-mojo.html" + ], "/hibernate-maven-plugin/debugging.html": [ "/index.html","/projects.html", "/hibernate-maven-plugin/index.html", @@ -1586,9 +1642,12 @@ and, hence, not picked up from their configuration!

    "/hibernate-maven-plugin/pmd.html": "/hibernate-maven-plugin/pmd.html", "/hibernate-maven-plugin/plugin-info.html": "/hibernate-maven-plugin/plugin-info.html", "/hibernate-maven-plugin/project-reports.html": "/hibernate-maven-plugin/project-reports.html", + "/hibernate-maven-plugin/index.html?about": "/hibernate-maven-plugin/index.html?about", "/hibernate-maven-plugin/configuration.html": "/hibernate-maven-plugin/configuration.html", "/hibernate-maven-plugin/create-mojo.html": "/hibernate-maven-plugin/create-mojo.html", + "/hibernate-maven-plugin/update-mojo.html": "/hibernate-maven-plugin/update-mojo.html", "/hibernate-maven-plugin/drop-mojo.html": "/hibernate-maven-plugin/drop-mojo.html", + "/hibernate-maven-plugin/help-mojo.html": "/hibernate-maven-plugin/help-mojo.html", "/hibernate-maven-plugin/debugging.html": "/hibernate-maven-plugin/debugging.html", "/hibernate-maven-plugin/skip.html": "/hibernate-maven-plugin/skip.html", "/hibernate-maven-plugin/force.html": "/hibernate-maven-plugin/force.html", @@ -1599,7 +1658,7 @@ and, hence, not picked up from their configuration!

    All Pages

    +
  • Hibernate Maven Plugin
  • CI Management
  • Dependencies
  • Maven Coordinates
  • Distribution Management
  • Licenses
  • Plugin Management
  • Plugins
  • Source Code Management
  • Summary
  • Team
  • Project Information
  • Test JavaDocs
  • JavaDocs
  • Source Xref
  • Test Source Xref
  • CPD
  • PMD
  • Plugin Documentation
  • Project Reports
  • Overview
  • Configuration Examples
  • Goal — hibernate:create
  • Goal — hibernate:update
  • Goal — hibernate:drop
  • Goal — hibernate:help
  • Enable Debugging-Output
  • Skipping Execution
  • Force Exceution
  • Known Pitfalls (FAQ)
  • diff --git a/hibernate-maven-plugin/force.html b/hibernate-maven-plugin/force.html index a66dc57d..247cda8e 100644 --- a/hibernate-maven-plugin/force.html +++ b/hibernate-maven-plugin/force.html @@ -1,6 +1,6 @@ - + @@ -8,7 +8,7 @@ - + @@ -264,19 +264,28 @@ - + - + - - + + + + + + + + + + + @@ -298,7 +307,7 @@ - + @@ -311,7 +320,33 @@ - + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -400,23 +435,23 @@ - - + + - + - Hibernate Maven Plugin + Hibernate Maven Plugin – -

    $shortTitle

    +

    URI

    • site: /hibernate-maven-plugin/force.html
    • @@ -433,8 +468,8 @@ -
      -

      Force Execution

      + +

      Force Execution

      The hibernate-maven-plugin computes MD5-sums for all found annotated @@ -449,16 +484,17 @@ The plugin signals, that the execution was skipped by setting the maven property ${hibernate.schema.skipped} to true. This may be helpful, because other plugins like - dbunit-plugin + dbunit-plugin may fail, when the execution is skipped.

      - If you need the hibernate-maven-plugin to never skip execution automatically, + If you need the hibernate-maven-plugin to never skip execution automatically, you can force it to do so, if you set the parameter force to true:

      +
       <plugin>
         <groupId>de.juplo</groupId>
      @@ -467,13 +503,13 @@
         <configuration>
           <force>true</force>
         </configuration>
      -</plugin>
      +</plugin>

      Or you may specify -Dhibernate.schema.force=true at the command line, if you want to force hibernate-maven-plugin only once.

      -
    +

    @@ -501,9 +537,12 @@ "/hibernate-maven-plugin/pmd.html": "PMD", "/hibernate-maven-plugin/plugin-info.html": "Plugin Documentation", "/hibernate-maven-plugin/project-reports.html": "Project Reports", + "/hibernate-maven-plugin/index.html?about": "Overview", "/hibernate-maven-plugin/configuration.html": "Configuration Examples", - "/hibernate-maven-plugin/create-mojo.html": "Goal: CREATE", - "/hibernate-maven-plugin/drop-mojo.html": "Goal: DROP", + "/hibernate-maven-plugin/create-mojo.html": "Goal — hibernate:create", + "/hibernate-maven-plugin/update-mojo.html": "Goal — hibernate:update", + "/hibernate-maven-plugin/drop-mojo.html": "Goal — hibernate:drop", + "/hibernate-maven-plugin/help-mojo.html": "Goal — hibernate:help", "/hibernate-maven-plugin/debugging.html": "Enable Debugging-Output", "/hibernate-maven-plugin/skip.html": "Skipping Execution", "/hibernate-maven-plugin/force.html": "Force Exceution", @@ -511,9 +550,12 @@ }, "_childs": { "/hibernate-maven-plugin/index.html": [ + "/hibernate-maven-plugin/index.html?about", "/hibernate-maven-plugin/configuration.html", "/hibernate-maven-plugin/create-mojo.html", + "/hibernate-maven-plugin/update-mojo.html", "/hibernate-maven-plugin/drop-mojo.html", + "/hibernate-maven-plugin/help-mojo.html", "/hibernate-maven-plugin/debugging.html", "/hibernate-maven-plugin/skip.html", "/hibernate-maven-plugin/force.html", @@ -660,6 +702,11 @@ "/hibernate-maven-plugin/index.html", "/hibernate-maven-plugin/project-reports.html" ], + "/hibernate-maven-plugin/index.html?about": [ + "/index.html","/projects.html", + "/hibernate-maven-plugin/index.html", + "/hibernate-maven-plugin/index.html?about" + ], "/hibernate-maven-plugin/configuration.html": [ "/index.html","/projects.html", "/hibernate-maven-plugin/index.html", @@ -670,11 +717,21 @@ "/hibernate-maven-plugin/index.html", "/hibernate-maven-plugin/create-mojo.html" ], + "/hibernate-maven-plugin/update-mojo.html": [ + "/index.html","/projects.html", + "/hibernate-maven-plugin/index.html", + "/hibernate-maven-plugin/update-mojo.html" + ], "/hibernate-maven-plugin/drop-mojo.html": [ "/index.html","/projects.html", "/hibernate-maven-plugin/index.html", "/hibernate-maven-plugin/drop-mojo.html" ], + "/hibernate-maven-plugin/help-mojo.html": [ + "/index.html","/projects.html", + "/hibernate-maven-plugin/index.html", + "/hibernate-maven-plugin/help-mojo.html" + ], "/hibernate-maven-plugin/debugging.html": [ "/index.html","/projects.html", "/hibernate-maven-plugin/index.html", @@ -717,9 +774,12 @@ "/hibernate-maven-plugin/pmd.html": "/hibernate-maven-plugin/pmd.html", "/hibernate-maven-plugin/plugin-info.html": "/hibernate-maven-plugin/plugin-info.html", "/hibernate-maven-plugin/project-reports.html": "/hibernate-maven-plugin/project-reports.html", + "/hibernate-maven-plugin/index.html?about": "/hibernate-maven-plugin/index.html?about", "/hibernate-maven-plugin/configuration.html": "/hibernate-maven-plugin/configuration.html", "/hibernate-maven-plugin/create-mojo.html": "/hibernate-maven-plugin/create-mojo.html", + "/hibernate-maven-plugin/update-mojo.html": "/hibernate-maven-plugin/update-mojo.html", "/hibernate-maven-plugin/drop-mojo.html": "/hibernate-maven-plugin/drop-mojo.html", + "/hibernate-maven-plugin/help-mojo.html": "/hibernate-maven-plugin/help-mojo.html", "/hibernate-maven-plugin/debugging.html": "/hibernate-maven-plugin/debugging.html", "/hibernate-maven-plugin/skip.html": "/hibernate-maven-plugin/skip.html", "/hibernate-maven-plugin/force.html": "/hibernate-maven-plugin/force.html", @@ -730,7 +790,7 @@

    All Pages

    +
  • Hibernate Maven Plugin
  • CI Management
  • Dependencies
  • Maven Coordinates
  • Distribution Management
  • Licenses
  • Plugin Management
  • Plugins
  • Source Code Management
  • Summary
  • Team
  • Project Information
  • Test JavaDocs
  • JavaDocs
  • Source Xref
  • Test Source Xref
  • CPD
  • PMD
  • Plugin Documentation
  • Project Reports
  • Overview
  • Configuration Examples
  • Goal — hibernate:create
  • Goal — hibernate:update
  • Goal — hibernate:drop
  • Goal — hibernate:help
  • Enable Debugging-Output
  • Skipping Execution
  • Force Exceution
  • Known Pitfalls (FAQ)
  • diff --git a/hibernate-maven-plugin/help-mojo.html b/hibernate-maven-plugin/help-mojo.html index d4207d57..55157656 100644 --- a/hibernate-maven-plugin/help-mojo.html +++ b/hibernate-maven-plugin/help-mojo.html @@ -1,6 +1,6 @@ - + @@ -8,7 +8,7 @@ - + @@ -264,19 +264,28 @@ - + - + - - + + + + + + + + + + + @@ -298,7 +307,7 @@ - + @@ -311,7 +320,33 @@ - + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -399,19 +434,19 @@ - - + + - + - hibernate:help – Hibernate Maven Plugin + Hibernate Maven Plugin – hibernate:help @@ -426,35 +461,35 @@

    Path

      -
    +
  • Hibernate Maven Plugin
  • Goal — hibernate:help

  • -
    -

    hibernate:help

    +
    +

    hibernate:help

    -

    Full name:

    +

    Full name:

    de.juplo:hibernate-maven-plugin:2.1.1:help

    -

    Description:

    +

    Description:

    Display help information on hibernate-maven-plugin.
    Call mvn hibernate:help -Ddetail=true -Dgoal=<goal-name> to display parameter details.
    -

    Attributes:

    +

    Attributes:

    • The goal is thread-safe and supports parallel builds.
    -
    -

    Optional Parameters

    +
    +

    Optional Parameters

    - +
    @@ -469,109 +504,109 @@ Call mvn hibernate:help -Ddetail=true - + +goal.
    Default value is: false.
    User property is: detail.
    - + +goals will be displayed.
    User property is: goal.
    - + - + - + - +
    detaildetail boolean - If true, display all settable properties for each -goal.
    Default value is: false.
    User property is: detail.
    goalgoal String - The name of the goal for which to show help. If unspecified, all -goals will be displayed.
    User property is: goal.
    indentSizeindentSize int -The number of spaces per indentation level, should be positive.
    Default value is: 2.
    User property is: indentSize.
    The number of spaces per indentation level, should be positive.
    Default value is: 2.
    User property is: indentSize.
    lineLengthlineLength int -The maximum length of a display line, should be positive.
    Default value is: 80.
    User property is: lineLength.
    The maximum length of a display line, should be positive.
    Default value is: 80.
    User property is: lineLength.
    -
    -

    Parameter Details

    +
    +

    Parameter Details

    -

    detail:

    +

    detail:

    If true, display all settable properties for each goal.
      -
    • Type: boolean
    • +
    • Type: boolean
    • -
    • Required: No
    • +
    • Required: No
    • -
    • User Property: detail
    • +
    • User Property: detail
    • -
    • Default: false
    • +
    • Default: false

    -

    goal:

    +

    goal:

    The name of the goal for which to show help. If unspecified, all goals will be displayed.
      -
    • Type: java.lang.String
    • +
    • Type: java.lang.String
    • -
    • Required: No
    • +
    • Required: No
    • -
    • User Property: goal
    • +
    • User Property: goal

    -

    indentSize:

    +

    indentSize:

    The number of spaces per indentation level, should be positive.
      -
    • Type: int
    • +
    • Type: int
    • -
    • Required: No
    • +
    • Required: No
    • -
    • User Property: indentSize
    • +
    • User Property: indentSize
    • -
    • Default: 2
    • +
    • Default: 2

    -

    lineLength:

    +

    lineLength:

    The maximum length of a display line, should be positive.
      -
    • Type: int
    • +
    • Type: int
    • -
    • Required: No
    • +
    • Required: No
    • -
    • User Property: lineLength
    • +
    • User Property: lineLength
    • -
    • Default: 80
    • +
    • Default: 80
    @@ -603,9 +638,12 @@ goals will be displayed. "/hibernate-maven-plugin/pmd.html": "PMD", "/hibernate-maven-plugin/plugin-info.html": "Plugin Documentation", "/hibernate-maven-plugin/project-reports.html": "Project Reports", + "/hibernate-maven-plugin/index.html?about": "Overview", "/hibernate-maven-plugin/configuration.html": "Configuration Examples", - "/hibernate-maven-plugin/create-mojo.html": "Goal: CREATE", - "/hibernate-maven-plugin/drop-mojo.html": "Goal: DROP", + "/hibernate-maven-plugin/create-mojo.html": "Goal — hibernate:create", + "/hibernate-maven-plugin/update-mojo.html": "Goal — hibernate:update", + "/hibernate-maven-plugin/drop-mojo.html": "Goal — hibernate:drop", + "/hibernate-maven-plugin/help-mojo.html": "Goal — hibernate:help", "/hibernate-maven-plugin/debugging.html": "Enable Debugging-Output", "/hibernate-maven-plugin/skip.html": "Skipping Execution", "/hibernate-maven-plugin/force.html": "Force Exceution", @@ -613,9 +651,12 @@ goals will be displayed. }, "_childs": { "/hibernate-maven-plugin/index.html": [ + "/hibernate-maven-plugin/index.html?about", "/hibernate-maven-plugin/configuration.html", "/hibernate-maven-plugin/create-mojo.html", + "/hibernate-maven-plugin/update-mojo.html", "/hibernate-maven-plugin/drop-mojo.html", + "/hibernate-maven-plugin/help-mojo.html", "/hibernate-maven-plugin/debugging.html", "/hibernate-maven-plugin/skip.html", "/hibernate-maven-plugin/force.html", @@ -762,6 +803,11 @@ goals will be displayed. "/hibernate-maven-plugin/index.html", "/hibernate-maven-plugin/project-reports.html" ], + "/hibernate-maven-plugin/index.html?about": [ + "/index.html","/projects.html", + "/hibernate-maven-plugin/index.html", + "/hibernate-maven-plugin/index.html?about" + ], "/hibernate-maven-plugin/configuration.html": [ "/index.html","/projects.html", "/hibernate-maven-plugin/index.html", @@ -772,11 +818,21 @@ goals will be displayed. "/hibernate-maven-plugin/index.html", "/hibernate-maven-plugin/create-mojo.html" ], + "/hibernate-maven-plugin/update-mojo.html": [ + "/index.html","/projects.html", + "/hibernate-maven-plugin/index.html", + "/hibernate-maven-plugin/update-mojo.html" + ], "/hibernate-maven-plugin/drop-mojo.html": [ "/index.html","/projects.html", "/hibernate-maven-plugin/index.html", "/hibernate-maven-plugin/drop-mojo.html" ], + "/hibernate-maven-plugin/help-mojo.html": [ + "/index.html","/projects.html", + "/hibernate-maven-plugin/index.html", + "/hibernate-maven-plugin/help-mojo.html" + ], "/hibernate-maven-plugin/debugging.html": [ "/index.html","/projects.html", "/hibernate-maven-plugin/index.html", @@ -819,9 +875,12 @@ goals will be displayed. "/hibernate-maven-plugin/pmd.html": "/hibernate-maven-plugin/pmd.html", "/hibernate-maven-plugin/plugin-info.html": "/hibernate-maven-plugin/plugin-info.html", "/hibernate-maven-plugin/project-reports.html": "/hibernate-maven-plugin/project-reports.html", + "/hibernate-maven-plugin/index.html?about": "/hibernate-maven-plugin/index.html?about", "/hibernate-maven-plugin/configuration.html": "/hibernate-maven-plugin/configuration.html", "/hibernate-maven-plugin/create-mojo.html": "/hibernate-maven-plugin/create-mojo.html", + "/hibernate-maven-plugin/update-mojo.html": "/hibernate-maven-plugin/update-mojo.html", "/hibernate-maven-plugin/drop-mojo.html": "/hibernate-maven-plugin/drop-mojo.html", + "/hibernate-maven-plugin/help-mojo.html": "/hibernate-maven-plugin/help-mojo.html", "/hibernate-maven-plugin/debugging.html": "/hibernate-maven-plugin/debugging.html", "/hibernate-maven-plugin/skip.html": "/hibernate-maven-plugin/skip.html", "/hibernate-maven-plugin/force.html": "/hibernate-maven-plugin/force.html", @@ -832,7 +891,7 @@ goals will be displayed.

    All Pages

    +
  • Hibernate Maven Plugin
  • CI Management
  • Dependencies
  • Maven Coordinates
  • Distribution Management
  • Licenses
  • Plugin Management
  • Plugins
  • Source Code Management
  • Summary
  • Team
  • Project Information
  • Test JavaDocs
  • JavaDocs
  • Source Xref
  • Test Source Xref
  • CPD
  • PMD
  • Plugin Documentation
  • Project Reports
  • Overview
  • Configuration Examples
  • Goal — hibernate:create
  • Goal — hibernate:update
  • Goal — hibernate:drop
  • Goal — hibernate:help
  • Enable Debugging-Output
  • Skipping Execution
  • Force Exceution
  • Known Pitfalls (FAQ)
  • diff --git a/hibernate-maven-plugin/index.html b/hibernate-maven-plugin/index.html index 973a8373..73526c9a 100644 --- a/hibernate-maven-plugin/index.html +++ b/hibernate-maven-plugin/index.html @@ -1,6 +1,6 @@ - + @@ -8,7 +8,7 @@ - + @@ -264,19 +264,28 @@ - + - + - - + + + + + + + + + + + @@ -298,7 +307,33 @@ - + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -311,7 +346,7 @@ - + @@ -400,23 +435,23 @@ - - + + - + - Hibernate Maven Plugin + Hibernate Maven Plugin – -

    $shortTitle

    +

    URI

    • site: /hibernate-maven-plugin/index.html
    • @@ -433,18 +468,18 @@ -
      -

      Hibernate Maven Plugin

      -
      -

      A simple plugin for generating a database-schema from Hibernate-Mappings

      + +

      Hibernate Maven Plugin

      +
      +

      A simple plugin for generating a database-schema from Hibernate-Mappings

      - The hibernate-maven-plugin is a plugin for generating a database-schema + The hibernate-maven-plugin is a plugin for generating a database-schema from your Hibernate-Mappings and create or update your database accordingly. Its main usage is to automatically create and populate a test-database for unit-tests in cooperation with the - dbunit-maven-plugin. + dbunit-maven-plugin.

      @@ -482,8 +517,8 @@ For more information about the inspiration to write this tiny plugin, read our blog-article about the hibernate-maven-plugin.

      -
      -

      Documentation

      +
      +

      Documentation

      -
      -

      Releases

      +
      +

      Releases

      -
      +

    @@ -557,9 +594,12 @@ "/hibernate-maven-plugin/pmd.html": "PMD", "/hibernate-maven-plugin/plugin-info.html": "Plugin Documentation", "/hibernate-maven-plugin/project-reports.html": "Project Reports", + "/hibernate-maven-plugin/index.html?about": "Overview", "/hibernate-maven-plugin/configuration.html": "Configuration Examples", - "/hibernate-maven-plugin/create-mojo.html": "Goal: CREATE", - "/hibernate-maven-plugin/drop-mojo.html": "Goal: DROP", + "/hibernate-maven-plugin/create-mojo.html": "Goal — hibernate:create", + "/hibernate-maven-plugin/update-mojo.html": "Goal — hibernate:update", + "/hibernate-maven-plugin/drop-mojo.html": "Goal — hibernate:drop", + "/hibernate-maven-plugin/help-mojo.html": "Goal — hibernate:help", "/hibernate-maven-plugin/debugging.html": "Enable Debugging-Output", "/hibernate-maven-plugin/skip.html": "Skipping Execution", "/hibernate-maven-plugin/force.html": "Force Exceution", @@ -567,9 +607,12 @@ }, "_childs": { "/hibernate-maven-plugin/index.html": [ + "/hibernate-maven-plugin/index.html?about", "/hibernate-maven-plugin/configuration.html", "/hibernate-maven-plugin/create-mojo.html", + "/hibernate-maven-plugin/update-mojo.html", "/hibernate-maven-plugin/drop-mojo.html", + "/hibernate-maven-plugin/help-mojo.html", "/hibernate-maven-plugin/debugging.html", "/hibernate-maven-plugin/skip.html", "/hibernate-maven-plugin/force.html", @@ -716,6 +759,11 @@ "/hibernate-maven-plugin/index.html", "/hibernate-maven-plugin/project-reports.html" ], + "/hibernate-maven-plugin/index.html?about": [ + "/index.html","/projects.html", + "/hibernate-maven-plugin/index.html", + "/hibernate-maven-plugin/index.html?about" + ], "/hibernate-maven-plugin/configuration.html": [ "/index.html","/projects.html", "/hibernate-maven-plugin/index.html", @@ -726,11 +774,21 @@ "/hibernate-maven-plugin/index.html", "/hibernate-maven-plugin/create-mojo.html" ], + "/hibernate-maven-plugin/update-mojo.html": [ + "/index.html","/projects.html", + "/hibernate-maven-plugin/index.html", + "/hibernate-maven-plugin/update-mojo.html" + ], "/hibernate-maven-plugin/drop-mojo.html": [ "/index.html","/projects.html", "/hibernate-maven-plugin/index.html", "/hibernate-maven-plugin/drop-mojo.html" ], + "/hibernate-maven-plugin/help-mojo.html": [ + "/index.html","/projects.html", + "/hibernate-maven-plugin/index.html", + "/hibernate-maven-plugin/help-mojo.html" + ], "/hibernate-maven-plugin/debugging.html": [ "/index.html","/projects.html", "/hibernate-maven-plugin/index.html", @@ -773,9 +831,12 @@ "/hibernate-maven-plugin/pmd.html": "/hibernate-maven-plugin/pmd.html", "/hibernate-maven-plugin/plugin-info.html": "/hibernate-maven-plugin/plugin-info.html", "/hibernate-maven-plugin/project-reports.html": "/hibernate-maven-plugin/project-reports.html", + "/hibernate-maven-plugin/index.html?about": "/hibernate-maven-plugin/index.html?about", "/hibernate-maven-plugin/configuration.html": "/hibernate-maven-plugin/configuration.html", "/hibernate-maven-plugin/create-mojo.html": "/hibernate-maven-plugin/create-mojo.html", + "/hibernate-maven-plugin/update-mojo.html": "/hibernate-maven-plugin/update-mojo.html", "/hibernate-maven-plugin/drop-mojo.html": "/hibernate-maven-plugin/drop-mojo.html", + "/hibernate-maven-plugin/help-mojo.html": "/hibernate-maven-plugin/help-mojo.html", "/hibernate-maven-plugin/debugging.html": "/hibernate-maven-plugin/debugging.html", "/hibernate-maven-plugin/skip.html": "/hibernate-maven-plugin/skip.html", "/hibernate-maven-plugin/force.html": "/hibernate-maven-plugin/force.html", @@ -786,7 +847,7 @@

    All Pages

    +
  • Hibernate Maven Plugin
  • CI Management
  • Dependencies
  • Maven Coordinates
  • Distribution Management
  • Licenses
  • Plugin Management
  • Plugins
  • Source Code Management
  • Summary
  • Team
  • Project Information
  • Test JavaDocs
  • JavaDocs
  • Source Xref
  • Test Source Xref
  • CPD
  • PMD
  • Plugin Documentation
  • Project Reports
  • Overview
  • Configuration Examples
  • Goal — hibernate:create
  • Goal — hibernate:update
  • Goal — hibernate:drop
  • Goal — hibernate:help
  • Enable Debugging-Output
  • Skipping Execution
  • Force Exceution
  • Known Pitfalls (FAQ)
  • diff --git a/hibernate-maven-plugin/issue-tracking.html b/hibernate-maven-plugin/issue-tracking.html index 61ba2a7b..6782a529 100644 --- a/hibernate-maven-plugin/issue-tracking.html +++ b/hibernate-maven-plugin/issue-tracking.html @@ -1,6 +1,6 @@ - + @@ -8,7 +8,7 @@ - + @@ -264,19 +264,28 @@ - + - + - - + + + + + + + + + + + @@ -298,7 +307,7 @@ - + @@ -311,7 +320,33 @@ - + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -400,23 +435,23 @@ - - + + - + - Hibernate Maven Plugin + Hibernate Maven Plugin – -

    $shortTitle

    +

    URI

    • site: /hibernate-maven-plugin/issue-tracking.html
    • @@ -433,15 +468,15 @@ -
      -

      Issue Tracking

      - There is no bug-tracking system set up for this project! + +

      Issue Tracking

      + There is no bug-tracking system set up for this project!

      Please send your bug-reports, questions or feature-requests directly to the developer.

      - +
      @@ -469,9 +504,12 @@ "/hibernate-maven-plugin/pmd.html": "PMD", "/hibernate-maven-plugin/plugin-info.html": "Plugin Documentation", "/hibernate-maven-plugin/project-reports.html": "Project Reports", + "/hibernate-maven-plugin/index.html?about": "Overview", "/hibernate-maven-plugin/configuration.html": "Configuration Examples", - "/hibernate-maven-plugin/create-mojo.html": "Goal: CREATE", - "/hibernate-maven-plugin/drop-mojo.html": "Goal: DROP", + "/hibernate-maven-plugin/create-mojo.html": "Goal — hibernate:create", + "/hibernate-maven-plugin/update-mojo.html": "Goal — hibernate:update", + "/hibernate-maven-plugin/drop-mojo.html": "Goal — hibernate:drop", + "/hibernate-maven-plugin/help-mojo.html": "Goal — hibernate:help", "/hibernate-maven-plugin/debugging.html": "Enable Debugging-Output", "/hibernate-maven-plugin/skip.html": "Skipping Execution", "/hibernate-maven-plugin/force.html": "Force Exceution", @@ -479,9 +517,12 @@ }, "_childs": { "/hibernate-maven-plugin/index.html": [ + "/hibernate-maven-plugin/index.html?about", "/hibernate-maven-plugin/configuration.html", "/hibernate-maven-plugin/create-mojo.html", + "/hibernate-maven-plugin/update-mojo.html", "/hibernate-maven-plugin/drop-mojo.html", + "/hibernate-maven-plugin/help-mojo.html", "/hibernate-maven-plugin/debugging.html", "/hibernate-maven-plugin/skip.html", "/hibernate-maven-plugin/force.html", @@ -628,6 +669,11 @@ "/hibernate-maven-plugin/index.html", "/hibernate-maven-plugin/project-reports.html" ], + "/hibernate-maven-plugin/index.html?about": [ + "/index.html","/projects.html", + "/hibernate-maven-plugin/index.html", + "/hibernate-maven-plugin/index.html?about" + ], "/hibernate-maven-plugin/configuration.html": [ "/index.html","/projects.html", "/hibernate-maven-plugin/index.html", @@ -638,11 +684,21 @@ "/hibernate-maven-plugin/index.html", "/hibernate-maven-plugin/create-mojo.html" ], + "/hibernate-maven-plugin/update-mojo.html": [ + "/index.html","/projects.html", + "/hibernate-maven-plugin/index.html", + "/hibernate-maven-plugin/update-mojo.html" + ], "/hibernate-maven-plugin/drop-mojo.html": [ "/index.html","/projects.html", "/hibernate-maven-plugin/index.html", "/hibernate-maven-plugin/drop-mojo.html" ], + "/hibernate-maven-plugin/help-mojo.html": [ + "/index.html","/projects.html", + "/hibernate-maven-plugin/index.html", + "/hibernate-maven-plugin/help-mojo.html" + ], "/hibernate-maven-plugin/debugging.html": [ "/index.html","/projects.html", "/hibernate-maven-plugin/index.html", @@ -685,9 +741,12 @@ "/hibernate-maven-plugin/pmd.html": "/hibernate-maven-plugin/pmd.html", "/hibernate-maven-plugin/plugin-info.html": "/hibernate-maven-plugin/plugin-info.html", "/hibernate-maven-plugin/project-reports.html": "/hibernate-maven-plugin/project-reports.html", + "/hibernate-maven-plugin/index.html?about": "/hibernate-maven-plugin/index.html?about", "/hibernate-maven-plugin/configuration.html": "/hibernate-maven-plugin/configuration.html", "/hibernate-maven-plugin/create-mojo.html": "/hibernate-maven-plugin/create-mojo.html", + "/hibernate-maven-plugin/update-mojo.html": "/hibernate-maven-plugin/update-mojo.html", "/hibernate-maven-plugin/drop-mojo.html": "/hibernate-maven-plugin/drop-mojo.html", + "/hibernate-maven-plugin/help-mojo.html": "/hibernate-maven-plugin/help-mojo.html", "/hibernate-maven-plugin/debugging.html": "/hibernate-maven-plugin/debugging.html", "/hibernate-maven-plugin/skip.html": "/hibernate-maven-plugin/skip.html", "/hibernate-maven-plugin/force.html": "/hibernate-maven-plugin/force.html", @@ -698,7 +757,7 @@

      All Pages

      +
    • Hibernate Maven Plugin
    • CI Management
    • Dependencies
    • Maven Coordinates
    • Distribution Management
    • Licenses
    • Plugin Management
    • Plugins
    • Source Code Management
    • Summary
    • Team
    • Project Information
    • Test JavaDocs
    • JavaDocs
    • Source Xref
    • Test Source Xref
    • CPD
    • PMD
    • Plugin Documentation
    • Project Reports
    • Overview
    • Configuration Examples
    • Goal — hibernate:create
    • Goal — hibernate:update
    • Goal — hibernate:drop
    • Goal — hibernate:help
    • Enable Debugging-Output
    • Skipping Execution
    • Force Exceution
    • Known Pitfalls (FAQ)

    diff --git a/hibernate-maven-plugin/licenses.html b/hibernate-maven-plugin/licenses.html index eae4e286..541a44e1 100644 --- a/hibernate-maven-plugin/licenses.html +++ b/hibernate-maven-plugin/licenses.html @@ -1,6 +1,6 @@ - + @@ -8,7 +8,7 @@ - + @@ -264,19 +264,28 @@ - + - + - - + + + + + + + + + + + @@ -298,7 +307,7 @@ - + @@ -311,7 +320,33 @@ - + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -400,18 +435,18 @@ - + - + - Project Licenses – Hibernate Maven Plugin + Hibernate Maven Plugin – Project Licenses @@ -430,13 +465,12 @@


    -
    -

    Overview

    -

    Typically the licenses listed for the project are that of the project itself, and not of dependencies.

    -

    Project Licenses

    -

    The Apache Software License, Version 2.0

    +
    +

    Overview

    +

    Typically the licenses listed for the project are that of the project itself, and not of dependencies.

    +

    Project Licenses

    +

    The Apache Software License, Version 2.0

    A business-friendly OSS license

    -
    -

    Page Structure as JSON

    @@ -463,9 +497,12 @@ "/hibernate-maven-plugin/pmd.html": "PMD", "/hibernate-maven-plugin/plugin-info.html": "Plugin Documentation", "/hibernate-maven-plugin/project-reports.html": "Project Reports", + "/hibernate-maven-plugin/index.html?about": "Overview", "/hibernate-maven-plugin/configuration.html": "Configuration Examples", - "/hibernate-maven-plugin/create-mojo.html": "Goal: CREATE", - "/hibernate-maven-plugin/drop-mojo.html": "Goal: DROP", + "/hibernate-maven-plugin/create-mojo.html": "Goal — hibernate:create", + "/hibernate-maven-plugin/update-mojo.html": "Goal — hibernate:update", + "/hibernate-maven-plugin/drop-mojo.html": "Goal — hibernate:drop", + "/hibernate-maven-plugin/help-mojo.html": "Goal — hibernate:help", "/hibernate-maven-plugin/debugging.html": "Enable Debugging-Output", "/hibernate-maven-plugin/skip.html": "Skipping Execution", "/hibernate-maven-plugin/force.html": "Force Exceution", @@ -473,9 +510,12 @@ }, "_childs": { "/hibernate-maven-plugin/index.html": [ + "/hibernate-maven-plugin/index.html?about", "/hibernate-maven-plugin/configuration.html", "/hibernate-maven-plugin/create-mojo.html", + "/hibernate-maven-plugin/update-mojo.html", "/hibernate-maven-plugin/drop-mojo.html", + "/hibernate-maven-plugin/help-mojo.html", "/hibernate-maven-plugin/debugging.html", "/hibernate-maven-plugin/skip.html", "/hibernate-maven-plugin/force.html", @@ -622,6 +662,11 @@ "/hibernate-maven-plugin/index.html", "/hibernate-maven-plugin/project-reports.html" ], + "/hibernate-maven-plugin/index.html?about": [ + "/index.html","/projects.html", + "/hibernate-maven-plugin/index.html", + "/hibernate-maven-plugin/index.html?about" + ], "/hibernate-maven-plugin/configuration.html": [ "/index.html","/projects.html", "/hibernate-maven-plugin/index.html", @@ -632,11 +677,21 @@ "/hibernate-maven-plugin/index.html", "/hibernate-maven-plugin/create-mojo.html" ], + "/hibernate-maven-plugin/update-mojo.html": [ + "/index.html","/projects.html", + "/hibernate-maven-plugin/index.html", + "/hibernate-maven-plugin/update-mojo.html" + ], "/hibernate-maven-plugin/drop-mojo.html": [ "/index.html","/projects.html", "/hibernate-maven-plugin/index.html", "/hibernate-maven-plugin/drop-mojo.html" ], + "/hibernate-maven-plugin/help-mojo.html": [ + "/index.html","/projects.html", + "/hibernate-maven-plugin/index.html", + "/hibernate-maven-plugin/help-mojo.html" + ], "/hibernate-maven-plugin/debugging.html": [ "/index.html","/projects.html", "/hibernate-maven-plugin/index.html", @@ -679,9 +734,12 @@ "/hibernate-maven-plugin/pmd.html": "/hibernate-maven-plugin/pmd.html", "/hibernate-maven-plugin/plugin-info.html": "/hibernate-maven-plugin/plugin-info.html", "/hibernate-maven-plugin/project-reports.html": "/hibernate-maven-plugin/project-reports.html", + "/hibernate-maven-plugin/index.html?about": "/hibernate-maven-plugin/index.html?about", "/hibernate-maven-plugin/configuration.html": "/hibernate-maven-plugin/configuration.html", "/hibernate-maven-plugin/create-mojo.html": "/hibernate-maven-plugin/create-mojo.html", + "/hibernate-maven-plugin/update-mojo.html": "/hibernate-maven-plugin/update-mojo.html", "/hibernate-maven-plugin/drop-mojo.html": "/hibernate-maven-plugin/drop-mojo.html", + "/hibernate-maven-plugin/help-mojo.html": "/hibernate-maven-plugin/help-mojo.html", "/hibernate-maven-plugin/debugging.html": "/hibernate-maven-plugin/debugging.html", "/hibernate-maven-plugin/skip.html": "/hibernate-maven-plugin/skip.html", "/hibernate-maven-plugin/force.html": "/hibernate-maven-plugin/force.html", @@ -692,7 +750,7 @@

    All Pages

    +
  • Hibernate Maven Plugin
  • CI Management
  • Dependencies
  • Maven Coordinates
  • Distribution Management
  • Licenses
  • Plugin Management
  • Plugins
  • Source Code Management
  • Summary
  • Team
  • Project Information
  • Test JavaDocs
  • JavaDocs
  • Source Xref
  • Test Source Xref
  • CPD
  • PMD
  • Plugin Documentation
  • Project Reports
  • Overview
  • Configuration Examples
  • Goal — hibernate:create
  • Goal — hibernate:update
  • Goal — hibernate:drop
  • Goal — hibernate:help
  • Enable Debugging-Output
  • Skipping Execution
  • Force Exceution
  • Known Pitfalls (FAQ)
  • diff --git a/hibernate-maven-plugin/mail-lists.html b/hibernate-maven-plugin/mail-lists.html index cdffd04c..51c28c48 100644 --- a/hibernate-maven-plugin/mail-lists.html +++ b/hibernate-maven-plugin/mail-lists.html @@ -1,6 +1,6 @@ - + @@ -8,7 +8,7 @@ - + @@ -264,19 +264,28 @@ - + - + - - + + + + + + + + + + + @@ -298,7 +307,7 @@ - + @@ -311,7 +320,33 @@ - + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -400,23 +435,23 @@ - - + + - + - Hibernate Maven Plugin + Hibernate Maven Plugin – -

    $shortTitle

    +

    URI

    • site: /hibernate-maven-plugin/mail-lists.html
    • @@ -433,15 +468,15 @@ -
      -

      Mailing Lists

      - There are no mailinglists defined for this project! + +

      Mailing Lists

      + There are no mailinglists defined for this project!

      Please send your bug-reports, questions or feature-requests directly to the developer.

      - +
      @@ -469,9 +504,12 @@ "/hibernate-maven-plugin/pmd.html": "PMD", "/hibernate-maven-plugin/plugin-info.html": "Plugin Documentation", "/hibernate-maven-plugin/project-reports.html": "Project Reports", + "/hibernate-maven-plugin/index.html?about": "Overview", "/hibernate-maven-plugin/configuration.html": "Configuration Examples", - "/hibernate-maven-plugin/create-mojo.html": "Goal: CREATE", - "/hibernate-maven-plugin/drop-mojo.html": "Goal: DROP", + "/hibernate-maven-plugin/create-mojo.html": "Goal — hibernate:create", + "/hibernate-maven-plugin/update-mojo.html": "Goal — hibernate:update", + "/hibernate-maven-plugin/drop-mojo.html": "Goal — hibernate:drop", + "/hibernate-maven-plugin/help-mojo.html": "Goal — hibernate:help", "/hibernate-maven-plugin/debugging.html": "Enable Debugging-Output", "/hibernate-maven-plugin/skip.html": "Skipping Execution", "/hibernate-maven-plugin/force.html": "Force Exceution", @@ -479,9 +517,12 @@ }, "_childs": { "/hibernate-maven-plugin/index.html": [ + "/hibernate-maven-plugin/index.html?about", "/hibernate-maven-plugin/configuration.html", "/hibernate-maven-plugin/create-mojo.html", + "/hibernate-maven-plugin/update-mojo.html", "/hibernate-maven-plugin/drop-mojo.html", + "/hibernate-maven-plugin/help-mojo.html", "/hibernate-maven-plugin/debugging.html", "/hibernate-maven-plugin/skip.html", "/hibernate-maven-plugin/force.html", @@ -628,6 +669,11 @@ "/hibernate-maven-plugin/index.html", "/hibernate-maven-plugin/project-reports.html" ], + "/hibernate-maven-plugin/index.html?about": [ + "/index.html","/projects.html", + "/hibernate-maven-plugin/index.html", + "/hibernate-maven-plugin/index.html?about" + ], "/hibernate-maven-plugin/configuration.html": [ "/index.html","/projects.html", "/hibernate-maven-plugin/index.html", @@ -638,11 +684,21 @@ "/hibernate-maven-plugin/index.html", "/hibernate-maven-plugin/create-mojo.html" ], + "/hibernate-maven-plugin/update-mojo.html": [ + "/index.html","/projects.html", + "/hibernate-maven-plugin/index.html", + "/hibernate-maven-plugin/update-mojo.html" + ], "/hibernate-maven-plugin/drop-mojo.html": [ "/index.html","/projects.html", "/hibernate-maven-plugin/index.html", "/hibernate-maven-plugin/drop-mojo.html" ], + "/hibernate-maven-plugin/help-mojo.html": [ + "/index.html","/projects.html", + "/hibernate-maven-plugin/index.html", + "/hibernate-maven-plugin/help-mojo.html" + ], "/hibernate-maven-plugin/debugging.html": [ "/index.html","/projects.html", "/hibernate-maven-plugin/index.html", @@ -685,9 +741,12 @@ "/hibernate-maven-plugin/pmd.html": "/hibernate-maven-plugin/pmd.html", "/hibernate-maven-plugin/plugin-info.html": "/hibernate-maven-plugin/plugin-info.html", "/hibernate-maven-plugin/project-reports.html": "/hibernate-maven-plugin/project-reports.html", + "/hibernate-maven-plugin/index.html?about": "/hibernate-maven-plugin/index.html?about", "/hibernate-maven-plugin/configuration.html": "/hibernate-maven-plugin/configuration.html", "/hibernate-maven-plugin/create-mojo.html": "/hibernate-maven-plugin/create-mojo.html", + "/hibernate-maven-plugin/update-mojo.html": "/hibernate-maven-plugin/update-mojo.html", "/hibernate-maven-plugin/drop-mojo.html": "/hibernate-maven-plugin/drop-mojo.html", + "/hibernate-maven-plugin/help-mojo.html": "/hibernate-maven-plugin/help-mojo.html", "/hibernate-maven-plugin/debugging.html": "/hibernate-maven-plugin/debugging.html", "/hibernate-maven-plugin/skip.html": "/hibernate-maven-plugin/skip.html", "/hibernate-maven-plugin/force.html": "/hibernate-maven-plugin/force.html", @@ -698,7 +757,7 @@

      All Pages

      +
    • Hibernate Maven Plugin
    • CI Management
    • Dependencies
    • Maven Coordinates
    • Distribution Management
    • Licenses
    • Plugin Management
    • Plugins
    • Source Code Management
    • Summary
    • Team
    • Project Information
    • Test JavaDocs
    • JavaDocs
    • Source Xref
    • Test Source Xref
    • CPD
    • PMD
    • Plugin Documentation
    • Project Reports
    • Overview
    • Configuration Examples
    • Goal — hibernate:create
    • Goal — hibernate:update
    • Goal — hibernate:drop
    • Goal — hibernate:help
    • Enable Debugging-Output
    • Skipping Execution
    • Force Exceution
    • Known Pitfalls (FAQ)

    diff --git a/hibernate-maven-plugin/pitfalls.html b/hibernate-maven-plugin/pitfalls.html index 7f620210..61bd3520 100644 --- a/hibernate-maven-plugin/pitfalls.html +++ b/hibernate-maven-plugin/pitfalls.html @@ -1,6 +1,6 @@ - + @@ -8,7 +8,7 @@ - + @@ -264,19 +264,28 @@ - + - + - - + + + + + + + + + + + @@ -298,7 +307,33 @@ - + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -311,7 +346,7 @@ - + @@ -400,23 +435,23 @@ - - + + - + - Hibernate Maven Plugin + Hibernate Maven Plugin – -

    $shortTitle

    +

    URI

    • site: /hibernate-maven-plugin/pitfalls.html
    • @@ -433,10 +468,10 @@ -
      -

      Known Pitfalls (FAQ)

      -
      -

      Annotated classes in dependencies are not found.

      + +

      Known Pitfalls (FAQ)

      +
      +

      Annotated classes in dependencies are not found.

      hibernate-maven-plugin by default scans dependencies in the scope @@ -446,8 +481,8 @@ annotated classes are hidden in a transitive dependency, you can simply add that dependency explicitly.

      -
      -

      hibernate-maven-plugin always needs a database-connection

      +
      +

      hibernate-maven-plugin always needs a database-connection

      The default-configuration executes the created SQL. @@ -461,18 +496,19 @@ configuration:

      +
       <configuration>
         <execute>false</execute>
      -</configuration>
      +</configuration>

      But even when no database is to be created, hibernate always needs to know the dialect. Hence, the plugin will still fail, if this parameter is also missing!

      -
      -

      Dependency for driver-class XYZ is missing

      +
      +

      Dependency for driver-class XYZ is missing

      One regular problem is the scope of the jdbc-driver-dependency. @@ -486,6 +522,7 @@ an error-message like:

      +
       [INFO] Gathered hibernate-configuration (turn on debugging for details):
       [INFO]   hibernate.connection.username = sa
      @@ -515,7 +552,7 @@
       [ERROR] Re-run Maven using the -X switch to enable full debug logging.
       [ERROR] 
       [ERROR] For more information about the errors and possible solutions, please read the following articles:
      -[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoFailureException
      +[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoFailureException

      A quick workaround for this error would be, to delete the runtime-constraint @@ -527,6 +564,7 @@ plugin-definition:

      +
       <plugin>
         <groupId>de.juplo</groupId>
      @@ -547,7 +585,7 @@
           <version>2.2.8</version>
         </dependency>
         </dependencies>
      -</plugin>
      +</plugin>

      This is also the best way, if you use a different jdbc-driver for @@ -555,14 +593,14 @@ Because otherwise, this dependency will unnecessarily bloat the runtime-dependencies of your project.

      -
      +

      DBUnit fails after execution of hibernate was skipped because nothing has changed

      If hibernate-maven-plugin skips its excecution, this may lead to errors in other plugins. For example, when importing sample-data in the automatically created database - with the help of the dbunit-plugin, + with the help of the dbunit-plugin, the CLEAN_INSERT-operation may fail because of foreign-key-constraints, if the database was not recreated, because the hibernate-maven-plugin has skipped its excecution. @@ -584,6 +622,7 @@ hibernate-maven-plugin was skipped like this:

      +
       <plugin>
         <groupId>org.codehaus.mojo</groupId>
      @@ -591,9 +630,9 @@
         <configuration>
           <skip>${hibernate.schema.skipped}</skip>
         </configuration>
      -</plugin>
      -
      -

      The database will not be recreated after a manual drop/clean

      +</plugin> +
      +

      The database will not be recreated after a manual drop/clean

      If one manually drops the database or removes the hsqldb-files, it will not @@ -605,19 +644,21 @@ report that like this:

      +
       [INFO] No modified annotated classes found and dialect unchanged.
      -[INFO] Skipping schema generation!
      +[INFO] Skipping schema generation!

      If one always uses mvn clean for cleanup, this will not happen. Otherwise the recreation must be forced:

      +
      -mvn hibernate:create -Dhibernate.schema.force=true
      -
      -

      The hibernate:create goal is not executed, when tests are skipped

      +mvn hibernate:create -Dhibernate.schema.force=true +
      +

      The hibernate:create goal is not executed, when tests are skipped

      The hibernate-maven-plugin automatically skips its execution, when @@ -625,6 +666,7 @@ mvn hibernate:create -Dhibernate.schema.force=true executed, you can configure that explicitly like this:

      +
       <plugin>
         <groupId>de.juplo</groupId>
      @@ -633,14 +675,14 @@ mvn hibernate:create -Dhibernate.schema.force=true
      <configuration> <skip>false</skip> </configuration> -</plugin> +</plugin>

      Background-information for this design-decission can be found on the extra page To skip or not to skip: that is the question...

      -
      -

      I do not want my dependencies to be scanned for hibernate annotations

      +
      +

      I do not want my dependencies to be scanned for hibernate annotations

      If you do not want your dependencies to be scanned for hibernate annotations, @@ -649,6 +691,7 @@ mvn hibernate:create -Dhibernate.schema.force=true of the plugin like this:

      +
       <plugin>
         <groupId>de.juplo</groupId>
      @@ -657,9 +700,9 @@ mvn hibernate:create -Dhibernate.schema.force=true
      <configuration> <scanDependencies>none</scanDependencies> </configuration> -</plugin> -
      -

      No annotated classes found

      +</plugin> +
      +

      No annotated classes found

      If you are working under Windows and get the error-message @@ -670,12 +713,12 @@ mvn hibernate:create -Dhibernate.schema.force=true

      - + You should consider to upgrade to the latest version of the plugin. - +

      -
      -

      If two goals are specified, the second one is always skipped

      +
      +

      If two goals are specified, the second one is always skipped

      If you specify two goals, for example drop and @@ -692,6 +735,7 @@ mvn hibernate:create -Dhibernate.schema.force=true Example configuration for two goals:

      +
       <executions>
         <execution>
      @@ -714,8 +758,8 @@ mvn hibernate:create -Dhibernate.schema.force=true
      <outputFile>db-schema/create-schema.ddl</outputFile> </configuration> </execution> -</executions> -
      +</executions> +
      @@ -743,9 +787,12 @@ mvn hibernate:create -Dhibernate.schema.force=true "/hibernate-maven-plugin/pmd.html": "PMD", "/hibernate-maven-plugin/plugin-info.html": "Plugin Documentation", "/hibernate-maven-plugin/project-reports.html": "Project Reports", + "/hibernate-maven-plugin/index.html?about": "Overview", "/hibernate-maven-plugin/configuration.html": "Configuration Examples", - "/hibernate-maven-plugin/create-mojo.html": "Goal: CREATE", - "/hibernate-maven-plugin/drop-mojo.html": "Goal: DROP", + "/hibernate-maven-plugin/create-mojo.html": "Goal — hibernate:create", + "/hibernate-maven-plugin/update-mojo.html": "Goal — hibernate:update", + "/hibernate-maven-plugin/drop-mojo.html": "Goal — hibernate:drop", + "/hibernate-maven-plugin/help-mojo.html": "Goal — hibernate:help", "/hibernate-maven-plugin/debugging.html": "Enable Debugging-Output", "/hibernate-maven-plugin/skip.html": "Skipping Execution", "/hibernate-maven-plugin/force.html": "Force Exceution", @@ -753,9 +800,12 @@ mvn hibernate:create -Dhibernate.schema.force=true }, "_childs": { "/hibernate-maven-plugin/index.html": [ + "/hibernate-maven-plugin/index.html?about", "/hibernate-maven-plugin/configuration.html", "/hibernate-maven-plugin/create-mojo.html", + "/hibernate-maven-plugin/update-mojo.html", "/hibernate-maven-plugin/drop-mojo.html", + "/hibernate-maven-plugin/help-mojo.html", "/hibernate-maven-plugin/debugging.html", "/hibernate-maven-plugin/skip.html", "/hibernate-maven-plugin/force.html", @@ -902,6 +952,11 @@ mvn hibernate:create -Dhibernate.schema.force=true "/hibernate-maven-plugin/index.html", "/hibernate-maven-plugin/project-reports.html" ], + "/hibernate-maven-plugin/index.html?about": [ + "/index.html","/projects.html", + "/hibernate-maven-plugin/index.html", + "/hibernate-maven-plugin/index.html?about" + ], "/hibernate-maven-plugin/configuration.html": [ "/index.html","/projects.html", "/hibernate-maven-plugin/index.html", @@ -912,11 +967,21 @@ mvn hibernate:create -Dhibernate.schema.force=true "/hibernate-maven-plugin/index.html", "/hibernate-maven-plugin/create-mojo.html" ], + "/hibernate-maven-plugin/update-mojo.html": [ + "/index.html","/projects.html", + "/hibernate-maven-plugin/index.html", + "/hibernate-maven-plugin/update-mojo.html" + ], "/hibernate-maven-plugin/drop-mojo.html": [ "/index.html","/projects.html", "/hibernate-maven-plugin/index.html", "/hibernate-maven-plugin/drop-mojo.html" ], + "/hibernate-maven-plugin/help-mojo.html": [ + "/index.html","/projects.html", + "/hibernate-maven-plugin/index.html", + "/hibernate-maven-plugin/help-mojo.html" + ], "/hibernate-maven-plugin/debugging.html": [ "/index.html","/projects.html", "/hibernate-maven-plugin/index.html", @@ -959,9 +1024,12 @@ mvn hibernate:create -Dhibernate.schema.force=true "/hibernate-maven-plugin/pmd.html": "/hibernate-maven-plugin/pmd.html", "/hibernate-maven-plugin/plugin-info.html": "/hibernate-maven-plugin/plugin-info.html", "/hibernate-maven-plugin/project-reports.html": "/hibernate-maven-plugin/project-reports.html", + "/hibernate-maven-plugin/index.html?about": "/hibernate-maven-plugin/index.html?about", "/hibernate-maven-plugin/configuration.html": "/hibernate-maven-plugin/configuration.html", "/hibernate-maven-plugin/create-mojo.html": "/hibernate-maven-plugin/create-mojo.html", + "/hibernate-maven-plugin/update-mojo.html": "/hibernate-maven-plugin/update-mojo.html", "/hibernate-maven-plugin/drop-mojo.html": "/hibernate-maven-plugin/drop-mojo.html", + "/hibernate-maven-plugin/help-mojo.html": "/hibernate-maven-plugin/help-mojo.html", "/hibernate-maven-plugin/debugging.html": "/hibernate-maven-plugin/debugging.html", "/hibernate-maven-plugin/skip.html": "/hibernate-maven-plugin/skip.html", "/hibernate-maven-plugin/force.html": "/hibernate-maven-plugin/force.html", @@ -972,7 +1040,7 @@ mvn hibernate:create -Dhibernate.schema.force=true

      All Pages

      +
    • Hibernate Maven Plugin
    • CI Management
    • Dependencies
    • Maven Coordinates
    • Distribution Management
    • Licenses
    • Plugin Management
    • Plugins
    • Source Code Management
    • Summary
    • Team
    • Project Information
    • Test JavaDocs
    • JavaDocs
    • Source Xref
    • Test Source Xref
    • CPD
    • PMD
    • Plugin Documentation
    • Project Reports
    • Overview
    • Configuration Examples
    • Goal — hibernate:create
    • Goal — hibernate:update
    • Goal — hibernate:drop
    • Goal — hibernate:help
    • Enable Debugging-Output
    • Skipping Execution
    • Force Exceution
    • Known Pitfalls (FAQ)

    diff --git a/hibernate-maven-plugin/plugin-info.html b/hibernate-maven-plugin/plugin-info.html index f667a76d..b4277972 100644 --- a/hibernate-maven-plugin/plugin-info.html +++ b/hibernate-maven-plugin/plugin-info.html @@ -1,6 +1,6 @@ - + @@ -8,7 +8,7 @@ - + @@ -264,19 +264,28 @@ - + - + - - + + + + + + + + + + + @@ -298,7 +307,7 @@ - + @@ -311,7 +320,33 @@ - + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -400,18 +435,18 @@ - + - + - Plugin Documentation – Hibernate Maven Plugin + Hibernate Maven Plugin – Plugin Documentation @@ -431,46 +466,75 @@
    -

    Plugin Documentation

    +

    Plugin Documentation

    Goals available for this plugin:

    - +
    - + - + - + - +
    Goal Description
    hibernate:createhibernate:create Generate/Execute SQL to create a database-schema that represents the configured mappings.
    hibernate:drophibernate:drop Generate/Execute SQL to drop all tables of a database-schema that represents the configured mappings.
    hibernate:helphibernate:help Display help information on hibernate-maven-plugin.
    Call mvn hibernate:help -Ddetail=true -Dgoal=<goal-name> to display parameter details.
    hibernate:updatehibernate:update Generate/Execute SQL to update the database-schema according to the configured mappings.
    -

    System Requirements

    +

    System Requirements

    The following specifies the minimum requirements to run this Maven plugin:

    - +
    - + - + - + - +
    MavenMaven 2.0.6
    JDKJDK 1.6
    MemoryMemory No minimum requirement.
    Disk SpaceDisk Space No minimum requirement.
    -

    Usage

    +

    Usage

    You should specify the version in your project's plugin configuration:

    +
    +
    <project>
    +  ...
    +  <build>
    +    <!-- To define the plugin version in your parent POM -->
    +    <pluginManagement>
    +      <plugins>
    +        <plugin>
    +          <groupId>de.juplo</groupId>
    +          <artifactId>hibernate-maven-plugin</artifactId>
    +          <version>2.1.1</version>
    +        </plugin>
    +        ...
    +      </plugins>
    +    </pluginManagement>
    +    <!-- To use the plugin goals in your POM or parent POM -->
    +    <plugins>
    +      <plugin>
    +        <groupId>de.juplo</groupId>
    +        <artifactId>hibernate-maven-plugin</artifactId>
    +        <version>2.1.1</version>
    +      </plugin>
    +      ...
    +    </plugins>
    +  </build>
    +  ...
    +</project>
    +
    +

    For more information, see "Guide to Configuring Plug-ins"


    Page Structure as JSON

    @@ -497,9 +561,12 @@ configured mappings.
    "/hibernate-maven-plugin/pmd.html": "PMD", "/hibernate-maven-plugin/plugin-info.html": "Plugin Documentation", "/hibernate-maven-plugin/project-reports.html": "Project Reports", + "/hibernate-maven-plugin/index.html?about": "Overview", "/hibernate-maven-plugin/configuration.html": "Configuration Examples", - "/hibernate-maven-plugin/create-mojo.html": "Goal: CREATE", - "/hibernate-maven-plugin/drop-mojo.html": "Goal: DROP", + "/hibernate-maven-plugin/create-mojo.html": "Goal — hibernate:create", + "/hibernate-maven-plugin/update-mojo.html": "Goal — hibernate:update", + "/hibernate-maven-plugin/drop-mojo.html": "Goal — hibernate:drop", + "/hibernate-maven-plugin/help-mojo.html": "Goal — hibernate:help", "/hibernate-maven-plugin/debugging.html": "Enable Debugging-Output", "/hibernate-maven-plugin/skip.html": "Skipping Execution", "/hibernate-maven-plugin/force.html": "Force Exceution", @@ -507,9 +574,12 @@ configured mappings.
    }, "_childs": { "/hibernate-maven-plugin/index.html": [ + "/hibernate-maven-plugin/index.html?about", "/hibernate-maven-plugin/configuration.html", "/hibernate-maven-plugin/create-mojo.html", + "/hibernate-maven-plugin/update-mojo.html", "/hibernate-maven-plugin/drop-mojo.html", + "/hibernate-maven-plugin/help-mojo.html", "/hibernate-maven-plugin/debugging.html", "/hibernate-maven-plugin/skip.html", "/hibernate-maven-plugin/force.html", @@ -656,6 +726,11 @@ configured mappings.
    "/hibernate-maven-plugin/index.html", "/hibernate-maven-plugin/project-reports.html" ], + "/hibernate-maven-plugin/index.html?about": [ + "/index.html","/projects.html", + "/hibernate-maven-plugin/index.html", + "/hibernate-maven-plugin/index.html?about" + ], "/hibernate-maven-plugin/configuration.html": [ "/index.html","/projects.html", "/hibernate-maven-plugin/index.html", @@ -666,11 +741,21 @@ configured mappings.
    "/hibernate-maven-plugin/index.html", "/hibernate-maven-plugin/create-mojo.html" ], + "/hibernate-maven-plugin/update-mojo.html": [ + "/index.html","/projects.html", + "/hibernate-maven-plugin/index.html", + "/hibernate-maven-plugin/update-mojo.html" + ], "/hibernate-maven-plugin/drop-mojo.html": [ "/index.html","/projects.html", "/hibernate-maven-plugin/index.html", "/hibernate-maven-plugin/drop-mojo.html" ], + "/hibernate-maven-plugin/help-mojo.html": [ + "/index.html","/projects.html", + "/hibernate-maven-plugin/index.html", + "/hibernate-maven-plugin/help-mojo.html" + ], "/hibernate-maven-plugin/debugging.html": [ "/index.html","/projects.html", "/hibernate-maven-plugin/index.html", @@ -713,9 +798,12 @@ configured mappings.
    "/hibernate-maven-plugin/pmd.html": "/hibernate-maven-plugin/pmd.html", "/hibernate-maven-plugin/plugin-info.html": "/hibernate-maven-plugin/plugin-info.html", "/hibernate-maven-plugin/project-reports.html": "/hibernate-maven-plugin/project-reports.html", + "/hibernate-maven-plugin/index.html?about": "/hibernate-maven-plugin/index.html?about", "/hibernate-maven-plugin/configuration.html": "/hibernate-maven-plugin/configuration.html", "/hibernate-maven-plugin/create-mojo.html": "/hibernate-maven-plugin/create-mojo.html", + "/hibernate-maven-plugin/update-mojo.html": "/hibernate-maven-plugin/update-mojo.html", "/hibernate-maven-plugin/drop-mojo.html": "/hibernate-maven-plugin/drop-mojo.html", + "/hibernate-maven-plugin/help-mojo.html": "/hibernate-maven-plugin/help-mojo.html", "/hibernate-maven-plugin/debugging.html": "/hibernate-maven-plugin/debugging.html", "/hibernate-maven-plugin/skip.html": "/hibernate-maven-plugin/skip.html", "/hibernate-maven-plugin/force.html": "/hibernate-maven-plugin/force.html", @@ -726,7 +814,7 @@ configured mappings.

    All Pages

    +
  • Hibernate Maven Plugin
  • CI Management
  • Dependencies
  • Maven Coordinates
  • Distribution Management
  • Licenses
  • Plugin Management
  • Plugins
  • Source Code Management
  • Summary
  • Team
  • Project Information
  • Test JavaDocs
  • JavaDocs
  • Source Xref
  • Test Source Xref
  • CPD
  • PMD
  • Plugin Documentation
  • Project Reports
  • Overview
  • Configuration Examples
  • Goal — hibernate:create
  • Goal — hibernate:update
  • Goal — hibernate:drop
  • Goal — hibernate:help
  • Enable Debugging-Output
  • Skipping Execution
  • Force Exceution
  • Known Pitfalls (FAQ)
  • diff --git a/hibernate-maven-plugin/plugin-management.html b/hibernate-maven-plugin/plugin-management.html index 4dba6353..d6f44fcd 100644 --- a/hibernate-maven-plugin/plugin-management.html +++ b/hibernate-maven-plugin/plugin-management.html @@ -1,6 +1,6 @@ - + @@ -8,7 +8,7 @@ - + @@ -264,19 +264,28 @@ - + - + - - + + + + + + + + + + + @@ -298,7 +307,7 @@ - + @@ -311,7 +320,33 @@ - + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -400,18 +435,18 @@ - + - + - Project Plugin Management – Hibernate Maven Plugin + Hibernate Maven Plugin – Project Plugin Management @@ -430,9 +465,9 @@


    -
    -

    Project Plugin Management

    - +
    +

    Project Plugin Management

    +
    @@ -479,9 +514,12 @@ "/hibernate-maven-plugin/pmd.html": "PMD", "/hibernate-maven-plugin/plugin-info.html": "Plugin Documentation", "/hibernate-maven-plugin/project-reports.html": "Project Reports", + "/hibernate-maven-plugin/index.html?about": "Overview", "/hibernate-maven-plugin/configuration.html": "Configuration Examples", - "/hibernate-maven-plugin/create-mojo.html": "Goal: CREATE", - "/hibernate-maven-plugin/drop-mojo.html": "Goal: DROP", + "/hibernate-maven-plugin/create-mojo.html": "Goal — hibernate:create", + "/hibernate-maven-plugin/update-mojo.html": "Goal — hibernate:update", + "/hibernate-maven-plugin/drop-mojo.html": "Goal — hibernate:drop", + "/hibernate-maven-plugin/help-mojo.html": "Goal — hibernate:help", "/hibernate-maven-plugin/debugging.html": "Enable Debugging-Output", "/hibernate-maven-plugin/skip.html": "Skipping Execution", "/hibernate-maven-plugin/force.html": "Force Exceution", @@ -489,9 +527,12 @@ }, "_childs": { "/hibernate-maven-plugin/index.html": [ + "/hibernate-maven-plugin/index.html?about", "/hibernate-maven-plugin/configuration.html", "/hibernate-maven-plugin/create-mojo.html", + "/hibernate-maven-plugin/update-mojo.html", "/hibernate-maven-plugin/drop-mojo.html", + "/hibernate-maven-plugin/help-mojo.html", "/hibernate-maven-plugin/debugging.html", "/hibernate-maven-plugin/skip.html", "/hibernate-maven-plugin/force.html", @@ -638,6 +679,11 @@ "/hibernate-maven-plugin/index.html", "/hibernate-maven-plugin/project-reports.html" ], + "/hibernate-maven-plugin/index.html?about": [ + "/index.html","/projects.html", + "/hibernate-maven-plugin/index.html", + "/hibernate-maven-plugin/index.html?about" + ], "/hibernate-maven-plugin/configuration.html": [ "/index.html","/projects.html", "/hibernate-maven-plugin/index.html", @@ -648,11 +694,21 @@ "/hibernate-maven-plugin/index.html", "/hibernate-maven-plugin/create-mojo.html" ], + "/hibernate-maven-plugin/update-mojo.html": [ + "/index.html","/projects.html", + "/hibernate-maven-plugin/index.html", + "/hibernate-maven-plugin/update-mojo.html" + ], "/hibernate-maven-plugin/drop-mojo.html": [ "/index.html","/projects.html", "/hibernate-maven-plugin/index.html", "/hibernate-maven-plugin/drop-mojo.html" ], + "/hibernate-maven-plugin/help-mojo.html": [ + "/index.html","/projects.html", + "/hibernate-maven-plugin/index.html", + "/hibernate-maven-plugin/help-mojo.html" + ], "/hibernate-maven-plugin/debugging.html": [ "/index.html","/projects.html", "/hibernate-maven-plugin/index.html", @@ -695,9 +751,12 @@ "/hibernate-maven-plugin/pmd.html": "/hibernate-maven-plugin/pmd.html", "/hibernate-maven-plugin/plugin-info.html": "/hibernate-maven-plugin/plugin-info.html", "/hibernate-maven-plugin/project-reports.html": "/hibernate-maven-plugin/project-reports.html", + "/hibernate-maven-plugin/index.html?about": "/hibernate-maven-plugin/index.html?about", "/hibernate-maven-plugin/configuration.html": "/hibernate-maven-plugin/configuration.html", "/hibernate-maven-plugin/create-mojo.html": "/hibernate-maven-plugin/create-mojo.html", + "/hibernate-maven-plugin/update-mojo.html": "/hibernate-maven-plugin/update-mojo.html", "/hibernate-maven-plugin/drop-mojo.html": "/hibernate-maven-plugin/drop-mojo.html", + "/hibernate-maven-plugin/help-mojo.html": "/hibernate-maven-plugin/help-mojo.html", "/hibernate-maven-plugin/debugging.html": "/hibernate-maven-plugin/debugging.html", "/hibernate-maven-plugin/skip.html": "/hibernate-maven-plugin/skip.html", "/hibernate-maven-plugin/force.html": "/hibernate-maven-plugin/force.html", @@ -708,7 +767,7 @@

    All Pages

    +
  • Hibernate Maven Plugin
  • CI Management
  • Dependencies
  • Maven Coordinates
  • Distribution Management
  • Licenses
  • Plugin Management
  • Plugins
  • Source Code Management
  • Summary
  • Team
  • Project Information
  • Test JavaDocs
  • JavaDocs
  • Source Xref
  • Test Source Xref
  • CPD
  • PMD
  • Plugin Documentation
  • Project Reports
  • Overview
  • Configuration Examples
  • Goal — hibernate:create
  • Goal — hibernate:update
  • Goal — hibernate:drop
  • Goal — hibernate:help
  • Enable Debugging-Output
  • Skipping Execution
  • Force Exceution
  • Known Pitfalls (FAQ)
  • diff --git a/hibernate-maven-plugin/plugins.html b/hibernate-maven-plugin/plugins.html index f3508998..4172b362 100644 --- a/hibernate-maven-plugin/plugins.html +++ b/hibernate-maven-plugin/plugins.html @@ -1,6 +1,6 @@ - + @@ -8,7 +8,7 @@ - + @@ -264,19 +264,28 @@ - + - + - - + + + + + + + + + + + @@ -298,7 +307,7 @@ - + @@ -311,7 +320,33 @@ - + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -400,18 +435,18 @@ - + - + - Project Plugins – Hibernate Maven Plugin + Hibernate Maven Plugin – Project Plugins @@ -430,9 +465,9 @@


    -
    -

    Project Build Plugins

    -
    GroupId ArtifactId
    +
    +

    Project Build Plugins

    +
    @@ -488,7 +523,7 @@ - + @@ -500,9 +535,9 @@ -
    GroupId ArtifactId
    org.apache.maven.plugins maven-site-plugin3.21.0
    3.9.1
    org.apache.maven.plugins maven-source-plugin
    org.sonatype.plugins nexus-staging-maven-plugin1.6.7
    -

    Project Report Plugins

    - +
    1.6.7
    +

    Project Report Plugins

    + @@ -557,9 +592,12 @@ "/hibernate-maven-plugin/pmd.html": "PMD", "/hibernate-maven-plugin/plugin-info.html": "Plugin Documentation", "/hibernate-maven-plugin/project-reports.html": "Project Reports", + "/hibernate-maven-plugin/index.html?about": "Overview", "/hibernate-maven-plugin/configuration.html": "Configuration Examples", - "/hibernate-maven-plugin/create-mojo.html": "Goal: CREATE", - "/hibernate-maven-plugin/drop-mojo.html": "Goal: DROP", + "/hibernate-maven-plugin/create-mojo.html": "Goal — hibernate:create", + "/hibernate-maven-plugin/update-mojo.html": "Goal — hibernate:update", + "/hibernate-maven-plugin/drop-mojo.html": "Goal — hibernate:drop", + "/hibernate-maven-plugin/help-mojo.html": "Goal — hibernate:help", "/hibernate-maven-plugin/debugging.html": "Enable Debugging-Output", "/hibernate-maven-plugin/skip.html": "Skipping Execution", "/hibernate-maven-plugin/force.html": "Force Exceution", @@ -567,9 +605,12 @@ }, "_childs": { "/hibernate-maven-plugin/index.html": [ + "/hibernate-maven-plugin/index.html?about", "/hibernate-maven-plugin/configuration.html", "/hibernate-maven-plugin/create-mojo.html", + "/hibernate-maven-plugin/update-mojo.html", "/hibernate-maven-plugin/drop-mojo.html", + "/hibernate-maven-plugin/help-mojo.html", "/hibernate-maven-plugin/debugging.html", "/hibernate-maven-plugin/skip.html", "/hibernate-maven-plugin/force.html", @@ -716,6 +757,11 @@ "/hibernate-maven-plugin/index.html", "/hibernate-maven-plugin/project-reports.html" ], + "/hibernate-maven-plugin/index.html?about": [ + "/index.html","/projects.html", + "/hibernate-maven-plugin/index.html", + "/hibernate-maven-plugin/index.html?about" + ], "/hibernate-maven-plugin/configuration.html": [ "/index.html","/projects.html", "/hibernate-maven-plugin/index.html", @@ -726,11 +772,21 @@ "/hibernate-maven-plugin/index.html", "/hibernate-maven-plugin/create-mojo.html" ], + "/hibernate-maven-plugin/update-mojo.html": [ + "/index.html","/projects.html", + "/hibernate-maven-plugin/index.html", + "/hibernate-maven-plugin/update-mojo.html" + ], "/hibernate-maven-plugin/drop-mojo.html": [ "/index.html","/projects.html", "/hibernate-maven-plugin/index.html", "/hibernate-maven-plugin/drop-mojo.html" ], + "/hibernate-maven-plugin/help-mojo.html": [ + "/index.html","/projects.html", + "/hibernate-maven-plugin/index.html", + "/hibernate-maven-plugin/help-mojo.html" + ], "/hibernate-maven-plugin/debugging.html": [ "/index.html","/projects.html", "/hibernate-maven-plugin/index.html", @@ -773,9 +829,12 @@ "/hibernate-maven-plugin/pmd.html": "/hibernate-maven-plugin/pmd.html", "/hibernate-maven-plugin/plugin-info.html": "/hibernate-maven-plugin/plugin-info.html", "/hibernate-maven-plugin/project-reports.html": "/hibernate-maven-plugin/project-reports.html", + "/hibernate-maven-plugin/index.html?about": "/hibernate-maven-plugin/index.html?about", "/hibernate-maven-plugin/configuration.html": "/hibernate-maven-plugin/configuration.html", "/hibernate-maven-plugin/create-mojo.html": "/hibernate-maven-plugin/create-mojo.html", + "/hibernate-maven-plugin/update-mojo.html": "/hibernate-maven-plugin/update-mojo.html", "/hibernate-maven-plugin/drop-mojo.html": "/hibernate-maven-plugin/drop-mojo.html", + "/hibernate-maven-plugin/help-mojo.html": "/hibernate-maven-plugin/help-mojo.html", "/hibernate-maven-plugin/debugging.html": "/hibernate-maven-plugin/debugging.html", "/hibernate-maven-plugin/skip.html": "/hibernate-maven-plugin/skip.html", "/hibernate-maven-plugin/force.html": "/hibernate-maven-plugin/force.html", @@ -786,7 +845,7 @@

    All Pages

    +
  • Hibernate Maven Plugin
  • CI Management
  • Dependencies
  • Maven Coordinates
  • Distribution Management
  • Licenses
  • Plugin Management
  • Plugins
  • Source Code Management
  • Summary
  • Team
  • Project Information
  • Test JavaDocs
  • JavaDocs
  • Source Xref
  • Test Source Xref
  • CPD
  • PMD
  • Plugin Documentation
  • Project Reports
  • Overview
  • Configuration Examples
  • Goal — hibernate:create
  • Goal — hibernate:update
  • Goal — hibernate:drop
  • Goal — hibernate:help
  • Enable Debugging-Output
  • Skipping Execution
  • Force Exceution
  • Known Pitfalls (FAQ)
  • diff --git a/hibernate-maven-plugin/pmd.html b/hibernate-maven-plugin/pmd.html index 3dec67de..8f492905 100644 --- a/hibernate-maven-plugin/pmd.html +++ b/hibernate-maven-plugin/pmd.html @@ -1,6 +1,6 @@ - + @@ -8,7 +8,7 @@ - + @@ -264,19 +264,28 @@ - + - + - - + + + + + + + + + + + @@ -298,7 +307,7 @@ - + @@ -311,7 +320,33 @@ - + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -400,18 +435,18 @@ - + - + - PMD Results – Hibernate Maven Plugin + Hibernate Maven Plugin – PMD Results @@ -431,24 +466,27 @@
    -

    PMD Results

    +

    PMD Results

    The following document contains the results of PMD 5.2.3.

    -

    Files

    -

    de/juplo/plugins/hibernate/AbstractSchemaMojo.java

    +

    Files

    +

    de/juplo/plugins/hibernate/AbstractSchemaMojo.java

    +
    GroupId ArtifactId
    Violation Line
    Too many static imports may lead to messy code 11455
    -

    de/juplo/plugins/hibernate/ModificationTracker.java

    +

    de/juplo/plugins/hibernate/ModificationTracker.java

    +
    Violation Line
    Unnecessary use of fully qualified name 'java.security.MessageDigest.getInstance' due to existing import 'java.security.MessageDigest' 60
    -

    de/juplo/plugins/hibernate/SimpleConnectionProvider.java

    +

    de/juplo/plugins/hibernate/SimpleConnectionProvider.java

    + @@ -481,20 +519,7 @@ -
    Violation Line
    163
    Unnecessary use of fully qualified name 'java.util.Properties' due to existing import 'java.util.Properties'165
    -

    de/juplo/plugins/hibernate/HelpMojo.java

    - -Violation -Line - -Useless parentheses. -241 - -Useless parentheses. -286 - -Useless parentheses. -296
    +165

    Page Structure as JSON

    @@ -521,9 +546,12 @@ "/hibernate-maven-plugin/pmd.html": "PMD", "/hibernate-maven-plugin/plugin-info.html": "Plugin Documentation", "/hibernate-maven-plugin/project-reports.html": "Project Reports", + "/hibernate-maven-plugin/index.html?about": "Overview", "/hibernate-maven-plugin/configuration.html": "Configuration Examples", - "/hibernate-maven-plugin/create-mojo.html": "Goal: CREATE", - "/hibernate-maven-plugin/drop-mojo.html": "Goal: DROP", + "/hibernate-maven-plugin/create-mojo.html": "Goal — hibernate:create", + "/hibernate-maven-plugin/update-mojo.html": "Goal — hibernate:update", + "/hibernate-maven-plugin/drop-mojo.html": "Goal — hibernate:drop", + "/hibernate-maven-plugin/help-mojo.html": "Goal — hibernate:help", "/hibernate-maven-plugin/debugging.html": "Enable Debugging-Output", "/hibernate-maven-plugin/skip.html": "Skipping Execution", "/hibernate-maven-plugin/force.html": "Force Exceution", @@ -531,9 +559,12 @@ }, "_childs": { "/hibernate-maven-plugin/index.html": [ + "/hibernate-maven-plugin/index.html?about", "/hibernate-maven-plugin/configuration.html", "/hibernate-maven-plugin/create-mojo.html", + "/hibernate-maven-plugin/update-mojo.html", "/hibernate-maven-plugin/drop-mojo.html", + "/hibernate-maven-plugin/help-mojo.html", "/hibernate-maven-plugin/debugging.html", "/hibernate-maven-plugin/skip.html", "/hibernate-maven-plugin/force.html", @@ -680,6 +711,11 @@ "/hibernate-maven-plugin/index.html", "/hibernate-maven-plugin/project-reports.html" ], + "/hibernate-maven-plugin/index.html?about": [ + "/index.html","/projects.html", + "/hibernate-maven-plugin/index.html", + "/hibernate-maven-plugin/index.html?about" + ], "/hibernate-maven-plugin/configuration.html": [ "/index.html","/projects.html", "/hibernate-maven-plugin/index.html", @@ -690,11 +726,21 @@ "/hibernate-maven-plugin/index.html", "/hibernate-maven-plugin/create-mojo.html" ], + "/hibernate-maven-plugin/update-mojo.html": [ + "/index.html","/projects.html", + "/hibernate-maven-plugin/index.html", + "/hibernate-maven-plugin/update-mojo.html" + ], "/hibernate-maven-plugin/drop-mojo.html": [ "/index.html","/projects.html", "/hibernate-maven-plugin/index.html", "/hibernate-maven-plugin/drop-mojo.html" ], + "/hibernate-maven-plugin/help-mojo.html": [ + "/index.html","/projects.html", + "/hibernate-maven-plugin/index.html", + "/hibernate-maven-plugin/help-mojo.html" + ], "/hibernate-maven-plugin/debugging.html": [ "/index.html","/projects.html", "/hibernate-maven-plugin/index.html", @@ -737,9 +783,12 @@ "/hibernate-maven-plugin/pmd.html": "/hibernate-maven-plugin/pmd.html", "/hibernate-maven-plugin/plugin-info.html": "/hibernate-maven-plugin/plugin-info.html", "/hibernate-maven-plugin/project-reports.html": "/hibernate-maven-plugin/project-reports.html", + "/hibernate-maven-plugin/index.html?about": "/hibernate-maven-plugin/index.html?about", "/hibernate-maven-plugin/configuration.html": "/hibernate-maven-plugin/configuration.html", "/hibernate-maven-plugin/create-mojo.html": "/hibernate-maven-plugin/create-mojo.html", + "/hibernate-maven-plugin/update-mojo.html": "/hibernate-maven-plugin/update-mojo.html", "/hibernate-maven-plugin/drop-mojo.html": "/hibernate-maven-plugin/drop-mojo.html", + "/hibernate-maven-plugin/help-mojo.html": "/hibernate-maven-plugin/help-mojo.html", "/hibernate-maven-plugin/debugging.html": "/hibernate-maven-plugin/debugging.html", "/hibernate-maven-plugin/skip.html": "/hibernate-maven-plugin/skip.html", "/hibernate-maven-plugin/force.html": "/hibernate-maven-plugin/force.html", @@ -750,7 +799,7 @@

    All Pages

    +
  • Hibernate Maven Plugin
  • CI Management
  • Dependencies
  • Maven Coordinates
  • Distribution Management
  • Licenses
  • Plugin Management
  • Plugins
  • Source Code Management
  • Summary
  • Team
  • Project Information
  • Test JavaDocs
  • JavaDocs
  • Source Xref
  • Test Source Xref
  • CPD
  • PMD
  • Plugin Documentation
  • Project Reports
  • Overview
  • Configuration Examples
  • Goal — hibernate:create
  • Goal — hibernate:update
  • Goal — hibernate:drop
  • Goal — hibernate:help
  • Enable Debugging-Output
  • Skipping Execution
  • Force Exceution
  • Known Pitfalls (FAQ)
  • diff --git a/hibernate-maven-plugin/project-info.html b/hibernate-maven-plugin/project-info.html index 82891cb4..8ceb62f7 100644 --- a/hibernate-maven-plugin/project-info.html +++ b/hibernate-maven-plugin/project-info.html @@ -1,6 +1,6 @@ - + @@ -8,7 +8,7 @@ - + @@ -264,19 +264,28 @@ - + - + - - + + + + + + + + + + + @@ -298,7 +307,7 @@ - + @@ -311,7 +320,33 @@ - + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -400,18 +435,18 @@ - + - + - Project Information – Hibernate Maven Plugin + Hibernate Maven Plugin – Project Information @@ -431,10 +466,10 @@
    -

    Project Information

    -

    This document provides an overview of the various documents and links that are part of this project's general information. All of this content is automatically generated by Maven on behalf of the project.

    -

    Overview

    - +

    Project Information

    +

    This document provides an overview of the various documents and links that are part of this project's general information. All of this content is automatically generated by Maven on behalf of the project.

    +

    Overview

    +
    @@ -497,9 +532,12 @@ "/hibernate-maven-plugin/pmd.html": "PMD", "/hibernate-maven-plugin/plugin-info.html": "Plugin Documentation", "/hibernate-maven-plugin/project-reports.html": "Project Reports", + "/hibernate-maven-plugin/index.html?about": "Overview", "/hibernate-maven-plugin/configuration.html": "Configuration Examples", - "/hibernate-maven-plugin/create-mojo.html": "Goal: CREATE", - "/hibernate-maven-plugin/drop-mojo.html": "Goal: DROP", + "/hibernate-maven-plugin/create-mojo.html": "Goal — hibernate:create", + "/hibernate-maven-plugin/update-mojo.html": "Goal — hibernate:update", + "/hibernate-maven-plugin/drop-mojo.html": "Goal — hibernate:drop", + "/hibernate-maven-plugin/help-mojo.html": "Goal — hibernate:help", "/hibernate-maven-plugin/debugging.html": "Enable Debugging-Output", "/hibernate-maven-plugin/skip.html": "Skipping Execution", "/hibernate-maven-plugin/force.html": "Force Exceution", @@ -507,9 +545,12 @@ }, "_childs": { "/hibernate-maven-plugin/index.html": [ + "/hibernate-maven-plugin/index.html?about", "/hibernate-maven-plugin/configuration.html", "/hibernate-maven-plugin/create-mojo.html", + "/hibernate-maven-plugin/update-mojo.html", "/hibernate-maven-plugin/drop-mojo.html", + "/hibernate-maven-plugin/help-mojo.html", "/hibernate-maven-plugin/debugging.html", "/hibernate-maven-plugin/skip.html", "/hibernate-maven-plugin/force.html", @@ -656,6 +697,11 @@ "/hibernate-maven-plugin/index.html", "/hibernate-maven-plugin/project-reports.html" ], + "/hibernate-maven-plugin/index.html?about": [ + "/index.html","/projects.html", + "/hibernate-maven-plugin/index.html", + "/hibernate-maven-plugin/index.html?about" + ], "/hibernate-maven-plugin/configuration.html": [ "/index.html","/projects.html", "/hibernate-maven-plugin/index.html", @@ -666,11 +712,21 @@ "/hibernate-maven-plugin/index.html", "/hibernate-maven-plugin/create-mojo.html" ], + "/hibernate-maven-plugin/update-mojo.html": [ + "/index.html","/projects.html", + "/hibernate-maven-plugin/index.html", + "/hibernate-maven-plugin/update-mojo.html" + ], "/hibernate-maven-plugin/drop-mojo.html": [ "/index.html","/projects.html", "/hibernate-maven-plugin/index.html", "/hibernate-maven-plugin/drop-mojo.html" ], + "/hibernate-maven-plugin/help-mojo.html": [ + "/index.html","/projects.html", + "/hibernate-maven-plugin/index.html", + "/hibernate-maven-plugin/help-mojo.html" + ], "/hibernate-maven-plugin/debugging.html": [ "/index.html","/projects.html", "/hibernate-maven-plugin/index.html", @@ -713,9 +769,12 @@ "/hibernate-maven-plugin/pmd.html": "/hibernate-maven-plugin/pmd.html", "/hibernate-maven-plugin/plugin-info.html": "/hibernate-maven-plugin/plugin-info.html", "/hibernate-maven-plugin/project-reports.html": "/hibernate-maven-plugin/project-reports.html", + "/hibernate-maven-plugin/index.html?about": "/hibernate-maven-plugin/index.html?about", "/hibernate-maven-plugin/configuration.html": "/hibernate-maven-plugin/configuration.html", "/hibernate-maven-plugin/create-mojo.html": "/hibernate-maven-plugin/create-mojo.html", + "/hibernate-maven-plugin/update-mojo.html": "/hibernate-maven-plugin/update-mojo.html", "/hibernate-maven-plugin/drop-mojo.html": "/hibernate-maven-plugin/drop-mojo.html", + "/hibernate-maven-plugin/help-mojo.html": "/hibernate-maven-plugin/help-mojo.html", "/hibernate-maven-plugin/debugging.html": "/hibernate-maven-plugin/debugging.html", "/hibernate-maven-plugin/skip.html": "/hibernate-maven-plugin/skip.html", "/hibernate-maven-plugin/force.html": "/hibernate-maven-plugin/force.html", @@ -726,7 +785,7 @@

    All Pages

    +
  • Hibernate Maven Plugin
  • CI Management
  • Dependencies
  • Maven Coordinates
  • Distribution Management
  • Licenses
  • Plugin Management
  • Plugins
  • Source Code Management
  • Summary
  • Team
  • Project Information
  • Test JavaDocs
  • JavaDocs
  • Source Xref
  • Test Source Xref
  • CPD
  • PMD
  • Plugin Documentation
  • Project Reports
  • Overview
  • Configuration Examples
  • Goal — hibernate:create
  • Goal — hibernate:update
  • Goal — hibernate:drop
  • Goal — hibernate:help
  • Enable Debugging-Output
  • Skipping Execution
  • Force Exceution
  • Known Pitfalls (FAQ)
  • diff --git a/hibernate-maven-plugin/project-reports.html b/hibernate-maven-plugin/project-reports.html index 961aa747..00b5e7ef 100644 --- a/hibernate-maven-plugin/project-reports.html +++ b/hibernate-maven-plugin/project-reports.html @@ -1,6 +1,6 @@ - + @@ -8,7 +8,7 @@ - + @@ -264,19 +264,28 @@ - + - + - - + + + + + + + + + + + @@ -298,7 +307,7 @@ - + @@ -311,7 +320,33 @@ - + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -400,18 +435,18 @@ - + - + - Generated Reports – Hibernate Maven Plugin + Hibernate Maven Plugin – Generated Reports @@ -431,10 +466,10 @@
    -

    Generated Reports

    -

    This document provides an overview of the various reports that are automatically generated by Maven . Each report is briefly described below.

    -

    Overview

    -
    Document Description
    +

    Generated Reports

    +

    This document provides an overview of the various reports that are automatically generated by Maven . Each report is briefly described below.

    +

    Overview

    +
    @@ -485,9 +520,12 @@ "/hibernate-maven-plugin/pmd.html": "PMD", "/hibernate-maven-plugin/plugin-info.html": "Plugin Documentation", "/hibernate-maven-plugin/project-reports.html": "Project Reports", + "/hibernate-maven-plugin/index.html?about": "Overview", "/hibernate-maven-plugin/configuration.html": "Configuration Examples", - "/hibernate-maven-plugin/create-mojo.html": "Goal: CREATE", - "/hibernate-maven-plugin/drop-mojo.html": "Goal: DROP", + "/hibernate-maven-plugin/create-mojo.html": "Goal — hibernate:create", + "/hibernate-maven-plugin/update-mojo.html": "Goal — hibernate:update", + "/hibernate-maven-plugin/drop-mojo.html": "Goal — hibernate:drop", + "/hibernate-maven-plugin/help-mojo.html": "Goal — hibernate:help", "/hibernate-maven-plugin/debugging.html": "Enable Debugging-Output", "/hibernate-maven-plugin/skip.html": "Skipping Execution", "/hibernate-maven-plugin/force.html": "Force Exceution", @@ -495,9 +533,12 @@ }, "_childs": { "/hibernate-maven-plugin/index.html": [ + "/hibernate-maven-plugin/index.html?about", "/hibernate-maven-plugin/configuration.html", "/hibernate-maven-plugin/create-mojo.html", + "/hibernate-maven-plugin/update-mojo.html", "/hibernate-maven-plugin/drop-mojo.html", + "/hibernate-maven-plugin/help-mojo.html", "/hibernate-maven-plugin/debugging.html", "/hibernate-maven-plugin/skip.html", "/hibernate-maven-plugin/force.html", @@ -644,6 +685,11 @@ "/hibernate-maven-plugin/index.html", "/hibernate-maven-plugin/project-reports.html" ], + "/hibernate-maven-plugin/index.html?about": [ + "/index.html","/projects.html", + "/hibernate-maven-plugin/index.html", + "/hibernate-maven-plugin/index.html?about" + ], "/hibernate-maven-plugin/configuration.html": [ "/index.html","/projects.html", "/hibernate-maven-plugin/index.html", @@ -654,11 +700,21 @@ "/hibernate-maven-plugin/index.html", "/hibernate-maven-plugin/create-mojo.html" ], + "/hibernate-maven-plugin/update-mojo.html": [ + "/index.html","/projects.html", + "/hibernate-maven-plugin/index.html", + "/hibernate-maven-plugin/update-mojo.html" + ], "/hibernate-maven-plugin/drop-mojo.html": [ "/index.html","/projects.html", "/hibernate-maven-plugin/index.html", "/hibernate-maven-plugin/drop-mojo.html" ], + "/hibernate-maven-plugin/help-mojo.html": [ + "/index.html","/projects.html", + "/hibernate-maven-plugin/index.html", + "/hibernate-maven-plugin/help-mojo.html" + ], "/hibernate-maven-plugin/debugging.html": [ "/index.html","/projects.html", "/hibernate-maven-plugin/index.html", @@ -701,9 +757,12 @@ "/hibernate-maven-plugin/pmd.html": "/hibernate-maven-plugin/pmd.html", "/hibernate-maven-plugin/plugin-info.html": "/hibernate-maven-plugin/plugin-info.html", "/hibernate-maven-plugin/project-reports.html": "/hibernate-maven-plugin/project-reports.html", + "/hibernate-maven-plugin/index.html?about": "/hibernate-maven-plugin/index.html?about", "/hibernate-maven-plugin/configuration.html": "/hibernate-maven-plugin/configuration.html", "/hibernate-maven-plugin/create-mojo.html": "/hibernate-maven-plugin/create-mojo.html", + "/hibernate-maven-plugin/update-mojo.html": "/hibernate-maven-plugin/update-mojo.html", "/hibernate-maven-plugin/drop-mojo.html": "/hibernate-maven-plugin/drop-mojo.html", + "/hibernate-maven-plugin/help-mojo.html": "/hibernate-maven-plugin/help-mojo.html", "/hibernate-maven-plugin/debugging.html": "/hibernate-maven-plugin/debugging.html", "/hibernate-maven-plugin/skip.html": "/hibernate-maven-plugin/skip.html", "/hibernate-maven-plugin/force.html": "/hibernate-maven-plugin/force.html", @@ -714,7 +773,7 @@

    All Pages

    +
  • Hibernate Maven Plugin
  • CI Management
  • Dependencies
  • Maven Coordinates
  • Distribution Management
  • Licenses
  • Plugin Management
  • Plugins
  • Source Code Management
  • Summary
  • Team
  • Project Information
  • Test JavaDocs
  • JavaDocs
  • Source Xref
  • Test Source Xref
  • CPD
  • PMD
  • Plugin Documentation
  • Project Reports
  • Overview
  • Configuration Examples
  • Goal — hibernate:create
  • Goal — hibernate:update
  • Goal — hibernate:drop
  • Goal — hibernate:help
  • Enable Debugging-Output
  • Skipping Execution
  • Force Exceution
  • Known Pitfalls (FAQ)
  • diff --git a/hibernate-maven-plugin/scm.html b/hibernate-maven-plugin/scm.html index daeec52d..8861b686 100644 --- a/hibernate-maven-plugin/scm.html +++ b/hibernate-maven-plugin/scm.html @@ -1,6 +1,6 @@ - + @@ -8,7 +8,7 @@ - + @@ -264,19 +264,28 @@ - + - + - - + + + + + + + + + + + @@ -298,7 +307,7 @@ - + @@ -311,7 +320,33 @@ - + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -400,18 +435,18 @@ - + - + - Source Code Management – Hibernate Maven Plugin + Hibernate Maven Plugin – Source Code Management @@ -430,20 +465,11 @@


    -
    -

    Overview

    -

    This project uses Git to manage its source code. Instructions on Git use can be found at https://git-scm.com/doc.

    -

    Web Browser Access

    +
    +

    Overview

    +

    This project uses Git to manage its source code. Instructions on Git use can be found at https://git-scm.com/doc.

    +

    Web Browser Access

    The following is a link to a browsable version of the source repository:

    -
    http://juplo.de/gitweb/?p=hibernate-maven-plugin;a=summary
    -

    Anonymous Access

    -

    The source can be checked out anonymously from Git with this command (See https://git-scm.com/docs/git-clone):

    -
    $ git clone http://juplo.de/git/hibernate-maven-plugin
    -

    Developer Access

    -

    Only project developers can access the Git tree via this method (See https://git-scm.com/docs/git-clone).

    -
    $ git clone ssh://juplo.de/var/lib/git/juplo/hibernate-maven-plugin
    -

    Access from Behind a Firewall

    -

    Refer to the documentation of the SCM used for more information about access behind a firewall.


    Page Structure as JSON

    @@ -470,9 +496,12 @@ "/hibernate-maven-plugin/pmd.html": "PMD", "/hibernate-maven-plugin/plugin-info.html": "Plugin Documentation", "/hibernate-maven-plugin/project-reports.html": "Project Reports", + "/hibernate-maven-plugin/index.html?about": "Overview", "/hibernate-maven-plugin/configuration.html": "Configuration Examples", - "/hibernate-maven-plugin/create-mojo.html": "Goal: CREATE", - "/hibernate-maven-plugin/drop-mojo.html": "Goal: DROP", + "/hibernate-maven-plugin/create-mojo.html": "Goal — hibernate:create", + "/hibernate-maven-plugin/update-mojo.html": "Goal — hibernate:update", + "/hibernate-maven-plugin/drop-mojo.html": "Goal — hibernate:drop", + "/hibernate-maven-plugin/help-mojo.html": "Goal — hibernate:help", "/hibernate-maven-plugin/debugging.html": "Enable Debugging-Output", "/hibernate-maven-plugin/skip.html": "Skipping Execution", "/hibernate-maven-plugin/force.html": "Force Exceution", @@ -480,9 +509,12 @@ }, "_childs": { "/hibernate-maven-plugin/index.html": [ + "/hibernate-maven-plugin/index.html?about", "/hibernate-maven-plugin/configuration.html", "/hibernate-maven-plugin/create-mojo.html", + "/hibernate-maven-plugin/update-mojo.html", "/hibernate-maven-plugin/drop-mojo.html", + "/hibernate-maven-plugin/help-mojo.html", "/hibernate-maven-plugin/debugging.html", "/hibernate-maven-plugin/skip.html", "/hibernate-maven-plugin/force.html", @@ -629,6 +661,11 @@ "/hibernate-maven-plugin/index.html", "/hibernate-maven-plugin/project-reports.html" ], + "/hibernate-maven-plugin/index.html?about": [ + "/index.html","/projects.html", + "/hibernate-maven-plugin/index.html", + "/hibernate-maven-plugin/index.html?about" + ], "/hibernate-maven-plugin/configuration.html": [ "/index.html","/projects.html", "/hibernate-maven-plugin/index.html", @@ -639,11 +676,21 @@ "/hibernate-maven-plugin/index.html", "/hibernate-maven-plugin/create-mojo.html" ], + "/hibernate-maven-plugin/update-mojo.html": [ + "/index.html","/projects.html", + "/hibernate-maven-plugin/index.html", + "/hibernate-maven-plugin/update-mojo.html" + ], "/hibernate-maven-plugin/drop-mojo.html": [ "/index.html","/projects.html", "/hibernate-maven-plugin/index.html", "/hibernate-maven-plugin/drop-mojo.html" ], + "/hibernate-maven-plugin/help-mojo.html": [ + "/index.html","/projects.html", + "/hibernate-maven-plugin/index.html", + "/hibernate-maven-plugin/help-mojo.html" + ], "/hibernate-maven-plugin/debugging.html": [ "/index.html","/projects.html", "/hibernate-maven-plugin/index.html", @@ -686,9 +733,12 @@ "/hibernate-maven-plugin/pmd.html": "/hibernate-maven-plugin/pmd.html", "/hibernate-maven-plugin/plugin-info.html": "/hibernate-maven-plugin/plugin-info.html", "/hibernate-maven-plugin/project-reports.html": "/hibernate-maven-plugin/project-reports.html", + "/hibernate-maven-plugin/index.html?about": "/hibernate-maven-plugin/index.html?about", "/hibernate-maven-plugin/configuration.html": "/hibernate-maven-plugin/configuration.html", "/hibernate-maven-plugin/create-mojo.html": "/hibernate-maven-plugin/create-mojo.html", + "/hibernate-maven-plugin/update-mojo.html": "/hibernate-maven-plugin/update-mojo.html", "/hibernate-maven-plugin/drop-mojo.html": "/hibernate-maven-plugin/drop-mojo.html", + "/hibernate-maven-plugin/help-mojo.html": "/hibernate-maven-plugin/help-mojo.html", "/hibernate-maven-plugin/debugging.html": "/hibernate-maven-plugin/debugging.html", "/hibernate-maven-plugin/skip.html": "/hibernate-maven-plugin/skip.html", "/hibernate-maven-plugin/force.html": "/hibernate-maven-plugin/force.html", @@ -699,7 +749,7 @@

    All Pages

    +
  • Hibernate Maven Plugin
  • CI Management
  • Dependencies
  • Maven Coordinates
  • Distribution Management
  • Licenses
  • Plugin Management
  • Plugins
  • Source Code Management
  • Summary
  • Team
  • Project Information
  • Test JavaDocs
  • JavaDocs
  • Source Xref
  • Test Source Xref
  • CPD
  • PMD
  • Plugin Documentation
  • Project Reports
  • Overview
  • Configuration Examples
  • Goal — hibernate:create
  • Goal — hibernate:update
  • Goal — hibernate:drop
  • Goal — hibernate:help
  • Enable Debugging-Output
  • Skipping Execution
  • Force Exceution
  • Known Pitfalls (FAQ)
  • diff --git a/hibernate-maven-plugin/skip.html b/hibernate-maven-plugin/skip.html index 0b057f4c..5b43e0b6 100644 --- a/hibernate-maven-plugin/skip.html +++ b/hibernate-maven-plugin/skip.html @@ -1,6 +1,6 @@ - + @@ -8,7 +8,7 @@ - + @@ -264,19 +264,28 @@ - + - + - - + + + + + + + + + + + @@ -298,7 +307,7 @@ - + @@ -311,7 +320,33 @@ - + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -400,23 +435,23 @@ - - + + - + - Hibernate Maven Plugin + Hibernate Maven Plugin – -

    $shortTitle

    +

    URI

    • site: /hibernate-maven-plugin/skip.html
    • @@ -433,8 +468,8 @@ -
      -

      Skipping Execution

      + +

      Skipping Execution

      In most use-cases, the hibernate-maven-plugin is used to create a @@ -444,7 +479,7 @@ For example, one might manually overwrite the database-url with the url of the production-database, in order to run other tests, like starting a local webserver with the - jetty-maven-plugin. + jetty-maven-plugin. If the drop-goal would be executed in such a scenario, it might erase the hole production-database, which is not very desireable.

      @@ -462,6 +497,7 @@ by setting the configuration-parameter skip to false:

      +
       <plugin>
         <groupId>de.juplo</groupId>
      @@ -470,7 +506,7 @@
         <configuration>
           <skip>false</skip>
         </configuration>
      -</plugin>
      +</plugin>

      Or, if you want the plugin to be executed by default and to be skipped @@ -478,6 +514,7 @@ skip to a custom property. For example:

      +
       <plugin>
         <groupId>de.juplo</groupId>
      @@ -486,14 +523,14 @@
         <configuration>
           <skip>${foo.bar}</skip>
         </configuration>
      -</plugin>
      +</plugin>

      This way, the plugin would be skipped, if you set the property foo.bar to true. For example, if you specify -Dfoo.bar=true on the command-line.

      - +
      @@ -521,9 +558,12 @@ "/hibernate-maven-plugin/pmd.html": "PMD", "/hibernate-maven-plugin/plugin-info.html": "Plugin Documentation", "/hibernate-maven-plugin/project-reports.html": "Project Reports", + "/hibernate-maven-plugin/index.html?about": "Overview", "/hibernate-maven-plugin/configuration.html": "Configuration Examples", - "/hibernate-maven-plugin/create-mojo.html": "Goal: CREATE", - "/hibernate-maven-plugin/drop-mojo.html": "Goal: DROP", + "/hibernate-maven-plugin/create-mojo.html": "Goal — hibernate:create", + "/hibernate-maven-plugin/update-mojo.html": "Goal — hibernate:update", + "/hibernate-maven-plugin/drop-mojo.html": "Goal — hibernate:drop", + "/hibernate-maven-plugin/help-mojo.html": "Goal — hibernate:help", "/hibernate-maven-plugin/debugging.html": "Enable Debugging-Output", "/hibernate-maven-plugin/skip.html": "Skipping Execution", "/hibernate-maven-plugin/force.html": "Force Exceution", @@ -531,9 +571,12 @@ }, "_childs": { "/hibernate-maven-plugin/index.html": [ + "/hibernate-maven-plugin/index.html?about", "/hibernate-maven-plugin/configuration.html", "/hibernate-maven-plugin/create-mojo.html", + "/hibernate-maven-plugin/update-mojo.html", "/hibernate-maven-plugin/drop-mojo.html", + "/hibernate-maven-plugin/help-mojo.html", "/hibernate-maven-plugin/debugging.html", "/hibernate-maven-plugin/skip.html", "/hibernate-maven-plugin/force.html", @@ -680,6 +723,11 @@ "/hibernate-maven-plugin/index.html", "/hibernate-maven-plugin/project-reports.html" ], + "/hibernate-maven-plugin/index.html?about": [ + "/index.html","/projects.html", + "/hibernate-maven-plugin/index.html", + "/hibernate-maven-plugin/index.html?about" + ], "/hibernate-maven-plugin/configuration.html": [ "/index.html","/projects.html", "/hibernate-maven-plugin/index.html", @@ -690,11 +738,21 @@ "/hibernate-maven-plugin/index.html", "/hibernate-maven-plugin/create-mojo.html" ], + "/hibernate-maven-plugin/update-mojo.html": [ + "/index.html","/projects.html", + "/hibernate-maven-plugin/index.html", + "/hibernate-maven-plugin/update-mojo.html" + ], "/hibernate-maven-plugin/drop-mojo.html": [ "/index.html","/projects.html", "/hibernate-maven-plugin/index.html", "/hibernate-maven-plugin/drop-mojo.html" ], + "/hibernate-maven-plugin/help-mojo.html": [ + "/index.html","/projects.html", + "/hibernate-maven-plugin/index.html", + "/hibernate-maven-plugin/help-mojo.html" + ], "/hibernate-maven-plugin/debugging.html": [ "/index.html","/projects.html", "/hibernate-maven-plugin/index.html", @@ -737,9 +795,12 @@ "/hibernate-maven-plugin/pmd.html": "/hibernate-maven-plugin/pmd.html", "/hibernate-maven-plugin/plugin-info.html": "/hibernate-maven-plugin/plugin-info.html", "/hibernate-maven-plugin/project-reports.html": "/hibernate-maven-plugin/project-reports.html", + "/hibernate-maven-plugin/index.html?about": "/hibernate-maven-plugin/index.html?about", "/hibernate-maven-plugin/configuration.html": "/hibernate-maven-plugin/configuration.html", "/hibernate-maven-plugin/create-mojo.html": "/hibernate-maven-plugin/create-mojo.html", + "/hibernate-maven-plugin/update-mojo.html": "/hibernate-maven-plugin/update-mojo.html", "/hibernate-maven-plugin/drop-mojo.html": "/hibernate-maven-plugin/drop-mojo.html", + "/hibernate-maven-plugin/help-mojo.html": "/hibernate-maven-plugin/help-mojo.html", "/hibernate-maven-plugin/debugging.html": "/hibernate-maven-plugin/debugging.html", "/hibernate-maven-plugin/skip.html": "/hibernate-maven-plugin/skip.html", "/hibernate-maven-plugin/force.html": "/hibernate-maven-plugin/force.html", @@ -750,7 +811,7 @@

      All Pages

      +
    • Hibernate Maven Plugin
    • CI Management
    • Dependencies
    • Maven Coordinates
    • Distribution Management
    • Licenses
    • Plugin Management
    • Plugins
    • Source Code Management
    • Summary
    • Team
    • Project Information
    • Test JavaDocs
    • JavaDocs
    • Source Xref
    • Test Source Xref
    • CPD
    • PMD
    • Plugin Documentation
    • Project Reports
    • Overview
    • Configuration Examples
    • Goal — hibernate:create
    • Goal — hibernate:update
    • Goal — hibernate:drop
    • Goal — hibernate:help
    • Enable Debugging-Output
    • Skipping Execution
    • Force Exceution
    • Known Pitfalls (FAQ)

    diff --git a/hibernate-maven-plugin/summary.html b/hibernate-maven-plugin/summary.html index a9ff2eca..9c48baf2 100644 --- a/hibernate-maven-plugin/summary.html +++ b/hibernate-maven-plugin/summary.html @@ -1,6 +1,6 @@ - + @@ -8,7 +8,7 @@ - + @@ -264,19 +264,28 @@ - + - + - - + + + + + + + + + + + @@ -298,7 +307,7 @@ - + @@ -311,7 +320,33 @@ - + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -400,18 +435,18 @@ - + - + - Project Summary – Hibernate Maven Plugin + Hibernate Maven Plugin – Project Summary @@ -430,10 +465,10 @@


    -
    -

    Project Summary

    -

    Project Information

    -
    Document Description
    +
    +

    Project Summary

    +

    Project Information

    +
    @@ -445,11 +480,11 @@ -
    Field Value
    A simple plugin for generating a database-schema from Hibernate-Mappings
    Homepagehttps://juplo.de/hibernate-maven-plugin/index.html
    -

    Project Organization

    -

    This project does not belong to an organization.

    -

    Build Information

    - +
    https://juplo.de/hibernate-maven-plugin/index.html
    +

    Project Organization

    +

    This project does not belong to an organization.

    +

    Build Information

    + @@ -494,9 +529,12 @@ "/hibernate-maven-plugin/pmd.html": "PMD", "/hibernate-maven-plugin/plugin-info.html": "Plugin Documentation", "/hibernate-maven-plugin/project-reports.html": "Project Reports", + "/hibernate-maven-plugin/index.html?about": "Overview", "/hibernate-maven-plugin/configuration.html": "Configuration Examples", - "/hibernate-maven-plugin/create-mojo.html": "Goal: CREATE", - "/hibernate-maven-plugin/drop-mojo.html": "Goal: DROP", + "/hibernate-maven-plugin/create-mojo.html": "Goal — hibernate:create", + "/hibernate-maven-plugin/update-mojo.html": "Goal — hibernate:update", + "/hibernate-maven-plugin/drop-mojo.html": "Goal — hibernate:drop", + "/hibernate-maven-plugin/help-mojo.html": "Goal — hibernate:help", "/hibernate-maven-plugin/debugging.html": "Enable Debugging-Output", "/hibernate-maven-plugin/skip.html": "Skipping Execution", "/hibernate-maven-plugin/force.html": "Force Exceution", @@ -504,9 +542,12 @@ }, "_childs": { "/hibernate-maven-plugin/index.html": [ + "/hibernate-maven-plugin/index.html?about", "/hibernate-maven-plugin/configuration.html", "/hibernate-maven-plugin/create-mojo.html", + "/hibernate-maven-plugin/update-mojo.html", "/hibernate-maven-plugin/drop-mojo.html", + "/hibernate-maven-plugin/help-mojo.html", "/hibernate-maven-plugin/debugging.html", "/hibernate-maven-plugin/skip.html", "/hibernate-maven-plugin/force.html", @@ -653,6 +694,11 @@ "/hibernate-maven-plugin/index.html", "/hibernate-maven-plugin/project-reports.html" ], + "/hibernate-maven-plugin/index.html?about": [ + "/index.html","/projects.html", + "/hibernate-maven-plugin/index.html", + "/hibernate-maven-plugin/index.html?about" + ], "/hibernate-maven-plugin/configuration.html": [ "/index.html","/projects.html", "/hibernate-maven-plugin/index.html", @@ -663,11 +709,21 @@ "/hibernate-maven-plugin/index.html", "/hibernate-maven-plugin/create-mojo.html" ], + "/hibernate-maven-plugin/update-mojo.html": [ + "/index.html","/projects.html", + "/hibernate-maven-plugin/index.html", + "/hibernate-maven-plugin/update-mojo.html" + ], "/hibernate-maven-plugin/drop-mojo.html": [ "/index.html","/projects.html", "/hibernate-maven-plugin/index.html", "/hibernate-maven-plugin/drop-mojo.html" ], + "/hibernate-maven-plugin/help-mojo.html": [ + "/index.html","/projects.html", + "/hibernate-maven-plugin/index.html", + "/hibernate-maven-plugin/help-mojo.html" + ], "/hibernate-maven-plugin/debugging.html": [ "/index.html","/projects.html", "/hibernate-maven-plugin/index.html", @@ -710,9 +766,12 @@ "/hibernate-maven-plugin/pmd.html": "/hibernate-maven-plugin/pmd.html", "/hibernate-maven-plugin/plugin-info.html": "/hibernate-maven-plugin/plugin-info.html", "/hibernate-maven-plugin/project-reports.html": "/hibernate-maven-plugin/project-reports.html", + "/hibernate-maven-plugin/index.html?about": "/hibernate-maven-plugin/index.html?about", "/hibernate-maven-plugin/configuration.html": "/hibernate-maven-plugin/configuration.html", "/hibernate-maven-plugin/create-mojo.html": "/hibernate-maven-plugin/create-mojo.html", + "/hibernate-maven-plugin/update-mojo.html": "/hibernate-maven-plugin/update-mojo.html", "/hibernate-maven-plugin/drop-mojo.html": "/hibernate-maven-plugin/drop-mojo.html", + "/hibernate-maven-plugin/help-mojo.html": "/hibernate-maven-plugin/help-mojo.html", "/hibernate-maven-plugin/debugging.html": "/hibernate-maven-plugin/debugging.html", "/hibernate-maven-plugin/skip.html": "/hibernate-maven-plugin/skip.html", "/hibernate-maven-plugin/force.html": "/hibernate-maven-plugin/force.html", @@ -723,7 +782,7 @@

    All Pages

    +
  • Hibernate Maven Plugin
  • CI Management
  • Dependencies
  • Maven Coordinates
  • Distribution Management
  • Licenses
  • Plugin Management
  • Plugins
  • Source Code Management
  • Summary
  • Team
  • Project Information
  • Test JavaDocs
  • JavaDocs
  • Source Xref
  • Test Source Xref
  • CPD
  • PMD
  • Plugin Documentation
  • Project Reports
  • Overview
  • Configuration Examples
  • Goal — hibernate:create
  • Goal — hibernate:update
  • Goal — hibernate:drop
  • Goal — hibernate:help
  • Enable Debugging-Output
  • Skipping Execution
  • Force Exceution
  • Known Pitfalls (FAQ)
  • diff --git a/hibernate-maven-plugin/team.html b/hibernate-maven-plugin/team.html index c548dd36..45486a3d 100644 --- a/hibernate-maven-plugin/team.html +++ b/hibernate-maven-plugin/team.html @@ -1,6 +1,6 @@ - + @@ -8,7 +8,7 @@ - + @@ -264,19 +264,28 @@ - + - + - - + + + + + + + + + + + @@ -298,7 +307,7 @@ - + @@ -311,7 +320,33 @@ - + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -400,18 +435,18 @@ - + - + - Project Team – Hibernate Maven Plugin + Hibernate Maven Plugin – Project Team @@ -430,84 +465,84 @@


    -
    -

    Project Team

    +
    +

    Project Team

    A successful project requires many people to play many roles. Some members write code or documentation, while others are valuable as testers, submitting patches and suggestions.

    -

    The project team is comprised of Members and Contributors. Members have direct access to the source of a project and actively evolve the code-base. Contributors improve the project through submission of patches and suggestions to the Members. The number of Contributors to the project is unbounded. Get involved today. All contributions to the project are greatly appreciated.

    -

    Members

    +

    The project team is comprised of Members and Contributors. Members have direct access to the source of a project and actively evolve the code-base. Contributors improve the project through submission of patches and suggestions to the Members. The number of Contributors to the project is unbounded. Get involved today. All contributions to the project are greatly appreciated.

    +

    Members

    The following is a list of developers with commit privileges that have directly contributed to the project in one way or another.

    -
    Field Value
    +
    - + -
    Image Id Name Email
    kai Kai Moritzkai@juplo.de
    -

    Contributors

    +kai@juplo.de
    +

    Contributors

    The following additional people have contributed to this project through the way of suggestions, patches or documentation.

    - +
    - + - + - + - + - + - + - + - + - + - + - + - + - + - +
    Image Name Email
    Adriano Machado adriano.m.machado@hotmail.com
    Lorenzo Nicora lorenzo.nicora@nicus.it
    Eduard Szente eduard.szente@gmail.com
    Stephen Johnson stejohns@redhat.com
    Victor Tatai vtatai@gmail.com
    Erik-Berndt Scheper erik.berndt.scheper@gmail.com
    Guido Wimmel Wimmel.Guido@swm.de
    Joel Johnson mrjoel@lixil.net
    Paul K. Moore paulkmoore@gmail.com
    Mark Robinson mark@mrobinson.ca
    Claus Graf clausgraf@gmail.com
    Joachim Van der Auwera joachim@progs.be
    Andreas Kuhtz andreas.kuhtz@gmail.com
    Heer Fabio fabio.heer@dvbern.ch
    @@ -536,9 +571,12 @@ "/hibernate-maven-plugin/pmd.html": "PMD", "/hibernate-maven-plugin/plugin-info.html": "Plugin Documentation", "/hibernate-maven-plugin/project-reports.html": "Project Reports", + "/hibernate-maven-plugin/index.html?about": "Overview", "/hibernate-maven-plugin/configuration.html": "Configuration Examples", - "/hibernate-maven-plugin/create-mojo.html": "Goal: CREATE", - "/hibernate-maven-plugin/drop-mojo.html": "Goal: DROP", + "/hibernate-maven-plugin/create-mojo.html": "Goal — hibernate:create", + "/hibernate-maven-plugin/update-mojo.html": "Goal — hibernate:update", + "/hibernate-maven-plugin/drop-mojo.html": "Goal — hibernate:drop", + "/hibernate-maven-plugin/help-mojo.html": "Goal — hibernate:help", "/hibernate-maven-plugin/debugging.html": "Enable Debugging-Output", "/hibernate-maven-plugin/skip.html": "Skipping Execution", "/hibernate-maven-plugin/force.html": "Force Exceution", @@ -546,9 +584,12 @@ }, "_childs": { "/hibernate-maven-plugin/index.html": [ + "/hibernate-maven-plugin/index.html?about", "/hibernate-maven-plugin/configuration.html", "/hibernate-maven-plugin/create-mojo.html", + "/hibernate-maven-plugin/update-mojo.html", "/hibernate-maven-plugin/drop-mojo.html", + "/hibernate-maven-plugin/help-mojo.html", "/hibernate-maven-plugin/debugging.html", "/hibernate-maven-plugin/skip.html", "/hibernate-maven-plugin/force.html", @@ -695,6 +736,11 @@ "/hibernate-maven-plugin/index.html", "/hibernate-maven-plugin/project-reports.html" ], + "/hibernate-maven-plugin/index.html?about": [ + "/index.html","/projects.html", + "/hibernate-maven-plugin/index.html", + "/hibernate-maven-plugin/index.html?about" + ], "/hibernate-maven-plugin/configuration.html": [ "/index.html","/projects.html", "/hibernate-maven-plugin/index.html", @@ -705,11 +751,21 @@ "/hibernate-maven-plugin/index.html", "/hibernate-maven-plugin/create-mojo.html" ], + "/hibernate-maven-plugin/update-mojo.html": [ + "/index.html","/projects.html", + "/hibernate-maven-plugin/index.html", + "/hibernate-maven-plugin/update-mojo.html" + ], "/hibernate-maven-plugin/drop-mojo.html": [ "/index.html","/projects.html", "/hibernate-maven-plugin/index.html", "/hibernate-maven-plugin/drop-mojo.html" ], + "/hibernate-maven-plugin/help-mojo.html": [ + "/index.html","/projects.html", + "/hibernate-maven-plugin/index.html", + "/hibernate-maven-plugin/help-mojo.html" + ], "/hibernate-maven-plugin/debugging.html": [ "/index.html","/projects.html", "/hibernate-maven-plugin/index.html", @@ -752,9 +808,12 @@ "/hibernate-maven-plugin/pmd.html": "/hibernate-maven-plugin/pmd.html", "/hibernate-maven-plugin/plugin-info.html": "/hibernate-maven-plugin/plugin-info.html", "/hibernate-maven-plugin/project-reports.html": "/hibernate-maven-plugin/project-reports.html", + "/hibernate-maven-plugin/index.html?about": "/hibernate-maven-plugin/index.html?about", "/hibernate-maven-plugin/configuration.html": "/hibernate-maven-plugin/configuration.html", "/hibernate-maven-plugin/create-mojo.html": "/hibernate-maven-plugin/create-mojo.html", + "/hibernate-maven-plugin/update-mojo.html": "/hibernate-maven-plugin/update-mojo.html", "/hibernate-maven-plugin/drop-mojo.html": "/hibernate-maven-plugin/drop-mojo.html", + "/hibernate-maven-plugin/help-mojo.html": "/hibernate-maven-plugin/help-mojo.html", "/hibernate-maven-plugin/debugging.html": "/hibernate-maven-plugin/debugging.html", "/hibernate-maven-plugin/skip.html": "/hibernate-maven-plugin/skip.html", "/hibernate-maven-plugin/force.html": "/hibernate-maven-plugin/force.html", @@ -765,7 +824,7 @@

    All Pages

    +
  • Hibernate Maven Plugin
  • CI Management
  • Dependencies
  • Maven Coordinates
  • Distribution Management
  • Licenses
  • Plugin Management
  • Plugins
  • Source Code Management
  • Summary
  • Team
  • Project Information
  • Test JavaDocs
  • JavaDocs
  • Source Xref
  • Test Source Xref
  • CPD
  • PMD
  • Plugin Documentation
  • Project Reports
  • Overview
  • Configuration Examples
  • Goal — hibernate:create
  • Goal — hibernate:update
  • Goal — hibernate:drop
  • Goal — hibernate:help
  • Enable Debugging-Output
  • Skipping Execution
  • Force Exceution
  • Known Pitfalls (FAQ)
  • diff --git a/hibernate-maven-plugin/testapidocs/allclasses-frame.html b/hibernate-maven-plugin/testapidocs/allclasses-frame.html new file mode 100644 index 00000000..5c7f20ca --- /dev/null +++ b/hibernate-maven-plugin/testapidocs/allclasses-frame.html @@ -0,0 +1,20 @@ + + + + + + +All Classes (Hibernate Maven Plugin 2.1.1 Test API) + + + + + +

    All Classes

    + + + diff --git a/hibernate-maven-plugin/testapidocs/allclasses-noframe.html b/hibernate-maven-plugin/testapidocs/allclasses-noframe.html new file mode 100644 index 00000000..d569ee8f --- /dev/null +++ b/hibernate-maven-plugin/testapidocs/allclasses-noframe.html @@ -0,0 +1,20 @@ + + + + + + +All Classes (Hibernate Maven Plugin 2.1.1 Test API) + + + + + +

    All Classes

    + + + diff --git a/hibernate-maven-plugin/testapidocs/constant-values.html b/hibernate-maven-plugin/testapidocs/constant-values.html new file mode 100644 index 00000000..6dfacad0 --- /dev/null +++ b/hibernate-maven-plugin/testapidocs/constant-values.html @@ -0,0 +1,124 @@ + + + + + + +Constant Field Values (Hibernate Maven Plugin 2.1.1 Test API) + + + + + + + + + + + +
    +

    Constant Field Values

    +

    Contents

    +
    + + + + +

    Copyright © 2025. All Rights Reserved.

    + + diff --git a/hibernate-maven-plugin/testapidocs/de/juplo/test/FileComparator.html b/hibernate-maven-plugin/testapidocs/de/juplo/test/FileComparator.html new file mode 100644 index 00000000..a0c5af85 --- /dev/null +++ b/hibernate-maven-plugin/testapidocs/de/juplo/test/FileComparator.html @@ -0,0 +1,280 @@ + + + + + + +FileComparator (Hibernate Maven Plugin 2.1.1 Test API) + + + + + + + + + + + + +
    +
    de.juplo.test
    +

    Class FileComparator

    +
    +
    +
      +
    • java.lang.Object
    • +
    • +
        +
      • de.juplo.test.FileComparator
      • +
      +
    • +
    +
    +
      +
    • +
      +
      +
      public class FileComparator
      +extends java.lang.Object
      +
    • +
    +
    +
    +
      +
    • + +
        +
      • + + +

        Constructor Summary

        + + + + + + + + +
        Constructors 
        Constructor and Description
        FileComparator(java.io.File basedir) 
        +
      • +
      + +
        +
      • + + +

        Method Summary

        + + + + + + + + + + +
        All Methods Instance Methods Concrete Methods 
        Modifier and TypeMethod and Description
        booleanisEqual(java.lang.String expectedFile, + java.lang.String foundFile) 
        +
          +
        • + + +

          Methods inherited from class java.lang.Object

          +clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
        • +
        +
      • +
      +
    • +
    +
    +
    +
      +
    • + +
        +
      • + + +

        Constructor Detail

        + + + +
          +
        • +

          FileComparator

          +
          public FileComparator(java.io.File basedir)
          +
        • +
        +
      • +
      + +
        +
      • + + +

        Method Detail

        + + + +
          +
        • +

          isEqual

          +
          public boolean isEqual(java.lang.String expectedFile,
          +                       java.lang.String foundFile)
          +                throws java.io.FileNotFoundException,
          +                       java.io.IOException
          +
          +
          Throws:
          +
          java.io.FileNotFoundException
          +
          java.io.IOException
          +
          +
        • +
        +
      • +
      +
    • +
    +
    +
    + + + + + +

    Copyright © 2025. All Rights Reserved.

    + + diff --git a/hibernate-maven-plugin/testapidocs/de/juplo/test/class-use/FileComparator.html b/hibernate-maven-plugin/testapidocs/de/juplo/test/class-use/FileComparator.html new file mode 100644 index 00000000..82d8e3ba --- /dev/null +++ b/hibernate-maven-plugin/testapidocs/de/juplo/test/class-use/FileComparator.html @@ -0,0 +1,124 @@ + + + + + + +Uses of Class de.juplo.test.FileComparator (Hibernate Maven Plugin 2.1.1 Test API) + + + + + + + + + + + +
    +

    Uses of Class
    de.juplo.test.FileComparator

    +
    +
    No usage of de.juplo.test.FileComparator
    + + + + +

    Copyright © 2025. All Rights Reserved.

    + + diff --git a/hibernate-maven-plugin/testapidocs/de/juplo/test/package-frame.html b/hibernate-maven-plugin/testapidocs/de/juplo/test/package-frame.html new file mode 100644 index 00000000..3be2d318 --- /dev/null +++ b/hibernate-maven-plugin/testapidocs/de/juplo/test/package-frame.html @@ -0,0 +1,21 @@ + + + + + + +de.juplo.test (Hibernate Maven Plugin 2.1.1 Test API) + + + + + +

    de.juplo.test

    +
    +

    Classes

    + +
    + + diff --git a/hibernate-maven-plugin/testapidocs/de/juplo/test/package-summary.html b/hibernate-maven-plugin/testapidocs/de/juplo/test/package-summary.html new file mode 100644 index 00000000..795dfc7b --- /dev/null +++ b/hibernate-maven-plugin/testapidocs/de/juplo/test/package-summary.html @@ -0,0 +1,142 @@ + + + + + + +de.juplo.test (Hibernate Maven Plugin 2.1.1 Test API) + + + + + + + + + + + +
    +

    Package de.juplo.test

    +
    +
    +
      +
    • + + + + + + + + + + + + +
      Class Summary 
      ClassDescription
      FileComparator 
      +
    • +
    +
    + + + + +

    Copyright © 2025. All Rights Reserved.

    + + diff --git a/hibernate-maven-plugin/testapidocs/de/juplo/test/package-tree.html b/hibernate-maven-plugin/testapidocs/de/juplo/test/package-tree.html new file mode 100644 index 00000000..7c166731 --- /dev/null +++ b/hibernate-maven-plugin/testapidocs/de/juplo/test/package-tree.html @@ -0,0 +1,133 @@ + + + + + + +de.juplo.test Class Hierarchy (Hibernate Maven Plugin 2.1.1 Test API) + + + + + + + + + + + +
    +

    Hierarchy For Package de.juplo.test

    +
    +
    +

    Class Hierarchy

    + +
    + + + + +

    Copyright © 2025. All Rights Reserved.

    + + diff --git a/hibernate-maven-plugin/testapidocs/de/juplo/test/package-use.html b/hibernate-maven-plugin/testapidocs/de/juplo/test/package-use.html new file mode 100644 index 00000000..b8a42aba --- /dev/null +++ b/hibernate-maven-plugin/testapidocs/de/juplo/test/package-use.html @@ -0,0 +1,124 @@ + + + + + + +Uses of Package de.juplo.test (Hibernate Maven Plugin 2.1.1 Test API) + + + + + + + + + + + +
    +

    Uses of Package
    de.juplo.test

    +
    +
    No usage of de.juplo.test
    + + + + +

    Copyright © 2025. All Rights Reserved.

    + + diff --git a/hibernate-maven-plugin/testapidocs/deprecated-list.html b/hibernate-maven-plugin/testapidocs/deprecated-list.html new file mode 100644 index 00000000..c4e0e783 --- /dev/null +++ b/hibernate-maven-plugin/testapidocs/deprecated-list.html @@ -0,0 +1,124 @@ + + + + + + +Deprecated List (Hibernate Maven Plugin 2.1.1 Test API) + + + + + + + + +
    + + + + + + + +
    + + +
    +

    Deprecated API

    +

    Contents

    +
    + +
    + + + + + + + +
    + + +

    Copyright © 2025. All Rights Reserved.

    + + diff --git a/hibernate-maven-plugin/testapidocs/help-doc.html b/hibernate-maven-plugin/testapidocs/help-doc.html new file mode 100644 index 00000000..bc4d7f7f --- /dev/null +++ b/hibernate-maven-plugin/testapidocs/help-doc.html @@ -0,0 +1,225 @@ + + + + + + +API Help (Hibernate Maven Plugin 2.1.1 Test API) + + + + + + + + + + + +
    +

    How This API Document Is Organized

    +
    This API (Application Programming Interface) document has pages corresponding to the items in the navigation bar, described as follows.
    +
    +
    +
      +
    • +

      Package

      +

      Each package has a page that contains a list of its classes and interfaces, with a summary for each. This page can contain six categories:

      +
        +
      • Interfaces (italic)
      • +
      • Classes
      • +
      • Enums
      • +
      • Exceptions
      • +
      • Errors
      • +
      • Annotation Types
      • +
      +
    • +
    • +

      Class/Interface

      +

      Each class, interface, nested class and nested interface has its own separate page. Each of these pages has three sections consisting of a class/interface description, summary tables, and detailed member descriptions:

      +
        +
      • Class inheritance diagram
      • +
      • Direct Subclasses
      • +
      • All Known Subinterfaces
      • +
      • All Known Implementing Classes
      • +
      • Class/interface declaration
      • +
      • Class/interface description
      • +
      +
        +
      • Nested Class Summary
      • +
      • Field Summary
      • +
      • Constructor Summary
      • +
      • Method Summary
      • +
      +
        +
      • Field Detail
      • +
      • Constructor Detail
      • +
      • Method Detail
      • +
      +

      Each summary entry contains the first sentence from the detailed description for that item. The summary entries are alphabetical, while the detailed descriptions are in the order they appear in the source code. This preserves the logical groupings established by the programmer.

      +
    • +
    • +

      Annotation Type

      +

      Each annotation type has its own separate page with the following sections:

      +
        +
      • Annotation Type declaration
      • +
      • Annotation Type description
      • +
      • Required Element Summary
      • +
      • Optional Element Summary
      • +
      • Element Detail
      • +
      +
    • +
    • +

      Enum

      +

      Each enum has its own separate page with the following sections:

      +
        +
      • Enum declaration
      • +
      • Enum description
      • +
      • Enum Constant Summary
      • +
      • Enum Constant Detail
      • +
      +
    • +
    • +

      Use

      +

      Each documented package, class and interface has its own Use page. This page describes what packages, classes, methods, constructors and fields use any part of the given class or package. Given a class or interface A, its Use page includes subclasses of A, fields declared as A, methods that return A, and methods and constructors with parameters of type A. You can access this page by first going to the package, class or interface, then clicking on the "Use" link in the navigation bar.

      +
    • +
    • +

      Tree (Class Hierarchy)

      +

      There is a Class Hierarchy page for all packages, plus a hierarchy for each package. Each hierarchy page contains a list of classes and a list of interfaces. The classes are organized by inheritance structure starting with java.lang.Object. The interfaces do not inherit from java.lang.Object.

      +
        +
      • When viewing the Overview page, clicking on "Tree" displays the hierarchy for all packages.
      • +
      • When viewing a particular package, class or interface page, clicking "Tree" displays the hierarchy for only that package.
      • +
      +
    • +
    • +

      Deprecated API

      +

      The Deprecated API page lists all of the API that have been deprecated. A deprecated API is not recommended for use, generally due to improvements, and a replacement API is usually given. Deprecated APIs may be removed in future implementations.

      +
    • +
    • +

      Index

      +

      The Index contains an alphabetic list of all classes, interfaces, constructors, methods, and fields.

      +
    • +
    • +

      Prev/Next

      +

      These links take you to the next or previous class, interface, package, or related page.

      +
    • +
    • +

      Frames/No Frames

      +

      These links show and hide the HTML frames. All pages are available with or without frames.

      +
    • +
    • +

      All Classes

      +

      The All Classes link shows all classes and interfaces except non-static nested types.

      +
    • +
    • +

      Serialized Form

      +

      Each serializable or externalizable class has a description of its serialization fields and methods. This information is of interest to re-implementors, not to developers using the API. While there is no link in the navigation bar, you can get to this information by going to any serialized class and clicking "Serialized Form" in the "See also" section of the class description.

      +
    • +
    • +

      Constant Field Values

      +

      The Constant Field Values page lists the static final fields and their values.

      +
    • +
    +This help file applies to API documentation generated using the standard doclet.
    + + + + +

    Copyright © 2025. All Rights Reserved.

    + + diff --git a/hibernate-maven-plugin/testapidocs/index-all.html b/hibernate-maven-plugin/testapidocs/index-all.html new file mode 100644 index 00000000..81ba8adb --- /dev/null +++ b/hibernate-maven-plugin/testapidocs/index-all.html @@ -0,0 +1,147 @@ + + + + + + +Index (Hibernate Maven Plugin 2.1.1 Test API) + + + + + + + + +
    + + + + + + + +
    + + +
    D F I  + + +

    D

    +
    +
    de.juplo.test - package de.juplo.test
    +
     
    +
    + + + +

    F

    +
    +
    FileComparator - Class in de.juplo.test
    +
     
    +
    FileComparator(File) - Constructor for class de.juplo.test.FileComparator
    +
     
    +
    + + + +

    I

    +
    +
    isEqual(String, String) - Method in class de.juplo.test.FileComparator
    +
     
    +
    +D F I 
    + +
    + + + + + + + +
    + + +

    Copyright © 2025. All Rights Reserved.

    + + diff --git a/hibernate-maven-plugin/testapidocs/index.html b/hibernate-maven-plugin/testapidocs/index.html new file mode 100644 index 00000000..11e3b692 --- /dev/null +++ b/hibernate-maven-plugin/testapidocs/index.html @@ -0,0 +1,73 @@ + + + + + + +Hibernate Maven Plugin 2.1.1 Test API + + + + + + +<noscript> +<div>JavaScript is disabled on your browser.</div> +</noscript> +<h2>Frame Alert</h2> +<p>This document is designed to be viewed using the frames feature. If you see this message, you are using a non-frame-capable web client. Link to <a href="de/juplo/test/package-summary.html">Non-frame version</a>.</p> + + + diff --git a/hibernate-maven-plugin/testapidocs/overview-tree.html b/hibernate-maven-plugin/testapidocs/overview-tree.html new file mode 100644 index 00000000..70345891 --- /dev/null +++ b/hibernate-maven-plugin/testapidocs/overview-tree.html @@ -0,0 +1,137 @@ + + + + + + +Class Hierarchy (Hibernate Maven Plugin 2.1.1 Test API) + + + + + + + + + + + +
    +

    Hierarchy For All Packages

    +Package Hierarchies: + +
    +
    +

    Class Hierarchy

    + +
    + + + + +

    Copyright © 2025. All Rights Reserved.

    + + diff --git a/hibernate-maven-plugin/testapidocs/package-list b/hibernate-maven-plugin/testapidocs/package-list new file mode 100644 index 00000000..4774195e --- /dev/null +++ b/hibernate-maven-plugin/testapidocs/package-list @@ -0,0 +1 @@ +de.juplo.test diff --git a/hibernate-maven-plugin/testapidocs/script.js b/hibernate-maven-plugin/testapidocs/script.js new file mode 100644 index 00000000..b3463569 --- /dev/null +++ b/hibernate-maven-plugin/testapidocs/script.js @@ -0,0 +1,30 @@ +function show(type) +{ + count = 0; + for (var key in methods) { + var row = document.getElementById(key); + if ((methods[key] & type) != 0) { + row.style.display = ''; + row.className = (count++ % 2) ? rowColor : altColor; + } + else + row.style.display = 'none'; + } + updateTabs(type); +} + +function updateTabs(type) +{ + for (var value in tabs) { + var sNode = document.getElementById(tabs[value][0]); + var spanNode = sNode.firstChild; + if (value == type) { + sNode.className = activeTableTab; + spanNode.innerHTML = tabs[value][1]; + } + else { + sNode.className = tableTab; + spanNode.innerHTML = "" + tabs[value][1] + ""; + } + } +} diff --git a/hibernate-maven-plugin/testapidocs/stylesheet.css b/hibernate-maven-plugin/testapidocs/stylesheet.css new file mode 100644 index 00000000..98055b22 --- /dev/null +++ b/hibernate-maven-plugin/testapidocs/stylesheet.css @@ -0,0 +1,574 @@ +/* Javadoc style sheet */ +/* +Overall document style +*/ + +@import url('resources/fonts/dejavu.css'); + +body { + background-color:#ffffff; + color:#353833; + font-family:'DejaVu Sans', Arial, Helvetica, sans-serif; + font-size:14px; + margin:0; +} +a:link, a:visited { + text-decoration:none; + color:#4A6782; +} +a:hover, a:focus { + text-decoration:none; + color:#bb7a2a; +} +a:active { + text-decoration:none; + color:#4A6782; +} +a[name] { + color:#353833; +} +a[name]:hover { + text-decoration:none; + color:#353833; +} +pre { + font-family:'DejaVu Sans Mono', monospace; + font-size:14px; +} +h1 { + font-size:20px; +} +h2 { + font-size:18px; +} +h3 { + font-size:16px; + font-style:italic; +} +h4 { + font-size:13px; +} +h5 { + font-size:12px; +} +h6 { + font-size:11px; +} +ul { + list-style-type:disc; +} +code, tt { + font-family:'DejaVu Sans Mono', monospace; + font-size:14px; + padding-top:4px; + margin-top:8px; + line-height:1.4em; +} +dt code { + font-family:'DejaVu Sans Mono', monospace; + font-size:14px; + padding-top:4px; +} +table tr td dt code { + font-family:'DejaVu Sans Mono', monospace; + font-size:14px; + vertical-align:top; + padding-top:4px; +} +sup { + font-size:8px; +} +/* +Document title and Copyright styles +*/ +.clear { + clear:both; + height:0px; + overflow:hidden; +} +.aboutLanguage { + float:right; + padding:0px 21px; + font-size:11px; + z-index:200; + margin-top:-9px; +} +.legalCopy { + margin-left:.5em; +} +.bar a, .bar a:link, .bar a:visited, .bar a:active { + color:#FFFFFF; + text-decoration:none; +} +.bar a:hover, .bar a:focus { + color:#bb7a2a; +} +.tab { + background-color:#0066FF; + color:#ffffff; + padding:8px; + width:5em; + font-weight:bold; +} +/* +Navigation bar styles +*/ +.bar { + background-color:#4D7A97; + color:#FFFFFF; + padding:.8em .5em .4em .8em; + height:auto;/*height:1.8em;*/ + font-size:11px; + margin:0; +} +.topNav { + background-color:#4D7A97; + color:#FFFFFF; + float:left; + padding:0; + width:100%; + clear:right; + height:2.8em; + padding-top:10px; + overflow:hidden; + font-size:12px; +} +.bottomNav { + margin-top:10px; + background-color:#4D7A97; + color:#FFFFFF; + float:left; + padding:0; + width:100%; + clear:right; + height:2.8em; + padding-top:10px; + overflow:hidden; + font-size:12px; +} +.subNav { + background-color:#dee3e9; + float:left; + width:100%; + overflow:hidden; + font-size:12px; +} +.subNav div { + clear:left; + float:left; + padding:0 0 5px 6px; + text-transform:uppercase; +} +ul.navList, ul.subNavList { + float:left; + margin:0 25px 0 0; + padding:0; +} +ul.navList li{ + list-style:none; + float:left; + padding: 5px 6px; + text-transform:uppercase; +} +ul.subNavList li{ + list-style:none; + float:left; +} +.topNav a:link, .topNav a:active, .topNav a:visited, .bottomNav a:link, .bottomNav a:active, .bottomNav a:visited { + color:#FFFFFF; + text-decoration:none; + text-transform:uppercase; +} +.topNav a:hover, .bottomNav a:hover { + text-decoration:none; + color:#bb7a2a; + text-transform:uppercase; +} +.navBarCell1Rev { + background-color:#F8981D; + color:#253441; + margin: auto 5px; +} +.skipNav { + position:absolute; + top:auto; + left:-9999px; + overflow:hidden; +} +/* +Page header and footer styles +*/ +.header, .footer { + clear:both; + margin:0 20px; + padding:5px 0 0 0; +} +.indexHeader { + margin:10px; + position:relative; +} +.indexHeader span{ + margin-right:15px; +} +.indexHeader h1 { + font-size:13px; +} +.title { + color:#2c4557; + margin:10px 0; +} +.subTitle { + margin:5px 0 0 0; +} +.header ul { + margin:0 0 15px 0; + padding:0; +} +.footer ul { + margin:20px 0 5px 0; +} +.header ul li, .footer ul li { + list-style:none; + font-size:13px; +} +/* +Heading styles +*/ +div.details ul.blockList ul.blockList ul.blockList li.blockList h4, div.details ul.blockList ul.blockList ul.blockListLast li.blockList h4 { + background-color:#dee3e9; + border:1px solid #d0d9e0; + margin:0 0 6px -8px; + padding:7px 5px; +} +ul.blockList ul.blockList ul.blockList li.blockList h3 { + background-color:#dee3e9; + border:1px solid #d0d9e0; + margin:0 0 6px -8px; + padding:7px 5px; +} +ul.blockList ul.blockList li.blockList h3 { + padding:0; + margin:15px 0; +} +ul.blockList li.blockList h2 { + padding:0px 0 20px 0; +} +/* +Page layout container styles +*/ +.contentContainer, .sourceContainer, .classUseContainer, .serializedFormContainer, .constantValuesContainer { + clear:both; + padding:10px 20px; + position:relative; +} +.indexContainer { + margin:10px; + position:relative; + font-size:12px; +} +.indexContainer h2 { + font-size:13px; + padding:0 0 3px 0; +} +.indexContainer ul { + margin:0; + padding:0; +} +.indexContainer ul li { + list-style:none; + padding-top:2px; +} +.contentContainer .description dl dt, .contentContainer .details dl dt, .serializedFormContainer dl dt { + font-size:12px; + font-weight:bold; + margin:10px 0 0 0; + color:#4E4E4E; +} +.contentContainer .description dl dd, .contentContainer .details dl dd, .serializedFormContainer dl dd { + margin:5px 0 10px 0px; + font-size:14px; + font-family:'DejaVu Sans Mono',monospace; +} +.serializedFormContainer dl.nameValue dt { + margin-left:1px; + font-size:1.1em; + display:inline; + font-weight:bold; +} +.serializedFormContainer dl.nameValue dd { + margin:0 0 0 1px; + font-size:1.1em; + display:inline; +} +/* +List styles +*/ +ul.horizontal li { + display:inline; + font-size:0.9em; +} +ul.inheritance { + margin:0; + padding:0; +} +ul.inheritance li { + display:inline; + list-style:none; +} +ul.inheritance li ul.inheritance { + margin-left:15px; + padding-left:15px; + padding-top:1px; +} +ul.blockList, ul.blockListLast { + margin:10px 0 10px 0; + padding:0; +} +ul.blockList li.blockList, ul.blockListLast li.blockList { + list-style:none; + margin-bottom:15px; + line-height:1.4; +} +ul.blockList ul.blockList li.blockList, ul.blockList ul.blockListLast li.blockList { + padding:0px 20px 5px 10px; + border:1px solid #ededed; + background-color:#f8f8f8; +} +ul.blockList ul.blockList ul.blockList li.blockList, ul.blockList ul.blockList ul.blockListLast li.blockList { + padding:0 0 5px 8px; + background-color:#ffffff; + border:none; +} +ul.blockList ul.blockList ul.blockList ul.blockList li.blockList { + margin-left:0; + padding-left:0; + padding-bottom:15px; + border:none; +} +ul.blockList ul.blockList ul.blockList ul.blockList li.blockListLast { + list-style:none; + border-bottom:none; + padding-bottom:0; +} +table tr td dl, table tr td dl dt, table tr td dl dd { + margin-top:0; + margin-bottom:1px; +} +/* +Table styles +*/ +.overviewSummary, .memberSummary, .typeSummary, .useSummary, .constantsSummary, .deprecatedSummary { + width:100%; + border-left:1px solid #EEE; + border-right:1px solid #EEE; + border-bottom:1px solid #EEE; +} +.overviewSummary, .memberSummary { + padding:0px; +} +.overviewSummary caption, .memberSummary caption, .typeSummary caption, +.useSummary caption, .constantsSummary caption, .deprecatedSummary caption { + position:relative; + text-align:left; + background-repeat:no-repeat; + color:#253441; + font-weight:bold; + clear:none; + overflow:hidden; + padding:0px; + padding-top:10px; + padding-left:1px; + margin:0px; + white-space:pre; +} +.overviewSummary caption a:link, .memberSummary caption a:link, .typeSummary caption a:link, +.useSummary caption a:link, .constantsSummary caption a:link, .deprecatedSummary caption a:link, +.overviewSummary caption a:hover, .memberSummary caption a:hover, .typeSummary caption a:hover, +.useSummary caption a:hover, .constantsSummary caption a:hover, .deprecatedSummary caption a:hover, +.overviewSummary caption a:active, .memberSummary caption a:active, .typeSummary caption a:active, +.useSummary caption a:active, .constantsSummary caption a:active, .deprecatedSummary caption a:active, +.overviewSummary caption a:visited, .memberSummary caption a:visited, .typeSummary caption a:visited, +.useSummary caption a:visited, .constantsSummary caption a:visited, .deprecatedSummary caption a:visited { + color:#FFFFFF; +} +.overviewSummary caption span, .memberSummary caption span, .typeSummary caption span, +.useSummary caption span, .constantsSummary caption span, .deprecatedSummary caption span { + white-space:nowrap; + padding-top:5px; + padding-left:12px; + padding-right:12px; + padding-bottom:7px; + display:inline-block; + float:left; + background-color:#F8981D; + border: none; + height:16px; +} +.memberSummary caption span.activeTableTab span { + white-space:nowrap; + padding-top:5px; + padding-left:12px; + padding-right:12px; + margin-right:3px; + display:inline-block; + float:left; + background-color:#F8981D; + height:16px; +} +.memberSummary caption span.tableTab span { + white-space:nowrap; + padding-top:5px; + padding-left:12px; + padding-right:12px; + margin-right:3px; + display:inline-block; + float:left; + background-color:#4D7A97; + height:16px; +} +.memberSummary caption span.tableTab, .memberSummary caption span.activeTableTab { + padding-top:0px; + padding-left:0px; + padding-right:0px; + background-image:none; + float:none; + display:inline; +} +.overviewSummary .tabEnd, .memberSummary .tabEnd, .typeSummary .tabEnd, +.useSummary .tabEnd, .constantsSummary .tabEnd, .deprecatedSummary .tabEnd { + display:none; + width:5px; + position:relative; + float:left; + background-color:#F8981D; +} +.memberSummary .activeTableTab .tabEnd { + display:none; + width:5px; + margin-right:3px; + position:relative; + float:left; + background-color:#F8981D; +} +.memberSummary .tableTab .tabEnd { + display:none; + width:5px; + margin-right:3px; + position:relative; + background-color:#4D7A97; + float:left; + +} +.overviewSummary td, .memberSummary td, .typeSummary td, +.useSummary td, .constantsSummary td, .deprecatedSummary td { + text-align:left; + padding:0px 0px 12px 10px; +} +th.colOne, th.colFirst, th.colLast, .useSummary th, .constantsSummary th, +td.colOne, td.colFirst, td.colLast, .useSummary td, .constantsSummary td{ + vertical-align:top; + padding-right:0px; + padding-top:8px; + padding-bottom:3px; +} +th.colFirst, th.colLast, th.colOne, .constantsSummary th { + background:#dee3e9; + text-align:left; + padding:8px 3px 3px 7px; +} +td.colFirst, th.colFirst { + white-space:nowrap; + font-size:13px; +} +td.colLast, th.colLast { + font-size:13px; +} +td.colOne, th.colOne { + font-size:13px; +} +.overviewSummary td.colFirst, .overviewSummary th.colFirst, +.useSummary td.colFirst, .useSummary th.colFirst, +.overviewSummary td.colOne, .overviewSummary th.colOne, +.memberSummary td.colFirst, .memberSummary th.colFirst, +.memberSummary td.colOne, .memberSummary th.colOne, +.typeSummary td.colFirst{ + width:25%; + vertical-align:top; +} +td.colOne a:link, td.colOne a:active, td.colOne a:visited, td.colOne a:hover, td.colFirst a:link, td.colFirst a:active, td.colFirst a:visited, td.colFirst a:hover, td.colLast a:link, td.colLast a:active, td.colLast a:visited, td.colLast a:hover, .constantValuesContainer td a:link, .constantValuesContainer td a:active, .constantValuesContainer td a:visited, .constantValuesContainer td a:hover { + font-weight:bold; +} +.tableSubHeadingColor { + background-color:#EEEEFF; +} +.altColor { + background-color:#FFFFFF; +} +.rowColor { + background-color:#EEEEEF; +} +/* +Content styles +*/ +.description pre { + margin-top:0; +} +.deprecatedContent { + margin:0; + padding:10px 0; +} +.docSummary { + padding:0; +} + +ul.blockList ul.blockList ul.blockList li.blockList h3 { + font-style:normal; +} + +div.block { + font-size:14px; + font-family:'DejaVu Serif', Georgia, "Times New Roman", Times, serif; +} + +td.colLast div { + padding-top:0px; +} + + +td.colLast a { + padding-bottom:3px; +} +/* +Formatting effect styles +*/ +.sourceLineNo { + color:green; + padding:0 30px 0 0; +} +h1.hidden { + visibility:hidden; + overflow:hidden; + font-size:10px; +} +.block { + display:block; + margin:3px 10px 2px 0px; + color:#474747; +} +.deprecatedLabel, .descfrmTypeLabel, .memberNameLabel, .memberNameLink, +.overrideSpecifyLabel, .packageHierarchyLabel, .paramLabel, .returnLabel, +.seeLabel, .simpleTagLabel, .throwsLabel, .typeNameLabel, .typeNameLink { + font-weight:bold; +} +.deprecationComment, .emphasizedPhrase, .interfaceName { + font-style:italic; +} + +div.block div.block span.deprecationComment, div.block div.block span.emphasizedPhrase, +div.block div.block span.interfaceName { + font-style:normal; +} + +div.contentContainer ul.blockList li.blockList h2{ + padding-bottom:0px; +} diff --git a/hibernate-maven-plugin/update-mojo.html b/hibernate-maven-plugin/update-mojo.html index 7cb94ffa..79f24bee 100644 --- a/hibernate-maven-plugin/update-mojo.html +++ b/hibernate-maven-plugin/update-mojo.html @@ -1,6 +1,6 @@ - + @@ -8,7 +8,7 @@ - + @@ -264,19 +264,28 @@ - + - + - - + + + + + + + + + + + @@ -298,7 +307,7 @@ - + @@ -311,7 +320,33 @@ - + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -399,19 +434,19 @@ - - + + - + - hibernate:update – Hibernate Maven Plugin + Hibernate Maven Plugin – hibernate:update @@ -426,25 +461,25 @@

    Path

      -
    +
  • Hibernate Maven Plugin
  • Goal — hibernate:update

  • -
    -

    hibernate:update

    +
    +

    hibernate:update

    -

    Full name:

    +

    Full name:

    de.juplo:hibernate-maven-plugin:2.1.1:update

    -

    Description:

    +

    Description:

    Generate/Execute SQL to update the database-schema according to the configured mappings.
    -

    Attributes:

    +

    Attributes:

      @@ -454,12 +489,12 @@ configured mappings.
    • The goal is thread-safe and supports parallel builds.
    • -
    • Binds by default to the lifecycle phase: process-classes.
    • +
    • Binds by default to the lifecycle phase: process-classes.
    -
    -

    Optional Parameters

    +
    +

    Optional Parameters

    - +
    @@ -474,19 +509,19 @@ configured mappings. - + +schema/catalog.
    Default value is: false.
    User property is: hibernate.hbm2dll.create_namespaces. - + @@ -494,37 +529,37 @@ schema/catalog.
    Default value is: false.
    Delimiter in output-file. -

    Important: This configuration value can only be +

    Important: This configuration value can only be configured through the pom.xml, or by the definition of a system-property, because it is not known by Hibernate nor JPA -and, hence, not picked up from their configuration!


    Default value is: ;.
    User property is: hibernate.hbm2ddl.delimiter. +and, hence, not picked up from their configuration!


    Default value is: ;.
    User property is: hibernate.hbm2ddl.delimiter. - + - + - + - + - + @@ -533,15 +568,15 @@ and, hence, not picked up from their configuration!


    Default val +and, hence, not picked up from their configuration!


    Default value is: true.
    User property is: hibernate.schema.execute.
    - + @@ -555,26 +590,26 @@ found and the configuration was not changed.

    skip takes precedence over force.

    -

    Important: This configuration value can only be +

    Important: This configuration value can only be configured through the pom.xml, or by the definition of a system-property, because it is not known by Hibernate nor JPA -and, hence, not picked up from their configuration!


    Default value is: false.
    User property is: hibernate.schema.force. +and, hence, not picked up from their configuration!


    Default value is: false.
    User property is: hibernate.schema.force.
    - + - + - + @@ -599,7 +634,7 @@ file.


    - + @@ -622,30 +657,30 @@ precedence.


    - + - + - + +separated with white-spaces and/or commas.
    User property is: hibernate.mapping.
    - + @@ -657,15 +692,15 @@ separated with white-spaces and/or commas.
    User property is -

    Important: This configuration value can only be +

    Important: This configuration value can only be configured through the pom.xml, or by the definition of a system-property, because it is not known by Hibernate nor JPA -and, hence, not picked up from their configuration!


    User property is: project.build.outputDirectory. +and, hence, not picked up from their configuration!


    User property is: project.build.outputDirectory.
    - + @@ -675,23 +710,23 @@ and, hence, not picked up from their configuration!


    User proper

    If the specified filename is not absolut, the file will be created relative to the project build directory -(project.build.directory).


    Default value is: update.sql.
    User property is: hibernate.schema.update. +(project.build.directory).


    Default value is: update.sql.
    User property is: hibernate.schema.update.
    - + - + - + @@ -714,18 +749,18 @@ or the configuration file.


    - + - + - + @@ -736,12 +771,12 @@ or the configuration file.


    This parameter is intended to allow overwriting of the parameter exclude-unlisted-classes of a persistence-unit. If not specified, it defaults to -true


    User property is: hibernate.schema.scan.classes. +true


    User property is: hibernate.schema.scan.classes.
    - + @@ -759,12 +794,12 @@ classes, set this parameter to none.

    The plugin does not scan for annotated classes in transitive dependencies. If some of your annotated classes are hidden in a transitive dependency, you can simply add that dependency -explicitly.


    Default value is: compile.
    User property is: hibernate.schema.scan.dependencies. +explicitly.


    Default value is: compile.
    User property is: hibernate.schema.scan.dependencies.
    - + @@ -777,26 +812,26 @@ classes, or not. of the artifact will be scanned for hibernate-annotated classes additionally.

    -

    Important: This configuration value can only be +

    Important: This configuration value can only be configured through the pom.xml, or by the definition of a system-property, because it is not known by Hibernate nor JPA -and, hence, not picked up from their configuration!


    Default value is: false.
    User property is: hibernate.schema.scan.test_classes. +and, hence, not picked up from their configuration!


    Default value is: false.
    User property is: hibernate.schema.scan.test_classes.
    - + - + - + @@ -813,15 +848,15 @@ and, hence, not picked up from their configuration!


    Default val added annotated classes are found and the dialect was not changed.

    -

    Important: This configuration value can only be +

    Important: This configuration value can only be configured through the pom.xml, or by the definition of a system-property, because it is not known by Hibernate nor JPA -and, hence, not picked up from their configuration!


    Default value is: ${maven.test.skip}.
    User property is: hibernate.schema.skip. +and, hence, not picked up from their configuration!


    Default value is: ${maven.test.skip}.
    User property is: hibernate.schema.skip.
    - + @@ -835,127 +870,127 @@ test-classes.

    This parameter is only used, when scanTestClasses is set to true!

    -

    Important: This configuration value can only be +

    Important: This configuration value can only be configured through the pom.xml, or by the definition of a system-property, because it is not known by Hibernate nor JPA -and, hence, not picked up from their configuration!


    User property is: project.build.testOutputDirectory. +and, hence, not picked up from their configuration!


    User property is: project.build.testOutputDirectory.
    - + - + - + - +
    createNamespacescreateNamespaces Boolean 2.0 Specifies whether to automatically create also the database -schema/catalog.
    Default value is: false.
    User property is: hibernate.hbm2dll.create_namespaces.
    delimiterdelimiter String
    dialectdialect String 1.0Hibernate dialect.
    User property is: hibernate.dialect.
    Hibernate dialect.
    User property is: hibernate.dialect.
    driverdriver String 1.0SQL-Driver name.
    User property is: hibernate.connection.driver_class.
    SQL-Driver name.
    User property is: hibernate.connection.driver_class.
    executeexecute BooleanExcecute the generated SQL. If set to false, only the SQL-script is created and the database is not touched. -

    Important: This configuration value can only be +

    Important: This configuration value can only be configured through the pom.xml, or by the definition of a system-property, because it is not known by Hibernate nor JPA -and, hence, not picked up from their configuration!


    Default value is: true.
    User property is: hibernate.schema.execute.
    forceforce boolean
    formatformat Boolean 1.0Format output-file.
    User property is: hibernate.format_sql.
    Format output-file.
    User property is: hibernate.format_sql.
    hibernateConfighibernateConfig String
    hibernatePropertieshibernateProperties String
    implicitNamingStrategyimplicitNamingStrategy String 2.0Implicit naming strategy
    User property is: hibernate.implicit_naming_strategy.
    Implicit naming strategy
    User property is: hibernate.implicit_naming_strategy.
    mappingsmappings String 1.0.2 List of Hibernate-Mapping-Files (XML). Multiple files can be -separated with white-spaces and/or commas.
    User property is: hibernate.mapping.
    outputDirectoryoutputDirectory String
    outputFileoutputFile String
    passwordpassword String 1.0Database password
    User property is: hibernate.connection.password.
    Database password
    User property is: hibernate.connection.password.
    persistenceUnitpersistenceUnit String
    physicalNamingStrategyphysicalNamingStrategy String 2.0Physical naming strategy
    User property is: hibernate.physical_naming_strategy.
    Physical naming strategy
    User property is: hibernate.physical_naming_strategy.
    scanClassesscanClasses Boolean
    scanDependenciesscanDependencies String
    scanTestClassesscanTestClasses Boolean
    showshow Boolean 1.0Show the generated SQL in the command-line output.
    User property is: hibernate.show_sql.
    Show the generated SQL in the command-line output.
    User property is: hibernate.show_sql.
    skipskip boolean
    testOutputDirectorytestOutputDirectory String
    urlurl String 1.0Database URL.
    User property is: hibernate.connection.url.
    Database URL.
    User property is: hibernate.connection.url.
    usernameusername String 1.0Database username
    User property is: hibernate.connection.username.
    Database username
    User property is: hibernate.connection.username.
    -
    -

    Parameter Details

    +
    +

    Parameter Details

    -

    createNamespaces:

    +

    createNamespaces:

    Specifies whether to automatically create also the database schema/catalog.
      -
    • Type: java.lang.Boolean
    • +
    • Type: java.lang.Boolean
    • -
    • Since: 2.0
    • +
    • Since: 2.0
    • -
    • Required: No
    • +
    • Required: No
    • -
    • User Property: hibernate.hbm2dll.create_namespaces
    • +
    • User Property: hibernate.hbm2dll.create_namespaces
    • -
    • Default: false
    • +
    • Default: false

    -

    delimiter:

    +

    delimiter:

    Delimiter in output-file. -

    Important: This configuration value can only be +

    Important: This configuration value can only be configured through the pom.xml, or by the definition of a system-property, because it is not known by Hibernate nor JPA and, hence, not picked up from their configuration!

      -
    • Type: java.lang.String
    • +
    • Type: java.lang.String
    • -
    • Since: 1.0
    • +
    • Since: 1.0
    • -
    • Required: No
    • +
    • Required: No
    • -
    • User Property: hibernate.hbm2ddl.delimiter
    • +
    • User Property: hibernate.hbm2ddl.delimiter
    • -
    • Default: ;
    • +
    • Default: ;

    -

    dialect:

    +

    dialect:

    Hibernate dialect.
      -
    • Type: java.lang.String
    • +
    • Type: java.lang.String
    • -
    • Since: 1.0
    • +
    • Since: 1.0
    • -
    • Required: No
    • +
    • Required: No
    • -
    • User Property: hibernate.dialect
    • +
    • User Property: hibernate.dialect

    -

    driver:

    +

    driver:

    SQL-Driver name.
      -
    • Type: java.lang.String
    • +
    • Type: java.lang.String
    • -
    • Since: 1.0
    • +
    • Since: 1.0
    • -
    • Required: No
    • +
    • Required: No
    • -
    • User Property: hibernate.connection.driver_class
    • +
    • User Property: hibernate.connection.driver_class

    -

    execute:

    +

    execute:

    Excecute the generated SQL. If set to false, only the SQL-script is created and the database is not touched. -

    Important: This configuration value can only be +

    Important: This configuration value can only be configured through the pom.xml, or by the definition of a system-property, because it is not known by Hibernate nor JPA and, hence, not picked up from their configuration!

      -
    • Type: java.lang.Boolean
    • +
    • Type: java.lang.Boolean
    • -
    • Since: 2.0
    • +
    • Since: 2.0
    • -
    • Required: No
    • +
    • Required: No
    • -
    • User Property: hibernate.schema.execute
    • +
    • User Property: hibernate.schema.execute
    • -
    • Default: true
    • +
    • Default: true

    -

    force:

    +

    force:

    Force generation/execution @@ -965,38 +1000,38 @@ found and the configuration was not changed.

    skip takes precedence over force.

    -

    Important: This configuration value can only be +

    Important: This configuration value can only be configured through the pom.xml, or by the definition of a system-property, because it is not known by Hibernate nor JPA and, hence, not picked up from their configuration!

      -
    • Type: boolean
    • +
    • Type: boolean
    • -
    • Since: 1.0
    • +
    • Since: 1.0
    • -
    • Required: No
    • +
    • Required: No
    • -
    • User Property: hibernate.schema.force
    • +
    • User Property: hibernate.schema.force
    • -
    • Default: false
    • +
    • Default: false

    -

    format:

    +

    format:

    Format output-file.
      -
    • Type: java.lang.Boolean
    • +
    • Type: java.lang.Boolean
    • -
    • Since: 1.0
    • +
    • Since: 1.0
    • -
    • Required: No
    • +
    • Required: No
    • -
    • User Property: hibernate.format_sql
    • +
    • User Property: hibernate.format_sql

    -

    hibernateConfig:

    +

    hibernateConfig:

    Path to Hibernate configuration file (.cfg.xml). If this parameter is specified, the plugin will try to load configuration values from @@ -1016,13 +1051,13 @@ file.

      -
    • Type: java.lang.String
    • +
    • Type: java.lang.String
    • -
    • Since: 1.1.0
    • +
    • Since: 1.1.0
    • -
    • Required: No
    • +
    • Required: No

    -

    hibernateProperties:

    +

    hibernateProperties:

    Path to a file or name of a ressource with hibernate properties. If this parameter is specified, the plugin will try to load @@ -1040,42 +1075,42 @@ precedence.

      -
    • Type: java.lang.String
    • +
    • Type: java.lang.String
    • -
    • Since: 1.0
    • +
    • Since: 1.0
    • -
    • Required: No
    • +
    • Required: No

    -

    implicitNamingStrategy:

    +

    implicitNamingStrategy:

    Implicit naming strategy
      -
    • Type: java.lang.String
    • +
    • Type: java.lang.String
    • -
    • Since: 2.0
    • +
    • Since: 2.0
    • -
    • Required: No
    • +
    • Required: No
    • -
    • User Property: hibernate.implicit_naming_strategy
    • +
    • User Property: hibernate.implicit_naming_strategy

    -

    mappings:

    +

    mappings:

    List of Hibernate-Mapping-Files (XML). Multiple files can be separated with white-spaces and/or commas.
      -
    • Type: java.lang.String
    • +
    • Type: java.lang.String
    • -
    • Since: 1.0.2
    • +
    • Since: 1.0.2
    • -
    • Required: No
    • +
    • Required: No
    • -
    • User Property: hibernate.mapping
    • +
    • User Property: hibernate.mapping

    -

    outputDirectory:

    +

    outputDirectory:

    Classes-Directory to scan. @@ -1083,22 +1118,22 @@ separated with white-spaces and/or commas.
    classes. Additionally, all dependencies are scanned for annotated classes.

    -

    Important: This configuration value can only be +

    Important: This configuration value can only be configured through the pom.xml, or by the definition of a system-property, because it is not known by Hibernate nor JPA and, hence, not picked up from their configuration!

      -
    • Type: java.lang.String
    • +
    • Type: java.lang.String
    • -
    • Since: 1.0
    • +
    • Since: 1.0
    • -
    • Required: No
    • +
    • Required: No
    • -
    • User Property: project.build.outputDirectory
    • +
    • User Property: project.build.outputDirectory

    -

    outputFile:

    +

    outputFile:

    Output file. @@ -1108,31 +1143,31 @@ created relative to the project build directory
      -
    • Type: java.lang.String
    • +
    • Type: java.lang.String
    • -
    • Since: 1.0
    • +
    • Since: 1.0
    • -
    • Required: No
    • +
    • Required: No
    • -
    • User Property: hibernate.schema.update
    • +
    • User Property: hibernate.schema.update
    • -
    • Default: update.sql
    • +
    • Default: update.sql

    -

    password:

    +

    password:

    Database password
      -
    • Type: java.lang.String
    • +
    • Type: java.lang.String
    • -
    • Since: 1.0
    • +
    • Since: 1.0
    • -
    • Required: No
    • +
    • Required: No
    • -
    • User Property: hibernate.connection.password
    • +
    • User Property: hibernate.connection.password

    -

    persistenceUnit:

    +

    persistenceUnit:

    Name of the persistence-unit. If this parameter is specified, the plugin will try to load configuration values from a @@ -1150,27 +1185,27 @@ or the configuration file.

      -
    • Type: java.lang.String
    • +
    • Type: java.lang.String
    • -
    • Since: 1.1.0
    • +
    • Since: 1.1.0
    • -
    • Required: No
    • +
    • Required: No

    -

    physicalNamingStrategy:

    +

    physicalNamingStrategy:

    Physical naming strategy
      -
    • Type: java.lang.String
    • +
    • Type: java.lang.String
    • -
    • Since: 2.0
    • +
    • Since: 2.0
    • -
    • Required: No
    • +
    • Required: No
    • -
    • User Property: hibernate.physical_naming_strategy
    • +
    • User Property: hibernate.physical_naming_strategy

    -

    scanClasses:

    +

    scanClasses:

    Wether the project should be scanned for annotated-classes, or not @@ -1181,15 +1216,15 @@ or the configuration file.

      -
    • Type: java.lang.Boolean
    • +
    • Type: java.lang.Boolean
    • -
    • Since: 2.0
    • +
    • Since: 2.0
    • -
    • Required: No
    • +
    • Required: No
    • -
    • User Property: hibernate.schema.scan.classes
    • +
    • User Property: hibernate.schema.scan.classes

    -

    scanDependencies:

    +

    scanDependencies:

    Dependency-Scopes, that should be scanned for annotated classes. @@ -1207,17 +1242,17 @@ explicitly.

      -
    • Type: java.lang.String
    • +
    • Type: java.lang.String
    • -
    • Since: 1.0.3
    • +
    • Since: 1.0.3
    • -
    • Required: No
    • +
    • Required: No
    • -
    • User Property: hibernate.schema.scan.dependencies
    • +
    • User Property: hibernate.schema.scan.dependencies
    • -
    • Default: compile
    • +
    • Default: compile

    -

    scanTestClasses:

    +

    scanTestClasses:

    Whether to scan the test-branch of the project for annotated classes, or not. @@ -1226,38 +1261,38 @@ classes, or not. of the artifact will be scanned for hibernate-annotated classes additionally.

    -

    Important: This configuration value can only be +

    Important: This configuration value can only be configured through the pom.xml, or by the definition of a system-property, because it is not known by Hibernate nor JPA and, hence, not picked up from their configuration!

      -
    • Type: java.lang.Boolean
    • +
    • Type: java.lang.Boolean
    • -
    • Since: 1.0.1
    • +
    • Since: 1.0.1
    • -
    • Required: No
    • +
    • Required: No
    • -
    • User Property: hibernate.schema.scan.test_classes
    • +
    • User Property: hibernate.schema.scan.test_classes
    • -
    • Default: false
    • +
    • Default: false

    -

    show:

    +

    show:

    Show the generated SQL in the command-line output.
      -
    • Type: java.lang.Boolean
    • +
    • Type: java.lang.Boolean
    • -
    • Since: 1.0
    • +
    • Since: 1.0
    • -
    • Required: No
    • +
    • Required: No
    • -
    • User Property: hibernate.show_sql
    • +
    • User Property: hibernate.show_sql

    -

    :

    +

    skip:

    Skip execution @@ -1270,24 +1305,24 @@ and, hence, not picked up from their configuration!

    added annotated classes are found and the dialect was not changed.

    -

    Important: This configuration value can only be +

    Important: This configuration value can only be configured through the pom.xml, or by the definition of a system-property, because it is not known by Hibernate nor JPA and, hence, not picked up from their configuration!

      -
    • Type: boolean
    • +
    • Type: boolean
    • -
    • Since: 1.0
    • +
    • Since: 1.0
    • -
    • Required: No
    • +
    • Required: No
    • -
    • User Property: hibernate.schema.skip
    • +
    • User Property: hibernate.schema.skip
    • -
    • Default: ${maven.test.skip}
    • +
    • Default: ${maven.test.skip}

    -

    testOutputDirectory:

    +

    testOutputDirectory:

    Test-Classes-Directory to scan. @@ -1297,48 +1332,48 @@ test-classes.

    This parameter is only used, when scanTestClasses is set to true!

    -

    Important: This configuration value can only be +

    Important: This configuration value can only be configured through the pom.xml, or by the definition of a system-property, because it is not known by Hibernate nor JPA and, hence, not picked up from their configuration!

      -
    • Type: java.lang.String
    • +
    • Type: java.lang.String
    • -
    • Since: 1.0.2
    • +
    • Since: 1.0.2
    • -
    • Required: No
    • +
    • Required: No
    • -
    • User Property: project.build.testOutputDirectory
    • +
    • User Property: project.build.testOutputDirectory

    -

    url:

    +

    url:

    Database URL.
      -
    • Type: java.lang.String
    • +
    • Type: java.lang.String
    • -
    • Since: 1.0
    • +
    • Since: 1.0
    • -
    • Required: No
    • +
    • Required: No
    • -
    • User Property: hibernate.connection.url
    • +
    • User Property: hibernate.connection.url

    -

    username:

    +

    username:

    Database username
      -
    • Type: java.lang.String
    • +
    • Type: java.lang.String
    • -
    • Since: 1.0
    • +
    • Since: 1.0
    • -
    • Required: No
    • +
    • Required: No
    • -
    • User Property: hibernate.connection.username
    • +
    • User Property: hibernate.connection.username
    @@ -1370,9 +1405,12 @@ and, hence, not picked up from their configuration!

    "/hibernate-maven-plugin/pmd.html": "PMD", "/hibernate-maven-plugin/plugin-info.html": "Plugin Documentation", "/hibernate-maven-plugin/project-reports.html": "Project Reports", + "/hibernate-maven-plugin/index.html?about": "Overview", "/hibernate-maven-plugin/configuration.html": "Configuration Examples", - "/hibernate-maven-plugin/create-mojo.html": "Goal: CREATE", - "/hibernate-maven-plugin/drop-mojo.html": "Goal: DROP", + "/hibernate-maven-plugin/create-mojo.html": "Goal — hibernate:create", + "/hibernate-maven-plugin/update-mojo.html": "Goal — hibernate:update", + "/hibernate-maven-plugin/drop-mojo.html": "Goal — hibernate:drop", + "/hibernate-maven-plugin/help-mojo.html": "Goal — hibernate:help", "/hibernate-maven-plugin/debugging.html": "Enable Debugging-Output", "/hibernate-maven-plugin/skip.html": "Skipping Execution", "/hibernate-maven-plugin/force.html": "Force Exceution", @@ -1380,9 +1418,12 @@ and, hence, not picked up from their configuration!

    }, "_childs": { "/hibernate-maven-plugin/index.html": [ + "/hibernate-maven-plugin/index.html?about", "/hibernate-maven-plugin/configuration.html", "/hibernate-maven-plugin/create-mojo.html", + "/hibernate-maven-plugin/update-mojo.html", "/hibernate-maven-plugin/drop-mojo.html", + "/hibernate-maven-plugin/help-mojo.html", "/hibernate-maven-plugin/debugging.html", "/hibernate-maven-plugin/skip.html", "/hibernate-maven-plugin/force.html", @@ -1529,6 +1570,11 @@ and, hence, not picked up from their configuration!

    "/hibernate-maven-plugin/index.html", "/hibernate-maven-plugin/project-reports.html" ], + "/hibernate-maven-plugin/index.html?about": [ + "/index.html","/projects.html", + "/hibernate-maven-plugin/index.html", + "/hibernate-maven-plugin/index.html?about" + ], "/hibernate-maven-plugin/configuration.html": [ "/index.html","/projects.html", "/hibernate-maven-plugin/index.html", @@ -1539,11 +1585,21 @@ and, hence, not picked up from their configuration!

    "/hibernate-maven-plugin/index.html", "/hibernate-maven-plugin/create-mojo.html" ], + "/hibernate-maven-plugin/update-mojo.html": [ + "/index.html","/projects.html", + "/hibernate-maven-plugin/index.html", + "/hibernate-maven-plugin/update-mojo.html" + ], "/hibernate-maven-plugin/drop-mojo.html": [ "/index.html","/projects.html", "/hibernate-maven-plugin/index.html", "/hibernate-maven-plugin/drop-mojo.html" ], + "/hibernate-maven-plugin/help-mojo.html": [ + "/index.html","/projects.html", + "/hibernate-maven-plugin/index.html", + "/hibernate-maven-plugin/help-mojo.html" + ], "/hibernate-maven-plugin/debugging.html": [ "/index.html","/projects.html", "/hibernate-maven-plugin/index.html", @@ -1586,9 +1642,12 @@ and, hence, not picked up from their configuration!

    "/hibernate-maven-plugin/pmd.html": "/hibernate-maven-plugin/pmd.html", "/hibernate-maven-plugin/plugin-info.html": "/hibernate-maven-plugin/plugin-info.html", "/hibernate-maven-plugin/project-reports.html": "/hibernate-maven-plugin/project-reports.html", + "/hibernate-maven-plugin/index.html?about": "/hibernate-maven-plugin/index.html?about", "/hibernate-maven-plugin/configuration.html": "/hibernate-maven-plugin/configuration.html", "/hibernate-maven-plugin/create-mojo.html": "/hibernate-maven-plugin/create-mojo.html", + "/hibernate-maven-plugin/update-mojo.html": "/hibernate-maven-plugin/update-mojo.html", "/hibernate-maven-plugin/drop-mojo.html": "/hibernate-maven-plugin/drop-mojo.html", + "/hibernate-maven-plugin/help-mojo.html": "/hibernate-maven-plugin/help-mojo.html", "/hibernate-maven-plugin/debugging.html": "/hibernate-maven-plugin/debugging.html", "/hibernate-maven-plugin/skip.html": "/hibernate-maven-plugin/skip.html", "/hibernate-maven-plugin/force.html": "/hibernate-maven-plugin/force.html", @@ -1599,7 +1658,7 @@ and, hence, not picked up from their configuration!

    All Pages

    +
  • Hibernate Maven Plugin
  • CI Management
  • Dependencies
  • Maven Coordinates
  • Distribution Management
  • Licenses
  • Plugin Management
  • Plugins
  • Source Code Management
  • Summary
  • Team
  • Project Information
  • Test JavaDocs
  • JavaDocs
  • Source Xref
  • Test Source Xref
  • CPD
  • PMD
  • Plugin Documentation
  • Project Reports
  • Overview
  • Configuration Examples
  • Goal — hibernate:create
  • Goal — hibernate:update
  • Goal — hibernate:drop
  • Goal — hibernate:help
  • Enable Debugging-Output
  • Skipping Execution
  • Force Exceution
  • Known Pitfalls (FAQ)
  • diff --git a/hibernate-maven-plugin/xref-test/de/juplo/test/FileComparator.html b/hibernate-maven-plugin/xref-test/de/juplo/test/FileComparator.html index 412c09ca..9c9b9f89 100644 --- a/hibernate-maven-plugin/xref-test/de/juplo/test/FileComparator.html +++ b/hibernate-maven-plugin/xref-test/de/juplo/test/FileComparator.html @@ -1,5 +1,5 @@ - + FileComparator xref diff --git a/hibernate-maven-plugin/xref/de/juplo/plugins/hibernate/AbstractSchemaMojo.html b/hibernate-maven-plugin/xref/de/juplo/plugins/hibernate/AbstractSchemaMojo.html index c6e483a5..cc43f384 100644 --- a/hibernate-maven-plugin/xref/de/juplo/plugins/hibernate/AbstractSchemaMojo.html +++ b/hibernate-maven-plugin/xref/de/juplo/plugins/hibernate/AbstractSchemaMojo.html @@ -1,5 +1,5 @@ - + AbstractSchemaMojo xref diff --git a/hibernate-maven-plugin/xref/de/juplo/plugins/hibernate/CreateMojo.html b/hibernate-maven-plugin/xref/de/juplo/plugins/hibernate/CreateMojo.html index c6db8c85..9b810139 100644 --- a/hibernate-maven-plugin/xref/de/juplo/plugins/hibernate/CreateMojo.html +++ b/hibernate-maven-plugin/xref/de/juplo/plugins/hibernate/CreateMojo.html @@ -1,5 +1,5 @@ - + CreateMojo xref diff --git a/hibernate-maven-plugin/xref/de/juplo/plugins/hibernate/DropMojo.html b/hibernate-maven-plugin/xref/de/juplo/plugins/hibernate/DropMojo.html index eeff740e..ef15265f 100644 --- a/hibernate-maven-plugin/xref/de/juplo/plugins/hibernate/DropMojo.html +++ b/hibernate-maven-plugin/xref/de/juplo/plugins/hibernate/DropMojo.html @@ -1,5 +1,5 @@ - + DropMojo xref diff --git a/hibernate-maven-plugin/xref/de/juplo/plugins/hibernate/HelpMojo.html b/hibernate-maven-plugin/xref/de/juplo/plugins/hibernate/HelpMojo.html index dca46df9..e621d12a 100644 --- a/hibernate-maven-plugin/xref/de/juplo/plugins/hibernate/HelpMojo.html +++ b/hibernate-maven-plugin/xref/de/juplo/plugins/hibernate/HelpMojo.html @@ -1,5 +1,5 @@ - + HelpMojo xref diff --git a/hibernate-maven-plugin/xref/de/juplo/plugins/hibernate/ModificationTracker.html b/hibernate-maven-plugin/xref/de/juplo/plugins/hibernate/ModificationTracker.html index 21449531..280b2a0a 100644 --- a/hibernate-maven-plugin/xref/de/juplo/plugins/hibernate/ModificationTracker.html +++ b/hibernate-maven-plugin/xref/de/juplo/plugins/hibernate/ModificationTracker.html @@ -1,5 +1,5 @@ - + ModificationTracker xref diff --git a/hibernate-maven-plugin/xref/de/juplo/plugins/hibernate/MutableClassLoader.html b/hibernate-maven-plugin/xref/de/juplo/plugins/hibernate/MutableClassLoader.html index 83aeeb99..ae7c739a 100644 --- a/hibernate-maven-plugin/xref/de/juplo/plugins/hibernate/MutableClassLoader.html +++ b/hibernate-maven-plugin/xref/de/juplo/plugins/hibernate/MutableClassLoader.html @@ -1,5 +1,5 @@ - + MutableClassLoader xref diff --git a/hibernate-maven-plugin/xref/de/juplo/plugins/hibernate/SimpleConnectionProvider.html b/hibernate-maven-plugin/xref/de/juplo/plugins/hibernate/SimpleConnectionProvider.html index 8b9132cb..265b6a66 100644 --- a/hibernate-maven-plugin/xref/de/juplo/plugins/hibernate/SimpleConnectionProvider.html +++ b/hibernate-maven-plugin/xref/de/juplo/plugins/hibernate/SimpleConnectionProvider.html @@ -1,5 +1,5 @@ - + SimpleConnectionProvider xref diff --git a/hibernate-maven-plugin/xref/de/juplo/plugins/hibernate/UpdateMojo.html b/hibernate-maven-plugin/xref/de/juplo/plugins/hibernate/UpdateMojo.html index 4cf6c6fb..48ae959e 100644 --- a/hibernate-maven-plugin/xref/de/juplo/plugins/hibernate/UpdateMojo.html +++ b/hibernate-maven-plugin/xref/de/juplo/plugins/hibernate/UpdateMojo.html @@ -1,5 +1,5 @@ - + UpdateMojo xref -- 2.39.5