View on GitHub

naming-convention-liquibase-maven-plugin v2.1

A lightweight Maven plugin for validating XML Liquibase changeLog files against a customizable set of structural and content rules.
Enables teams to enforce Liquibase changeLog standards across codebases with zero runtime dependencies and minimal configuration overhead.

You use Liquibase?

You work with other developers whom you can’t really control with PR reviews?

Tired of inconsistent names of tables, indexes, foreign keys and other parts of the database schema?

Just use naming-convention-liquibase-maven-plugin!

This plugin allows you to create a set of rules and enforce them.


How to use it?

  1. Create rules.xml (or name it differently) file and provide it in <pathToRulesFile>.
  2. Create exclusions.xml (or name it differently) file (not mandatory) and provide it in <pathToExclusionsFile>.
  3. Provide the path to the directory with Liquibase XML changeLogs in <changeLogDirectory>.
  4. Provide false in <shouldFailBuild> if you want to just see the warnings.
  5. Put this into your pom.xml:
     <plugin>
         <groupId>io.github.htshame</groupId>
         <artifactId>naming-convention-liquibase-maven-plugin</artifactId>
         <version>2.1</version>
         <executions>
             <execution>
                 <id>validate-changeLog</id>
                 <phase>compile</phase>
                 <goals>
                     <goal>validate-liquibase-xml</goal>
                 </goals>
             </execution>
         </executions>
         <configuration>
             <pathToRulesFile>${project.basedir}/src/main/resources/liquibaseNaming/ruleset.xml</pathToRulesFile>
             <pathToExclusionsFile>
                 ${project.basedir}/src/main/resources/liquibaseNaming/exclusions.xml
             </pathToExclusionsFile>
             <changeLogDirectory>${project.basedir}/src/main/resources/db</changeLogDirectory>
             <shouldFailBuild>true</shouldFailBuild>
         </configuration>
     </plugin>
    
  6. Run your build.

Available rules:

tag-must-exist

Checks that specified tag exists in every changeSet.

Example:

<rule name="tag-must-exist">
    <requiredTag>comment</requiredTag>
    <requiredForChildTags>
        <tag>rollback</tag>
    </requiredForChildTags>
</rule>

Will check that <comment> tag is present inside every changeSet, including child <rollback>tag.

attr-starts-with

Checks that specified attribute starts with specified value.

Example:

<rule name="attr-starts-with">
    <tag>createIndex</tag>
    <targetAttr>indexName</targetAttr>
    <requiredPrefix>idx_</requiredPrefix>
</rule>

Will check that each indexName attribute of each <createIndex> tag starts with idx_.

attr-ends-with

Checks that specified attribute ends with specified value.

Example:

<rule name="attr-ends-with">
    <tag>addForeignKeyConstraint</tag>
    <targetAttr>constraintName</targetAttr>
    <requiredSuffix>_fk</requiredSuffix>
</rule>

Will check that each constraintName attribute of each <addForeignKeyConstraint> tag ends with __fk.

attr-ends-with-conditioned

Checks that specified attribute ends with specified value if the certain attribute is present and has certain value.

Example:

<rule name="attr-ends-with-conditioned">
    <tag>createIndex</tag>
    <conditionAttr>unique</conditionAttr>
    <conditionValue>true</conditionValue>
    <targetAttr>indexName</targetAttr>
    <requiredSuffix>_unique</requiredSuffix>
</rule>

Will check that each indexName attribute of each <createIndex> tag ends with _unique if attribute unique="true" is present.

no-hyphens-in-attributes

Example:

<rule name="no-hyphens-in-attributes">
    <excludedAttrs>
        <attr>defaultValue</attr>
        <attr>defaultValueComputed</attr>
    </excludedAttrs>
</rule>

Checks that - are not present in the changeSog at all, except for excluded attributes. Attributes defaultValue and defaultValueComputed will be ignored.

no-underscores-in-attributes

Example:

<rule name="no-underscores-in-attributes">
    <excludedAttrs>
        <attr>defaultValue</attr>
        <attr>defaultValueComputed</attr>
    </excludedAttrs>
</rule>

Checks that _ are not present in the changeLog at all, except for excluded attributes. Attributes defaultValue and defaultValueComputed will be ignored.


Exclusions

You can always add an exclusion to the set of rules. Create a separate exclusions.xml (or give it another name).

Example:

To exclude the whole changeLog file or a single changeSet, use:

<fileExclusion fileName="changelog_04.xml" rule="no-underscores-in-attributes"/>
<changeSetExclusion fileName="changelog_04.xml" changeSetId="changelog_04-1" changeSetAuthor="test" rule="tag-must-exist"/>

Note: requires Java 11 or later

Supported changeLog format: XML


License Apache 2.0 License.

Link to the code repository.

Version Changelog.