org.liquibase.maven.property.PropertyElement Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of liquibase-maven-plugin Show documentation
Show all versions of liquibase-maven-plugin Show documentation
A Maven plugin wraps up some of the functionality of Liquibase
package org.liquibase.maven.property;
import java.lang.annotation.*;
/**
* Annotation used at the field level that indicates that field is liquibase property element
*/
@Target({ElementType.FIELD})
@Retention(RetentionPolicy.RUNTIME)
@Documented
public @interface PropertyElement {
/**
* Specify key if field name is not corresponded to liquibase property key name
*/
String key() default "";
}