me.qoomon.maven.extension.gitversioning.config.model.Configuration Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of maven-git-versioning-extension Show documentation
Show all versions of maven-git-versioning-extension Show documentation
Maven Git Versioning Extension
package me.qoomon.maven.extension.gitversioning.config.model;
import org.simpleframework.xml.Element;
import org.simpleframework.xml.ElementList;
import org.simpleframework.xml.Path;
import org.simpleframework.xml.Root;
import java.util.LinkedList;
import java.util.List;
/**
* Created by qoomon on 26/11/2016.
*/
@Root
public class Configuration {
@ElementList(type = VersionFormatDescription.class)
public List branches = new LinkedList<>();
@ElementList(type = VersionFormatDescription.class)
public List tags = new LinkedList<>();
@Path("commit")
@Element(name = "versionFormat")
public String commitVersionFormat;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy