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

io.reactiverse.vertx.maven.plugin.components.ServiceFileCombinationConfig Maven / Gradle / Ivy

Go to download

A plugin to allow package, start, stop, run of Eclipse Vert.x applications

There is a newer version: 2.0.1
Show newest version
package io.reactiverse.vertx.maven.plugin.components;

import io.reactiverse.vertx.maven.plugin.model.CombinationStrategy;
import io.reactiverse.vertx.maven.plugin.mojos.AbstractVertxMojo;
import io.reactiverse.vertx.maven.plugin.mojos.Archive;
import org.apache.maven.artifact.Artifact;
import org.apache.maven.project.MavenProject;

import java.io.File;
import java.util.Set;

/**
 * @author Clement Escoffier
 */
public class ServiceFileCombinationConfig extends ServiceConfig {


    private CombinationStrategy strategy;


    @Override
    public ServiceFileCombinationConfig setMojo(AbstractVertxMojo mojo) {
        super.setMojo(mojo);
        return this;
    }

    @Override
    public ServiceFileCombinationConfig setProject(MavenProject project) {
        super.setProject(project);
        return this;
    }

    @Override
    public ServiceFileCombinationConfig setOutput(File output) {
        super.setOutput(output);
        return this;
    }

    @Override
    public ServiceFileCombinationConfig setArtifacts(Set artifacts) {
        super.setArtifacts(artifacts);
        return this;
    }

    public ServiceFileCombinationConfig setStrategy(CombinationStrategy strategy) {
        this.strategy = strategy;
        return this;
    }

    public CombinationStrategy getStrategy() {
        return strategy;
    }

    @Override
    public ServiceFileCombinationConfig setArchive(Archive archive) {
        super.setArchive(archive);
        return this;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy