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

me.qoomon.maven.extension.gitversioning.config.model.Configuration 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;
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