All Downloads are FREE. Search and download functionalities are using the official Maven repository.

me.qoomon.maven.extension.gitversioning.config.model.VersionFormatDescription Maven / Gradle / Ivy

There is a newer version: 9.10.0
Show newest version
package me.qoomon.maven.extension.gitversioning.config.model;


import org.simpleframework.xml.Element;

/**
 * Created by qoomon on 26/11/2016.
 */
public class VersionFormatDescription {

    @Element
    public String pattern = ".*";

    @Element(required = false)
    public String prefix = "";

    @Element
    public String versionFormat = "${commit}";

    public VersionFormatDescription() {
    }

    public VersionFormatDescription(String pattern, String prefix, String versionFormat) {
        this.pattern = pattern;
        this.prefix = prefix;
        this.versionFormat = versionFormat;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy