You use Liquibase?
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.
-
If someone names the index 'customer_external_id_idx' instead of 'idx_customer_external_id' (or vice versa), the build will fail!
-
If someone names the table 'customer-metadata' instead of 'customer_metadata' (or vice versa), the build will fail!
-
If someone does not write
<comment>
to the changeSet, the build will fail! -
If someone... - well, you get the point!
- Create rules.xml (or name it differently) file and provide it in
<pathToRulesFile>
. - Create exclusions.xml (or name it differently) file (not mandatory) and provide it in
<pathToExclusionsFile>
. - Provide the path to the directory with Liquibase XML changeLogs in
<changeLogDirectory>
. - Provide
false
in<shouldFailBuild>
if you want to just see the warnings. - 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>
- Run your build.
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.
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_
.
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
.
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.
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.
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.
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"/>
License Apache 2.0 License.
Link to the code repository.
Version Changelog.