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

io.github.mike10004.debianmaven.LinkSpecification Maven / Gradle / Ivy

Go to download

This plugin helps building DEB packages from Maven projects. The packages can be used in DEB-based operating systems such as Debian and Ubuntu. The plugin uses external Debian tools to do the actual packaging.

The newest version!
package io.github.mike10004.debianmaven;

import org.apache.commons.lang3.tuple.MutablePair;

public class LinkSpecification extends MutablePair {
    public LinkSpecification(String source, String link) {
        super(source, link);
    }

    public String sourcePath() {
        return getLeft();
    }

    public String linkPath() {
        return getRight();
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy